<?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>PhpArrow</title>
	<atom:link href="http://www.phparrow.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phparrow.com</link>
	<description>Freelance Ajax Javascript API Wordpress Php Programmer</description>
	<lastBuildDate>Fri, 05 Aug 2011 23:45:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>OsCommerce to Magento Migration</title>
		<link>http://www.phparrow.com/magento/oscommerce-to-magento-migration/</link>
		<comments>http://www.phparrow.com/magento/oscommerce-to-magento-migration/#comments</comments>
		<pubDate>Fri, 05 Aug 2011 23:44:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MAGENTO]]></category>

		<guid isPermaLink="false">http://www.phparrow.com/?p=220</guid>
		<description><![CDATA[I have created a set of external OsCommerce to Magento import scripts.  I can import Categories with Images,  Products with Images (Image Gallery), Orders, Shipping, Customers, Customer Carts, Reviews, Invoices and More. If you are looking to migrate your OsCommerce &#8230; <a href="http://www.phparrow.com/magento/oscommerce-to-magento-migration/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have created a set of external OsCommerce to Magento import scripts.  I can import Categories with Images,  Products with Images (Image Gallery), Orders, Shipping, Customers, Customer Carts, Reviews, Invoices and More.</p>
<p>If you are looking to migrate your OsCommerce database to Magento database and need it done fast and effectively. please <a title="Contact Me" href="http://phparrow.com/contact">contact me</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phparrow.com/magento/oscommerce-to-magento-migration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Deleting Stores Manually</title>
		<link>http://www.phparrow.com/magento/magento-deleting-stores-manually/</link>
		<comments>http://www.phparrow.com/magento/magento-deleting-stores-manually/#comments</comments>
		<pubDate>Sun, 31 Jul 2011 19:11:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MAGENTO]]></category>

		<guid isPermaLink="false">http://www.phparrow.com/?p=216</guid>
		<description><![CDATA[If you ever ruin into a situation where you need to remove stores or websites from Magento using the database.   You can do so using the tables listed below: core_website - to remove websites core_store - to remove store &#8230; <a href="http://www.phparrow.com/magento/magento-deleting-stores-manually/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<pre>If you ever ruin into a situation where you need to remove stores
or websites from Magento using the database.
 

You can do so using the tables listed below:
<pre class="brush: php; pad-line-numbers: true; title: ;">
core_website - to remove websites
core_store  - to remove store views
core_store_group - to remove stores
</pre>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.phparrow.com/magento/magento-deleting-stores-manually/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speed Up Magento</title>
		<link>http://www.phparrow.com/magento/speed-up-magento/</link>
		<comments>http://www.phparrow.com/magento/speed-up-magento/#comments</comments>
		<pubDate>Sun, 31 Jul 2011 19:05:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MAGENTO]]></category>

		<guid isPermaLink="false">http://www.phparrow.com/?p=214</guid>
		<description><![CDATA[If you enable Gzip compression by changing .htaccess, you can speed up Magento significantly. Assuming that you have Gzip enabled on your server. Uncomment the part of the code in your htaccess file that matches the code below. You uncomment &#8230; <a href="http://www.phparrow.com/magento/speed-up-magento/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you enable Gzip compression by changing .htaccess, you can speed up Magento significantly.  Assuming that you have Gzip enabled on your server.  Uncomment the part of the code in your htaccess file that matches the code below.  You uncomment by removing the #.</p>
<pre class="brush: php; pad-line-numbers: true; title: ;">
############################################
## enable apache served files compression
## http://developer.yahoo.com/performance/rules.html#gzip

# Insert filter
SetOutputFilter DEFLATE

# Netscape 4.x has some problems…
BrowserMatch ^Mozilla/4 gzip-only-text/html

# Netscape 4.06-4.08 have some more problems
BrowserMatch ^Mozilla/4\.0[678] no-gzip

# MSIE masquerades as Netscape, but it is fine
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
# Don’t compress images
SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary

# Make sure proxies don’t deliver the wrong content
Header append Vary User-Agent env=!dont-vary

# enable resulting html compression
php_flag zlib.output_compression on
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.phparrow.com/magento/speed-up-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Clear Cache</title>
		<link>http://www.phparrow.com/magento/magento-clear-cache/</link>
		<comments>http://www.phparrow.com/magento/magento-clear-cache/#comments</comments>
		<pubDate>Sun, 31 Jul 2011 19:00:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MAGENTO]]></category>

		<guid isPermaLink="false">http://www.phparrow.com/?p=213</guid>
		<description><![CDATA[Use the code below to clear your cache in Magento using ssh. rm -rf var/cache/* &#160;]]></description>
			<content:encoded><![CDATA[<p>Use the code below to clear your cache in Magento using ssh.</p>
<pre class="brush: php; pad-line-numbers: true; title: ;">

rm -rf var/cache/*
</pre>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phparrow.com/magento/magento-clear-cache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Reset File Permissions</title>
		<link>http://www.phparrow.com/magento/magento-reset-file-permissions/</link>
		<comments>http://www.phparrow.com/magento/magento-reset-file-permissions/#comments</comments>
		<pubDate>Sun, 31 Jul 2011 18:58:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MAGENTO]]></category>

		<guid isPermaLink="false">http://www.phparrow.com/?p=212</guid>
		<description><![CDATA[Use this code to reset your file permissions using ssh find . -type f -exec chmod 644 {} \; find . -type d -exec chmod 755 {} \; chmod 550 pear]]></description>
			<content:encoded><![CDATA[<p>Use this code to reset your file permissions using ssh</p>
<pre class="brush: php; pad-line-numbers: true; title: ;">
find . -type f -exec chmod 644 {} \;
find . -type d -exec chmod 755 {} \;
chmod 550 pear
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.phparrow.com/magento/magento-reset-file-permissions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Clean Logs</title>
		<link>http://www.phparrow.com/magento/magento-clean-logs/</link>
		<comments>http://www.phparrow.com/magento/magento-clean-logs/#comments</comments>
		<pubDate>Sun, 31 Jul 2011 18:55:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MAGENTO]]></category>

		<guid isPermaLink="false">http://www.phparrow.com/?p=210</guid>
		<description><![CDATA[Below is a way to clean your Magento logs via ssh. php /path/to/magento/shell/log.php clean]]></description>
			<content:encoded><![CDATA[<pre>Below is a way to clean your Magento logs via ssh.
<pre class="brush: php; pad-line-numbers: true; title: ;">
php /path/to/magento/shell/log.php clean
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.phparrow.com/magento/magento-clean-logs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Reindexing</title>
		<link>http://www.phparrow.com/magento/magento-reindexing/</link>
		<comments>http://www.phparrow.com/magento/magento-reindexing/#comments</comments>
		<pubDate>Sun, 31 Jul 2011 18:52:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MAGENTO]]></category>

		<guid isPermaLink="false">http://www.phparrow.com/?p=209</guid>
		<description><![CDATA[Below are ways to run indexer.php from command line. Check for the current status of all indices: php /path/to/magento/shell/indexer.php --status Refresh a specific index. Choose a specific area to index. php /path/to/magento/shell/indexer.php info which gives you catalog_product_attribute     Product Attributes catalog_product_price         &#8230; <a href="http://www.phparrow.com/magento/magento-reindexing/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Below are ways to run indexer.php from command line.</p>
<p>Check for the current status of all indices:</p>
<pre class="brush: php; pad-line-numbers: true; title: ;">
php /path/to/magento/shell/indexer.php --status
</pre>
<p>Refresh a specific index. Choose a specific area to index.</p>
<pre class="brush: php; pad-line-numbers: true; title: ;">
php /path/to/magento/shell/indexer.php info
</pre>
<p>which gives you</p>
<pre class="brush: php; pad-line-numbers: true; title: ;">
catalog_product_attribute     Product Attributes
catalog_product_price         Product Prices
catalog_url                   Catalog Url Rewrites
catalog_product_flat          Product Flat Data
catalog_category_flat         Category Flat Data
catalog_category_product      Category Products
catalogsearch_fulltext        Catalog Search Index
cataloginventory_stock        Stock status
</pre>
<p>With the above, you can run each index individually.</p>
<pre class="brush: php; pad-line-numbers: true; title: ;">
php /path/to/magento/shell/indexer.php --reindex catalog_product_flat
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.phparrow.com/magento/magento-reindexing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Cron Jobs</title>
		<link>http://www.phparrow.com/magento/magento-cron-jobs/</link>
		<comments>http://www.phparrow.com/magento/magento-cron-jobs/#comments</comments>
		<pubDate>Sun, 31 Jul 2011 18:39:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MAGENTO]]></category>

		<guid isPermaLink="false">http://www.phparrow.com/?p=207</guid>
		<description><![CDATA[If you want to initiate cron jobs in Magento, just use the below code. /usr/local/bin/php /path/to/magento/cron.php]]></description>
			<content:encoded><![CDATA[<p>If you want to initiate cron jobs in Magento, just use the below code.</p>
<pre class="brush: php; pad-line-numbers: true; title: ;">

/usr/local/bin/php /path/to/magento/cron.php
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.phparrow.com/magento/magento-cron-jobs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Cookies Create, Edit, Delete</title>
		<link>http://www.phparrow.com/magento/magento-cookies-create-edit-delete/</link>
		<comments>http://www.phparrow.com/magento/magento-cookies-create-edit-delete/#comments</comments>
		<pubDate>Sat, 18 Jun 2011 18:21:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MAGENTO]]></category>

		<guid isPermaLink="false">http://www.phparrow.com/?p=205</guid>
		<description><![CDATA[Understanding Magento Cookies and how to manipulate &#60;?php /** * set cookie * name and value are mandatory; other parameters are optional and can be set as null * $period = cookie expire date in seconds */ Mage::getModel('core/cookie')---&#62;set($name, $value, $period, &#8230; <a href="http://www.phparrow.com/magento/magento-cookies-create-edit-delete/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Understanding Magento Cookies and how to manipulate</p>
<pre class="brush: php; pad-line-numbers: true; title: ;">
&lt;?php
/**
* set cookie
* name and value are mandatory; other parameters are optional and can be set as null
* $period = cookie expire date in seconds
*/
Mage::getModel('core/cookie')---&gt;set($name, $value, $period, $path, $domain, $secure, $httponly);
/**
* get cookie with a specific name
* $name = name of the cookie
*/
Mage::getModel('core/cookie')-&gt;get($name);
/**
* get all cookies as an array
*/
Mage::getModel('core/cookie')-&gt;get();
/**
* delete/remove cookie
* $name is mandatory; other parameters are optional and can be set to null
*/
Mage::getModel('core/cookie')-&gt;delete($name, $path, $domain, $secure, $httponly);
?&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.phparrow.com/magento/magento-cookies-create-edit-delete/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Delete Shopping Cart or Entire Session</title>
		<link>http://www.phparrow.com/magento/magento-delete-shopping-cart-or-entire-session/</link>
		<comments>http://www.phparrow.com/magento/magento-delete-shopping-cart-or-entire-session/#comments</comments>
		<pubDate>Sat, 18 Jun 2011 15:47:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MAGENTO]]></category>

		<guid isPermaLink="false">http://www.phparrow.com/?p=204</guid>
		<description><![CDATA[Programmatically clear Magento&#8217;s shopping cart Clear Shopping Cart Mage::getSingleton('checkout/cart')-&#62;truncate(); Clear Checkout Session Mage::getSingleton('checkout/session')-&#62;clear();]]></description>
			<content:encoded><![CDATA[<p>Programmatically clear Magento&#8217;s shopping cart</p>
<p><strong>Clear Shopping Cart</strong></p>
<pre class="brush: php; pad-line-numbers: true; title: ;">
Mage::getSingleton('checkout/cart')-&gt;truncate();
</pre>
<p><strong>Clear Checkout Session</strong></p>
<pre class="brush: php; pad-line-numbers: true; title: ;">
Mage::getSingleton('checkout/session')-&gt;clear();
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.phparrow.com/magento/magento-delete-shopping-cart-or-entire-session/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

