<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Yameveo</title>
	<atom:link href="http://www.yameveo.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.yameveo.com</link>
	<description>Software development blog</description>
	<lastBuildDate>Thu, 19 Apr 2012 16:55:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Flush every Magento cache from the command line</title>
		<link>http://www.yameveo.com/development/php/flush-every-magento-cache-from-the-command-line</link>
		<comments>http://www.yameveo.com/development/php/flush-every-magento-cache-from-the-command-line#comments</comments>
		<pubDate>Thu, 19 Apr 2012 16:55:06 +0000</pubDate>
		<dc:creator>Andrea De Pirro</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[magento]]></category>

		<guid isPermaLink="false">http://www.yameveo.com/?p=271</guid>
		<description><![CDATA[If you need to clean every Magento cache from the command line (maybe to execute a cron) you can use this simple code: &#60;?php date_default_timezone_set(&#34;Europe/Madrid&#34;); echo &#34;Start Cleaning all caches at ... &#34; . date(&#34;Y-m-d H:i:s&#34;) . &#34;\n\n&#34;; ini_set(&#34;display_errors&#34;, 1); require &#039;../app/Mage.php&#039;; Mage::app(&#039;admin&#039;)-&#62;setUseSessionInUrl(false); Mage::getConfig()-&#62;init(); $types = Mage::app()-&#62;getCacheInstance()-&#62;getTypes(); try { echo &#34;Cleaning data cache... \n&#34;; flush(); [...]]]></description>
		<wfw:commentRss>http://www.yameveo.com/development/php/flush-every-magento-cache-from-the-command-line/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Better indexer script for Magento</title>
		<link>http://www.yameveo.com/development/php/better-indexer-script-for-magento</link>
		<comments>http://www.yameveo.com/development/php/better-indexer-script-for-magento#comments</comments>
		<pubDate>Thu, 19 Apr 2012 09:37:51 +0000</pubDate>
		<dc:creator>Andrea De Pirro</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[magento]]></category>
		<category><![CDATA[reindex]]></category>

		<guid isPermaLink="false">http://www.yameveo.com/?p=258</guid>
		<description><![CDATA[If you use Magento you&#8217;ll know how frustrating the indexing process could be. Thankfully Magento gives us a useful php script (shell/indexer.php) to execute the reindex via the command line, but it has minor problems. The first one is that it doesn&#8217;t give you a clue on which reindexing process is actually going on, the [...]]]></description>
		<wfw:commentRss>http://www.yameveo.com/development/php/better-indexer-script-for-magento/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solve &#8220;This account is locked.&#8221; problem in Magento</title>
		<link>http://www.yameveo.com/development/solve-this-account-is-locked-problem-in-magento</link>
		<comments>http://www.yameveo.com/development/solve-this-account-is-locked-problem-in-magento#comments</comments>
		<pubDate>Tue, 10 Apr 2012 07:55:29 +0000</pubDate>
		<dc:creator>Andrea De Pirro</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[magento]]></category>
		<category><![CDATA[Mysql]]></category>

		<guid isPermaLink="false">http://www.yameveo.com/?p=251</guid>
		<description><![CDATA[If your user has been locked out from the backend, you can reset the lock with one simple query: UPDATE `admin_user` SET `failures_num` = 0, `first_failure` = NULL, `lock_expires` = NULL WHERE `user_id` = 1; You can find your user_id with this query: SELECT `user_id` FROM `admin_user` WHERE `username` = 'admin']]></description>
		<wfw:commentRss>http://www.yameveo.com/development/solve-this-account-is-locked-problem-in-magento/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Run Magento indexer from the command line</title>
		<link>http://www.yameveo.com/development/run-magento-indexer-from-the-command-line</link>
		<comments>http://www.yameveo.com/development/run-magento-indexer-from-the-command-line#comments</comments>
		<pubDate>Wed, 21 Mar 2012 17:40:07 +0000</pubDate>
		<dc:creator>Andrea De Pirro</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[indexer]]></category>
		<category><![CDATA[magento]]></category>

		<guid isPermaLink="false">http://www.yameveo.com/?p=245</guid>
		<description><![CDATA[Magento offers a convenient way to run the reindexing process trough the command line, without the risks of a timeout. Go to the /shell Magento directory and run: php indexer.php reindexall If you want to run only one index: php indexer.php --reindex catalog_product_price If you want to run more than one list them separated by [...]]]></description>
		<wfw:commentRss>http://www.yameveo.com/development/run-magento-indexer-from-the-command-line/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List every loaded Apache module</title>
		<link>http://www.yameveo.com/apache/list-every-loaded-apache-module</link>
		<comments>http://www.yameveo.com/apache/list-every-loaded-apache-module#comments</comments>
		<pubDate>Wed, 21 Mar 2012 17:28:40 +0000</pubDate>
		<dc:creator>Andrea De Pirro</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[dump_modules]]></category>

		<guid isPermaLink="false">http://www.yameveo.com/?p=242</guid>
		<description><![CDATA[Just run this command: apachectl -t -D DUMP_MODULES the output will list every loaded module: Loaded Modules: core_module (static) mpm_prefork_module (static) http_module (static) so_module (static) auth_basic_module (shared) auth_digest_module (shared) authn_file_module (shared) authn_alias_module (shared) ...]]></description>
		<wfw:commentRss>http://www.yameveo.com/apache/list-every-loaded-apache-module/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple script to add a new Virtual Host on Mac OSX</title>
		<link>http://www.yameveo.com/unix/simple-script-to-add-a-new-virtual-host-on-mac-osx</link>
		<comments>http://www.yameveo.com/unix/simple-script-to-add-a-new-virtual-host-on-mac-osx#comments</comments>
		<pubDate>Thu, 23 Jun 2011 14:41:09 +0000</pubDate>
		<dc:creator>Andrea De Pirro</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[hosts]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[virtual host]]></category>

		<guid isPermaLink="false">http://www.yameveo.com/?p=225</guid>
		<description><![CDATA[Ideally when you develop a lot of websites on a local machine on OSX you have to create a virtual host for each website. Below we will describe a really simple script to do this boring operation automatically. Firstly a simple control to remember you have to choose a host name: #!/bin/sh if [ $# [...]]]></description>
		<wfw:commentRss>http://www.yameveo.com/unix/simple-script-to-add-a-new-virtual-host-on-mac-osx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to execute remote ssh commands without interactive password</title>
		<link>http://www.yameveo.com/unix/execute-remote-ssh-commands</link>
		<comments>http://www.yameveo.com/unix/execute-remote-ssh-commands#comments</comments>
		<pubDate>Fri, 04 Feb 2011 14:28:08 +0000</pubDate>
		<dc:creator>Andrea De Pirro</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[gnome-terminal]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[sshpass]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://www.yameveo.com/?p=206</guid>
		<description><![CDATA[When you manage a lot of remote machines sometimes you need to write scripts to automate commands to be executed or open multiple shells to look at logs. For security reasons SSH doesn&#8217;t give you a -p option to set a password to launch a session, but this can be circumvented with a command line [...]]]></description>
		<wfw:commentRss>http://www.yameveo.com/unix/execute-remote-ssh-commands/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alternative PHP Cache (APC)</title>
		<link>http://www.yameveo.com/development/php/alternative-php-cache-apc</link>
		<comments>http://www.yameveo.com/development/php/alternative-php-cache-apc#comments</comments>
		<pubDate>Fri, 23 Oct 2009 07:05:25 +0000</pubDate>
		<dc:creator>Andrea De Pirro</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[apc]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[opcode]]></category>

		<guid isPermaLink="false">http://www.yameveo.com/?p=180</guid>
		<description><![CDATA[The Alternative PHP Cache (APC) is a free and open opcode cache for PHP. Its goal is to provide a free, open, and robust framework for caching and optimizing PHP intermediate code. Intermediate code is the internal memory structures produced during compilation that are fed into the executor. APC increases the performance of PHP scripts [...]]]></description>
		<wfw:commentRss>http://www.yameveo.com/development/php/alternative-php-cache-apc/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Export tables from MS-Access to Mysql</title>
		<link>http://www.yameveo.com/database/export-tables-from-ms-access-to-mysql</link>
		<comments>http://www.yameveo.com/database/export-tables-from-ms-access-to-mysql#comments</comments>
		<pubDate>Wed, 30 Sep 2009 18:00:20 +0000</pubDate>
		<dc:creator>Enrico Aillaud</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[MS-Access]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[ODBC]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.yameveo.com/?p=135</guid>
		<description><![CDATA[Note: The following guide was tested on WindowsXP, MS-Access 2007, Mysql ODBC connector 5.1 Prerequisites: Mysql and MS-Access installed in your localhost Sometimes could happens that we are not familiar with some tools, in this case I was not familiar with MS-Access and I needed to export a table I need from Access to Mysql. [...]]]></description>
		<wfw:commentRss>http://www.yameveo.com/database/export-tables-from-ms-access-to-mysql/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rollback to previous version with Tortoise SVN</title>
		<link>http://www.yameveo.com/development/tortoise-svn/rollback-to-previous-version-with-tortoise-svn</link>
		<comments>http://www.yameveo.com/development/tortoise-svn/rollback-to-previous-version-with-tortoise-svn#comments</comments>
		<pubDate>Wed, 30 Sep 2009 17:32:41 +0000</pubDate>
		<dc:creator>Enrico Aillaud</dc:creator>
				<category><![CDATA[Tortoise SVN]]></category>
		<category><![CDATA[rollback]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[Tortoise]]></category>
		<category><![CDATA[version]]></category>

		<guid isPermaLink="false">http://www.yameveo.com/?p=159</guid>
		<description><![CDATA[How to rollback to a previous SVN version with TortoiseSVN Update the repository Right click on your local repository and in the TortoiseSVN options select the Merge one In the new window select the option Merge a range of revisions and click next Edit the option URL to merge from with the address of the [...]]]></description>
		<wfw:commentRss>http://www.yameveo.com/development/tortoise-svn/rollback-to-previous-version-with-tortoise-svn/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

