<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:admin="http://webns.net/mvcb/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
    
    <title>Knowledge Base</title>
    <link>http://www.magentocommerce.com/knowledge-base/</link>
    <description></description>
    <dc:language>en-us</dc:language>
    <dc:creator>adi@varien.com</dc:creator>
    <dc:rights>Copyright 2008</dc:rights>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    <admin:generatorAgent rdf:resource="http://expressionengine.com/" />


<item>
    <title>Installing Magento on a PHP4 server</title>
    <link>http://www.magentocommerce.com/knowledge-base/entry/installing-magento-on-a-php4-server</link>
    <description><![CDATA[<h3>Introduction</h3>
<p>Some hosting providers do not yet provide PHP5 on their servers, opting instead to stay with PHP4 for the time being.  As Magento is a PHP5-only application, this can be a barrier for some users.
This document outlines a possible workaround for such a scenario.  The goal is to install PHP5 as a CGI binary and configure the web server (Apache) to use it instead of the default PHP4.</p>

<h3>Requirements</h3>
<p>Every hosting provider has a slightly different way of doing things, so it's important to know if this method will work with your provider before continuing.</p>
<p>Below is a list of the basic requirements that this document expects.  If you're unsure as to whether your provider supports these requirements, pass the list along to them and find out.</p>

<ul class="disc">
<li>Operating System:  Linux
<li>Web Server: Apache with CGI support
<li>FileInfo override control via .htaccess files
<li>A user-writable cgi-bin directory
<li>FTP access to your web root and cgi-bin directories
</ul>

<h3>Step 1: Upload the PHP5 CGI binary</h3>
<p>It is possible to compile a PHP5 binary yourself, but for the purposes of this solution, we've provided one for you.  You can download it here: 

<a href="http://www.magentocommerce.com/support/php5cgi/php5-cgi">http://www.magentocommerce.com/support/php5cgi/php5-cgi</a> (if you are using IE you will need to right click on this link and save file as). This file is also available in <a href="http://www.magentocommerce.com/support/php5cgi/php5-cgi.zip">.zip</a> (7.2 MB), <a href="http://www.magentocommerce.com/support/php5cgi/php5-cgi.tar.gz">.tar.gz</a> (7.2 MB), and <a href="http://www.magentocommerce.com/support/php5cgi/php5-cgi.tar.bz2">.tar.bz2</a> (6.8 MB) formats to download (the files contain exactly the same php5-cgi binary inside and are provided in different formats just for your convenience).</p>

<p>Once downloaded, use your FTP client to upload the file to your cgi-bin directory.  If you don't know where your cgi-bin directory is, ask your hosting provider.</p>

<p>After uploading, use your FTP client to set the proper mode of the php5-cgi file.  This function varies for each FTP client, but it usually called Change Permissions or Change Mode or Chmod.  Once you find the function, you must set the permissions so the web server can run this file.  There are two typical ways of representing file permissions in Linux:</p>
<ul class="disc">
<li>	As a number (eg, 755)</li>
<li>	As a series of permissions categorized into user, group, and other</li>
</ul>
<p>If your FTP client uses the first representation, set the permission on the php5-cgi binary to be 755, or 0755.  If your FTP client uses the second representation, set the permissions as shown in the image below.</p>


<img src="http://www.magentocommerce.com/images/uploads/php4install.gif" style="border: 0;" alt="image" width="357" height="247" />


<h3>Step 2: Modify the Magento .htaccess file</h3>
<p>By default, the web server will want to run the Magento application using PHP4, which will not work.  In order to point it to the new PHP5 CGI binary, you must modify the .htaccess file in the Magento top-level directory.</p>

<p>Using your FTP client, edit the file .htaccess in your top-level magento directory.</p>

<p>The existing file looks something like this:</p>
<div class="codeblock"><code>
<span style="color: #007700">&lt;</span><span style="color: #0000BB">IfModule&nbsp;mod_php5</span><span style="color: #007700">.</span><span style="color: #0000BB">c</span><span style="color: #007700">&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">php_flag&nbsp;magic_quotes_gpc&nbsp;off<br />&nbsp;&nbsp;&nbsp;&nbsp;php_flag&nbsp;short_open_tag&nbsp;on<br /></span><span style="color: #007700">&lt;/</span><span style="color: #0000BB">IfModule</span><span style="color: #007700">&gt;<br /><br /></span><span style="color: #0000BB">DirectoryIndex&nbsp;index</span><span style="color: #007700">.</span><span style="color: #0000BB">php<br /><br />RewriteEngine&nbsp;on<br /><br /></span><span style="color: #FF8000">#RewriteBase&nbsp;/<br /><br /></span><span style="color: #0000BB">RewriteCond&nbsp;</span><span style="color: #007700">%</span><span style="color: #0000BB">&#123;REQUEST_URI&#125;&nbsp;</span><span style="color: #007700">!^/</span><span style="color: #0000BB">media</span><span style="color: #007700">/<br /></span><span style="color: #0000BB">RewriteCond&nbsp;</span><span style="color: #007700">%</span><span style="color: #0000BB">&#123;REQUEST_URI&#125;&nbsp;</span><span style="color: #007700">!^/</span><span style="color: #0000BB">skin</span><span style="color: #007700">/<br /></span><span style="color: #0000BB">RewriteCond&nbsp;</span><span style="color: #007700">%</span><span style="color: #0000BB">&#123;REQUEST_URI&#125;&nbsp;</span><span style="color: #007700">!^/</span><span style="color: #0000BB">js</span><span style="color: #007700">/<br /></span><span style="color: #0000BB">RewriteCond&nbsp;</span><span style="color: #007700">%</span><span style="color: #0000BB">&#123;REQUEST_FILENAME&#125;&nbsp;</span><span style="color: #007700">!-</span><span style="color: #0000BB">f<br />RewriteCond&nbsp;</span><span style="color: #007700">%</span><span style="color: #0000BB">&#123;REQUEST_FILENAME&#125;&nbsp;</span><span style="color: #007700">!-</span><span style="color: #0000BB">d<br />RewriteCond&nbsp;</span><span style="color: #007700">%</span><span style="color: #0000BB">&#123;REQUEST_FILENAME&#125;&nbsp;</span><span style="color: #007700">!-</span><span style="color: #0000BB">l<br /><br />RewriteRule&nbsp;</span><span style="color: #007700">.*&nbsp;</span><span style="color: #0000BB">index</span><span style="color: #007700">.</span><span style="color: #0000BB">php</span>
</code></div>

<p>Add two lines to it so it looks like this:</p>
<div class="codeblock"><code>
<span style="color: #007700">&lt;</span><span style="color: #0000BB">IfModule&nbsp;mod_php5</span><span style="color: #007700">.</span><span style="color: #0000BB">c</span><span style="color: #007700">&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">php_flag&nbsp;magic_quotes_gpc&nbsp;off<br />&nbsp;&nbsp;&nbsp;&nbsp;php_flag&nbsp;short_open_tag&nbsp;on<br /></span><span style="color: #007700">&lt;/</span><span style="color: #0000BB">IfModule</span><span style="color: #007700">&gt;<br /><br /></span><span style="color: #0000BB">Action&nbsp;php5</span><span style="color: #007700">-</span><span style="color: #0000BB">cgi&nbsp;</span><span style="color: #007700">/</span><span style="color: #0000BB">cgi</span><span style="color: #007700">-</span><span style="color: #0000BB">bin</span><span style="color: #007700">/</span><span style="color: #0000BB">php5</span><span style="color: #007700">-</span><span style="color: #0000BB">cgi&nbsp;<br />AddHandler&nbsp;php5</span><span style="color: #007700">-</span><span style="color: #0000BB">cgi&nbsp;</span><span style="color: #007700">.</span><span style="color: #0000BB">php<br />&nbsp;<br />DirectoryIndex&nbsp;index</span><span style="color: #007700">.</span><span style="color: #0000BB">php<br /><br />RewriteEngine&nbsp;on<br /><br /></span><span style="color: #FF8000">#RewriteBase&nbsp;/<br /><br /></span><span style="color: #0000BB">RewriteCond&nbsp;</span><span style="color: #007700">%</span><span style="color: #0000BB">&#123;REQUEST_URI&#125;&nbsp;</span><span style="color: #007700">!^/</span><span style="color: #0000BB">media</span><span style="color: #007700">/<br /></span><span style="color: #0000BB">RewriteCond&nbsp;</span><span style="color: #007700">%</span><span style="color: #0000BB">&#123;REQUEST_URI&#125;&nbsp;</span><span style="color: #007700">!^/</span><span style="color: #0000BB">skin</span><span style="color: #007700">/<br /></span><span style="color: #0000BB">RewriteCond&nbsp;</span><span style="color: #007700">%</span><span style="color: #0000BB">&#123;REQUEST_URI&#125;&nbsp;</span><span style="color: #007700">!^/</span><span style="color: #0000BB">js</span><span style="color: #007700">/<br /></span><span style="color: #0000BB">RewriteCond&nbsp;</span><span style="color: #007700">%</span><span style="color: #0000BB">&#123;REQUEST_FILENAME&#125;&nbsp;</span><span style="color: #007700">!-</span><span style="color: #0000BB">f<br />RewriteCond&nbsp;</span><span style="color: #007700">%</span><span style="color: #0000BB">&#123;REQUEST_FILENAME&#125;&nbsp;</span><span style="color: #007700">!-</span><span style="color: #0000BB">d<br />RewriteCond&nbsp;</span><span style="color: #007700">%</span><span style="color: #0000BB">&#123;REQUEST_FILENAME&#125;&nbsp;</span><span style="color: #007700">!-</span><span style="color: #0000BB">l<br /><br />RewriteRule&nbsp;</span><span style="color: #007700">.*&nbsp;</span><span style="color: #0000BB">index</span><span style="color: #007700">.</span><span style="color: #0000BB">php</span>
</code></div>

<p>You'll want to modify the path in the Action line to point to the location of the php5-cgi binary you uploaded in Step 1.</p>

<p>Now test your Magento installation by visiting it with your web browser.  If you see Magento smiling back at you, then you are now happily running on PHP5.</p>

<h3>Troubleshooting</h3>

<p><b>I still see "Invalid PHP version" when visiting my Magento page.</b><br/>
This probably means that your hosting provider does not allow the FileInfo overrides via .htaccess files.  This is a necessary requirement for this solution, so you'll have to ask your hosting provider for it.</p>

<p><b>I see "Internal Server Error" when visiting my Magento page.</b><br/>
This is a typical error message when a CGI binary quits unexpectedly, and could be caused by a number of things.  If you have access to your server's Apache error log, you can look there for some clues.  We'll cover a few more common issues here.</p>

<ol>
<li> Bad location to the PHP5 binary<br/>
Make sure the AddHandler directive in your .htaccess file is pointing to the correct location for the PHP5 binary.  You can often test it by trying to surf to the location with your web browser.  For example, if your site is <a href="http://www.example.com" target="_blank">http://www.example.com</a> and your PHP5 location is /cgi-bin/php5-cgi, try visiting <a href="http://www.example.com/cgi-bin/php5-cgi" target="_blank">http://www.example.com/cgi-bin/php5-cgi</a> with your web browser.  If you see a Internal Server Error message, then that means your PHP5 binary is in the correct location.  If you get a File not found message, then this is not the correct location.</p>
</li>
<li> Bad permissions on the PHP5 binary<br/>
Double check the permissions on the PHP5 CGI binary you uploaded in Step 1.  They should be 755 or rwxr-xr-x, depending on your FTP client's representation.</p>
</li>
</ol>
More details about specific environment quirks could be found here:
<a href="http://www.askapache.com/php/custom-phpini-tips-and-tricks.html">http://www.askapache.com/php/custom-phpini-tips-and-tricks.html</a>

]]></description>
    <dc:language>en-us</dc:language>
    <dc:creator>johannes@varien.com</dc:creator>
    <dc:rights>Copyright 2007</dc:rights>
    <dc:date>2007-08-10 T;02:48:00-08:00</dc:date>
</item>
<!--
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
         xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"
         xmlns:dc="http://purl.org/dc/elements/1.1/">
<rdf:Description
    rdf:about="http://www.magentocommerce.com/knowledge-base/installing-magento-on-a-php4-server/"
    trackback:ping="http://www.magentocommerce.com/trackback/124/"
    dc:title="Installing Magento on a PHP4 server"
    dc:identifier="http://www.magentocommerce.com/knowledge-base/124/"
    dc:subject="Installation &amp;amp; Setup"
    dc:description=""
    dc:creator="johannes"
    dc:date="2007-08-10 02:48:00 AM GMT" />
</rdf:RDF>
--> 


    <item>
      <title>Comment by Crosso</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>Hi,
</p>
<p>
The binary file isn&#8217;t downloading properly, could you please amend this asap?
</p>
<p>
Cheers,
</p>
<p>
Michael
</p>]]></description>
      <content:encoded><![CDATA[<p>Hi,
</p>
<p>
The binary file isn&#8217;t downloading properly, could you please amend this asap?
</p>
<p>
Cheers,
</p>
<p>
Michael
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Theycallmeaustin</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>if anyone wants to try another technique, I found one that my host (1and1.com) uses.
</p>
<p>
1. Open the &#8220;.htaccess&#8221; file
<br />
2. Add this as a new line &#8220;AddType x-mapp-php5 .php&#8221;
<br />
3. Save changes then reupload your &#8220;.htaccess&#8221; file to your server, and check if it worked.
</p>
<p>
-Theycallmeaustin.
</p>]]></description>
      <content:encoded><![CDATA[<p>if anyone wants to try another technique, I found one that my host (1and1.com) uses.
</p>
<p>
1. Open the &#8220;.htaccess&#8221; file
<br />
2. Add this as a new line &#8220;AddType x-mapp-php5 .php&#8221;
<br />
3. Save changes then reupload your &#8220;.htaccess&#8221; file to your server, and check if it worked.
</p>
<p>
-Theycallmeaustin.
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Darjan</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>4 days and still a problem. Can someone who has this file create a mirror?
</p>]]></description>
      <content:encoded><![CDATA[<p>4 days and still a problem. Can someone who has this file create a mirror?
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Garuda</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>In fact, it seems very difficult to get this one : php5-cgi
<br />
I got only 1.8 Mo of the 17,6 Mo
<br />
Pierre
</p>]]></description>
      <content:encoded><![CDATA[<p>In fact, it seems very difficult to get this one : php5-cgi
<br />
I got only 1.8 Mo of the 17,6 Mo
<br />
Pierre
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by ocw&#45;ray</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>the following file on your server:
<br />
<a href="http://www.magentocommerce.com/support/php5cgi/php5-cgi">http://www.magentocommerce.com/support/php5cgi/php5-cgi</a>
<br />
can not be downloaded anymore.
</p>]]></description>
      <content:encoded><![CDATA[<p>the following file on your server:
<br />
<a href="http://www.magentocommerce.com/support/php5cgi/php5-cgi">http://www.magentocommerce.com/support/php5cgi/php5-cgi</a>
<br />
can not be downloaded anymore.
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Darjan</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>There&#8217;s something wrong with the cgi-bin file or your servers, i can&#8217;t seem to download it, it stops at 174kb?
</p>]]></description>
      <content:encoded><![CDATA[<p>There&#8217;s something wrong with the cgi-bin file or your servers, i can&#8217;t seem to download it, it stops at 174kb?
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by peteramstrand</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>Hi,
</p>
<p>
I also got the &#8220;Premature end of script headers: php5-cgi&#8221; problem. 
</p>
<p>
- I checked the permissions for php5-cgi and for the cgi-bin folder (755)
<br />
- I checked <a href="http://www.example.com/cgi-bin/php5-cgi" target="_blank">http://www.example.com/cgi-bin/php5-cgi</a> with a browser (500)
<br />
- I put the &#8220;5&#8221; in Action php5-cgi /cgi-bin/php5-cgi 
<br />
- I again downloaded the php5-cgi (maybe the file was kurrupt)
<br />
- I rebooted my server
<br />
- I uncommented #SSLOptions StdEnvVars (because error_log said: .htaccess: SSLOptions not allowed here)
</p>
<p>
What can I do to solve my??? Thank you very much for helping..
</p>
<p>
peter
</p>]]></description>
      <content:encoded><![CDATA[<p>Hi,
</p>
<p>
I also got the &#8220;Premature end of script headers: php5-cgi&#8221; problem. 
</p>
<p>
- I checked the permissions for php5-cgi and for the cgi-bin folder (755)
<br />
- I checked <a href="http://www.example.com/cgi-bin/php5-cgi" target="_blank">http://www.example.com/cgi-bin/php5-cgi</a> with a browser (500)
<br />
- I put the &#8220;5&#8221; in Action php5-cgi /cgi-bin/php5-cgi 
<br />
- I again downloaded the php5-cgi (maybe the file was kurrupt)
<br />
- I rebooted my server
<br />
- I uncommented #SSLOptions StdEnvVars (because error_log said: .htaccess: SSLOptions not allowed here)
</p>
<p>
What can I do to solve my??? Thank you very much for helping..
</p>
<p>
peter
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by magetel</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>With the new version 0.7.14800 the .htaccess file has changed, and I think there is an small bug in first comented line:
<br />
     #Action php5-cgi /cgi-bin/php-cgi 
<br />
there shoud be
<br />
     #Action php5-cgi /cgi-bin/php5-cgi 
<br />
to work with PHP version &lt; 5.2
<br />
Regards,
<br />
Miguel
</p>]]></description>
      <content:encoded><![CDATA[<p>With the new version 0.7.14800 the .htaccess file has changed, and I think there is an small bug in first comented line:
<br />
     #Action php5-cgi /cgi-bin/php-cgi 
<br />
there shoud be
<br />
     #Action php5-cgi /cgi-bin/php5-cgi 
<br />
to work with PHP version &lt; 5.2
<br />
Regards,
<br />
Miguel
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Donovan</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>Well, my apologies.&nbsp; I just figured out that I wasn&#8217;t supposed to put the module in a subdirectory called php5-cgi&#8230; Yes, I was putting php5-cgi inside of /cgi-bin/php5-cgi/, I don&#8217;t know why I thought that.&nbsp; I got further in the install, but then there were a bunch of Zend errors, so I decided I decided to call that quits on that server. <img src="http://www.magentocommerce.com/images/smileys/smile.gif" width="19" height="19" alt="smile" style="border:0;padding:0;" /> Hopefully this might help someone.
</p>]]></description>
      <content:encoded><![CDATA[<p>Well, my apologies.&nbsp; I just figured out that I wasn&#8217;t supposed to put the module in a subdirectory called php5-cgi&#8230; Yes, I was putting php5-cgi inside of /cgi-bin/php5-cgi/, I don&#8217;t know why I thought that.&nbsp; I got further in the install, but then there were a bunch of Zend errors, so I decided I decided to call that quits on that server. <img src="http://www.magentocommerce.com/images/smileys/smile.gif" width="19" height="19" alt="smile" style="border:0;padding:0;" /> Hopefully this might help someone.
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Donovan</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>I switched to (mt) Grid Service, and the index page takes 25 seconds to load up (!!), so I wanted to see if that was mostly the web server or Magento&#8230; however, I could not get Magento running on my old host&#8217;s PHP4 Linux system.&nbsp; The notes for how to install the cgi-bin work around need to be updated, they conflict with other instructions, specifically where the file goes (I&#8217;ll make comments on the appropriate wiki page).
</p>
<p>
I have tried putting the file in /cgi-bin/php5-cgi and /magento/cgi-bin/php5-cgi (magento is off /).&nbsp; The first way results in &#8220;cgi-bin/php5-cgi/index.php was not found&#8221; (yes, cdmod 755 was set for both directories), the second method gives an internal server error&#8230; <img src="http://www.magentocommerce.com/images/smileys/rasberry.gif" width="19" height="19" alt="rasberry" style="border:0;padding:0;" />
</p>
<p>
In any case, I gotta cancel that server now before I&#8217;m billed another $9 for January, lol.&nbsp; <img src="http://www.magentocommerce.com/images/smileys/smile.gif" width="19" height="19" alt="smile" style="border:0;padding:0;" />
</p>]]></description>
      <content:encoded><![CDATA[<p>I switched to (mt) Grid Service, and the index page takes 25 seconds to load up (!!), so I wanted to see if that was mostly the web server or Magento&#8230; however, I could not get Magento running on my old host&#8217;s PHP4 Linux system.&nbsp; The notes for how to install the cgi-bin work around need to be updated, they conflict with other instructions, specifically where the file goes (I&#8217;ll make comments on the appropriate wiki page).
</p>
<p>
I have tried putting the file in /cgi-bin/php5-cgi and /magento/cgi-bin/php5-cgi (magento is off /).&nbsp; The first way results in &#8220;cgi-bin/php5-cgi/index.php was not found&#8221; (yes, cdmod 755 was set for both directories), the second method gives an internal server error&#8230; <img src="http://www.magentocommerce.com/images/smileys/rasberry.gif" width="19" height="19" alt="rasberry" style="border:0;padding:0;" />
</p>
<p>
In any case, I gotta cancel that server now before I&#8217;m billed another $9 for January, lol.&nbsp; <img src="http://www.magentocommerce.com/images/smileys/smile.gif" width="19" height="19" alt="smile" style="border:0;padding:0;" />
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by reddsimpson</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>When trying to install I get this: (I am using godady shared linux)
</p>
<p>
Error 500
<br />
Bad Request
<br />
Your browser sent a request that this server could not understand.
<br />
Invalid URI in request GET /xstore/ HTTP/1.1
</p>]]></description>
      <content:encoded><![CDATA[<p>When trying to install I get this: (I am using godady shared linux)
</p>
<p>
Error 500
<br />
Bad Request
<br />
Your browser sent a request that this server could not understand.
<br />
Invalid URI in request GET /xstore/ HTTP/1.1
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Tarun Agarwal</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>hello there,
</p>
<p>
i am using mod_rewrite , pdo_mysql on my other domains succesfully. No problem in that.
</p>
<p>
about switching to new server, is a tough job for me, as i am a reseller and having 30-40 sites running on my server.
</p>
<p>
Regards,
</p>
<p>
Tarun
</p>]]></description>
      <content:encoded><![CDATA[<p>hello there,
</p>
<p>
i am using mod_rewrite , pdo_mysql on my other domains succesfully. No problem in that.
</p>
<p>
about switching to new server, is a tough job for me, as i am a reseller and having 30-40 sites running on my server.
</p>
<p>
Regards,
</p>
<p>
Tarun
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by lkbryant</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>tayun, that to me looks like you do not have .htaccess mod_rewrite working properly.
<br />
in order for magento to work, you need atleast, mod_rewrite and pdo_mysql modules.
<br />
i think you&#8217;d most likely need to switch hosts.
</p>]]></description>
      <content:encoded><![CDATA[<p>tayun, that to me looks like you do not have .htaccess mod_rewrite working properly.
<br />
in order for magento to work, you need atleast, mod_rewrite and pdo_mysql modules.
<br />
i think you&#8217;d most likely need to switch hosts.
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by lkbryant</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>hi if anyone needs help installing magento, i will help you free of charge.
<br />
i have installed magento on many many webhosts. some hosts required more tricks than others so i have a fairly good understanding of it.
</p>
<p>
just pm me if you need help.
</p>]]></description>
      <content:encoded><![CDATA[<p>hi if anyone needs help installing magento, i will help you free of charge.
<br />
i have installed magento on many many webhosts. some hosts required more tricks than others so i have a fairly good understanding of it.
</p>
<p>
just pm me if you need help.
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Tarun Agarwal</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>i have this system.
</p>
<p>
Operating system Linux 
<br />
Kernel version 2.6.9-42.0.8.ELsmp 
<br />
Machine Type i686 
<br />
Apache version 1.3.39 (Unix) 
<br />
PERL version 5.8.8 
<br />
Path to PERL /usr/bin/perl 
<br />
Path to sendmail /usr/sbin/sendmail 
<br />
Installed Perl Modules Click to View 
<br />
PHP version 4.4.4 
<br />
MySQL version 4.1.22-standard 
</p>
<p>
now...i have installed whole set up in main directory.......the installation&#8217;s first page&#8230;
</p>
<p>
Start Installation comes.,
</p>
<p>
i click on I agree check box, and then click on Continue.
</p>
<p>
it does not move further...it go to refresh and then again generates the same page
</p>
<p>
plz tell me the problem or i shall i remove magentocommerce from my server.
</p>
<p>
Warm Regards,
</p>
<p>
Tarun
</p>]]></description>
      <content:encoded><![CDATA[<p>i have this system.
</p>
<p>
Operating system Linux 
<br />
Kernel version 2.6.9-42.0.8.ELsmp 
<br />
Machine Type i686 
<br />
Apache version 1.3.39 (Unix) 
<br />
PERL version 5.8.8 
<br />
Path to PERL /usr/bin/perl 
<br />
Path to sendmail /usr/sbin/sendmail 
<br />
Installed Perl Modules Click to View 
<br />
PHP version 4.4.4 
<br />
MySQL version 4.1.22-standard 
</p>
<p>
now...i have installed whole set up in main directory.......the installation&#8217;s first page&#8230;
</p>
<p>
Start Installation comes.,
</p>
<p>
i click on I agree check box, and then click on Continue.
</p>
<p>
it does not move further...it go to refresh and then again generates the same page
</p>
<p>
plz tell me the problem or i shall i remove magentocommerce from my server.
</p>
<p>
Warm Regards,
</p>
<p>
Tarun
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by kevbo75217</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>take the cgi out of the mail folder. It should be in the same folder as you main script. 
</p>
<p>
The main script has the files and folders that look like this
<br />
app
<br />
lib
<br />
skin
<br />
js
<br />
media
<br />
var
<br />
.htaccess
<br />
cron.php
<br />
index.php
<br />
favicon
<br />
LICENSE
</p>
<p>
This is where your cgi-bin folder should be. Don&#8217;t forget to also edit the .htaccess file that is in the same folder.
</p>]]></description>
      <content:encoded><![CDATA[<p>take the cgi out of the mail folder. It should be in the same folder as you main script. 
</p>
<p>
The main script has the files and folders that look like this
<br />
app
<br />
lib
<br />
skin
<br />
js
<br />
media
<br />
var
<br />
.htaccess
<br />
cron.php
<br />
index.php
<br />
favicon
<br />
LICENSE
</p>
<p>
This is where your cgi-bin folder should be. Don&#8217;t forget to also edit the .htaccess file that is in the same folder.
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Tarun Agarwal</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>i have copied all the setup files in subfolder.
</p>
<p>
but the cgi is in mail folder.....and the htaccess file also is in sub folder.
<br />
shall i change something...plz suggest.
</p>]]></description>
      <content:encoded><![CDATA[<p>i have copied all the setup files in subfolder.
</p>
<p>
but the cgi is in mail folder.....and the htaccess file also is in sub folder.
<br />
shall i change something...plz suggest.
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by kevbo75217</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>I keep getting this error message when I try to install the php5-cgi
</p>
<p>
 AddHandler requires at least two arguments, a handler name followed by one or more file extensions
</p>
<p>
Any idea&#8217;s on how to fix this issue. I really like the software and want it to work.
</p>]]></description>
      <content:encoded><![CDATA[<p>I keep getting this error message when I try to install the php5-cgi
</p>
<p>
 AddHandler requires at least two arguments, a handler name followed by one or more file extensions
</p>
<p>
Any idea&#8217;s on how to fix this issue. I really like the software and want it to work.
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Michael</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>Hi Melkkar,
</p>
<p>
Please make sure that you uploaded all the files on the server.
</p>
<p>
Thank you.
</p>]]></description>
      <content:encoded><![CDATA[<p>Hi Melkkar,
</p>
<p>
Please make sure that you uploaded all the files on the server.
</p>
<p>
Thank you.
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Melkkar</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>Hi, I need some help, plz!
</p>
<p>
I get an internal server error (everything ok, so far...) but then trying to launch install I start getting  php errors: 
</p>
<p>
Warning: Mage_Core_Block_Template::include(/home/rdredcom/public_html/magento06/app/design/install/default/default/template/page.phtml) [function.Mage-Core-Block-Template-include]: failed to open stream: No such file or directory in /home/rdredcom/public_html/magento06/app/code/core/Mage/Core/Block/Template.php on line 116
</p>
<p>
Any ideas? suggestions? Tnx in advance
</p>]]></description>
      <content:encoded><![CDATA[<p>Hi, I need some help, plz!
</p>
<p>
I get an internal server error (everything ok, so far...) but then trying to launch install I start getting  php errors: 
</p>
<p>
Warning: Mage_Core_Block_Template::include(/home/rdredcom/public_html/magento06/app/design/install/default/default/template/page.phtml) [function.Mage-Core-Block-Template-include]: failed to open stream: No such file or directory in /home/rdredcom/public_html/magento06/app/code/core/Mage/Core/Block/Template.php on line 116
</p>
<p>
Any ideas? suggestions? Tnx in advance
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Michael</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>Hi Ian,
</p>
<p>
Please use exactly the same link as indicated in the post - it is <a href="http://www.magentocommerce.com/support/php5cgi/php5-cgi">http://www.magentocommerce.com/support/php5cgi/php5-cgi</a>
</p>
<p>
File type should make any difference - you can rename it after downloading to php5-cgi, just check that its size is about 17 Mbytes.
</p>
<p>
Thank you.
</p>]]></description>
      <content:encoded><![CDATA[<p>Hi Ian,
</p>
<p>
Please use exactly the same link as indicated in the post - it is <a href="http://www.magentocommerce.com/support/php5cgi/php5-cgi">http://www.magentocommerce.com/support/php5cgi/php5-cgi</a>
</p>
<p>
File type should make any difference - you can rename it after downloading to php5-cgi, just check that its size is about 17 Mbytes.
</p>
<p>
Thank you.
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by mikemike</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>Wow, this is not very fun. Maybe a description of the logic would help that way each person can implement the above instructions per their scenario.
</p>]]></description>
      <content:encoded><![CDATA[<p>Wow, this is not very fun. Maybe a description of the logic would help that way each person can implement the above instructions per their scenario.
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Ian</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>Hi
</p>
<p>
Just trying to download the <a href="http://www.magentocommerce.com/support/php5cgi/php5">http://www.magentocommerce.com/support/php5cgi/php5</a> file by right clicking and doing save as, but it seems to come as a text file and I cannot see how to download it otherwise.
</p>
<p>
Any assistance appreciated
</p>
<p>
Cheers
</p>]]></description>
      <content:encoded><![CDATA[<p>Hi
</p>
<p>
Just trying to download the <a href="http://www.magentocommerce.com/support/php5cgi/php5">http://www.magentocommerce.com/support/php5cgi/php5</a> file by right clicking and doing save as, but it seems to come as a text file and I cannot see how to download it otherwise.
</p>
<p>
Any assistance appreciated
</p>
<p>
Cheers
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Tarun Agarwal</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>hii, 
</p>
<p>
its not going on beyond 
</p>
<p>
<a href="http://www.mydomain.com/mag/install/" target="_blank">http://www.mydomain.com/mag/install/</a>
</p>
<p>
when i check &#8216; I agree to the above terms and condition&#8221;
</p>
<p>
and then click on Continue button, it just...stays on the same page ...it seems that it has just refreshed.
</p>
<p>
Suggest plz.
</p>
<p>
Regards,
</p>
<p>
Tarun
</p>]]></description>
      <content:encoded><![CDATA[<p>hii, 
</p>
<p>
its not going on beyond 
</p>
<p>
<a href="http://www.mydomain.com/mag/install/" target="_blank">http://www.mydomain.com/mag/install/</a>
</p>
<p>
when i check &#8216; I agree to the above terms and condition&#8221;
</p>
<p>
and then click on Continue button, it just...stays on the same page ...it seems that it has just refreshed.
</p>
<p>
Suggest plz.
</p>
<p>
Regards,
</p>
<p>
Tarun
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Mangavod</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>I&#8217;m trying to install the new version of magento on :
</p>
<p>
- one server with php4 and i&#8217;ve got an error : No input file specified.
<br />
- one server with php5 and i&#8217;ve got an error  : Zend_Db_Statement_Mysqli_Exception Object ... exception &#8216;Mage_Core_Exception&#8217; with message &#8216;Error in file.
</p>
<p>
Any ideas ?&nbsp; and solutions ?
</p>]]></description>
      <content:encoded><![CDATA[<p>I&#8217;m trying to install the new version of magento on :
</p>
<p>
- one server with php4 and i&#8217;ve got an error : No input file specified.
<br />
- one server with php5 and i&#8217;ve got an error  : Zend_Db_Statement_Mysqli_Exception Object ... exception &#8216;Mage_Core_Exception&#8217; with message &#8216;Error in file.
</p>
<p>
Any ideas ?&nbsp; and solutions ?
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Mangavod</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>the .htaccess IS in the same directory : /www/magento/.htaccess
</p>]]></description>
      <content:encoded><![CDATA[<p>the .htaccess IS in the same directory : /www/magento/.htaccess
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by derkoidus</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>for those getting this message 
</p>
<p>
“No input file specified.”
</p>
<p>
It means your .htaccess must be in the same directory as magento files.
</p>]]></description>
      <content:encoded><![CDATA[<p>for those getting this message 
</p>
<p>
“No input file specified.”
</p>
<p>
It means your .htaccess must be in the same directory as magento files.
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Mangavod</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>I now have a HTTP 404 error when i try <a href="http://xxxx.com/magento/install/" target="_blank">http://xxxx.com/magento/install/</a>
</p>]]></description>
      <content:encoded><![CDATA[<p>I now have a HTTP 404 error when i try <a href="http://xxxx.com/magento/install/" target="_blank">http://xxxx.com/magento/install/</a>
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Mangavod</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>I’m also getting the following message: 
</p>
<p>
“No input file specified.” 
</p>
<p>
Please provide any suggestions
</p>]]></description>
      <content:encoded><![CDATA[<p>I’m also getting the following message: 
</p>
<p>
“No input file specified.” 
</p>
<p>
Please provide any suggestions
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by johnnyN</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>Just installed into Godaddy and got it working.
<br />
I followed the instructions above and the first time I got bad something error
</p>
<p>
my folders were like this
<br />
root/magento/
<br />
root/cgi/php5-cgi
</p>
<p>
I had my .htaccess set to 
<br />
Action php5-cgi ../cgi/php5-cgi 
<br />
which is incorrect - i changed it to 
<br />
Action php5-cgi /cgi/php5-cgi 
</p>
<p>
here is entire .htaccess file in the magento folder
<br />
===================================
<br />
&lt;IfModule mod_php5.c&gt;
<br />
    php_flag magic_quotes_gpc off
<br />
    php_flag short_open_tag on
<br />
&lt;/IfModule&gt;
</p>
<p>
Action php5-cgi /cgi/php5-cgi 
<br />
AddHandler php5-cgi .php
</p>
<p>
DirectoryIndex index.php
</p>
<p>
RewriteEngine on
</p>
<p>
#RewriteBase /
</p>
<p>
RewriteCond %&#123;REQUEST_URI&#125; !^/media/
<br />
RewriteCond %&#123;REQUEST_URI&#125; !^/skin/
<br />
RewriteCond %&#123;REQUEST_URI&#125; !^/js/
<br />
RewriteCond %&#123;REQUEST_FILENAME&#125; !-f
<br />
RewriteCond %&#123;REQUEST_FILENAME&#125; !-d
<br />
RewriteCond %&#123;REQUEST_FILENAME&#125; !-l
</p>
<p>
RewriteRule .* index.php
</p>
<p>
and it worked.
</p>]]></description>
      <content:encoded><![CDATA[<p>Just installed into Godaddy and got it working.
<br />
I followed the instructions above and the first time I got bad something error
</p>
<p>
my folders were like this
<br />
root/magento/
<br />
root/cgi/php5-cgi
</p>
<p>
I had my .htaccess set to 
<br />
Action php5-cgi ../cgi/php5-cgi 
<br />
which is incorrect - i changed it to 
<br />
Action php5-cgi /cgi/php5-cgi 
</p>
<p>
here is entire .htaccess file in the magento folder
<br />
===================================
<br />
&lt;IfModule mod_php5.c&gt;
<br />
    php_flag magic_quotes_gpc off
<br />
    php_flag short_open_tag on
<br />
&lt;/IfModule&gt;
</p>
<p>
Action php5-cgi /cgi/php5-cgi 
<br />
AddHandler php5-cgi .php
</p>
<p>
DirectoryIndex index.php
</p>
<p>
RewriteEngine on
</p>
<p>
#RewriteBase /
</p>
<p>
RewriteCond %&#123;REQUEST_URI&#125; !^/media/
<br />
RewriteCond %&#123;REQUEST_URI&#125; !^/skin/
<br />
RewriteCond %&#123;REQUEST_URI&#125; !^/js/
<br />
RewriteCond %&#123;REQUEST_FILENAME&#125; !-f
<br />
RewriteCond %&#123;REQUEST_FILENAME&#125; !-d
<br />
RewriteCond %&#123;REQUEST_FILENAME&#125; !-l
</p>
<p>
RewriteRule .* index.php
</p>
<p>
and it worked.
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Moshe</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>@NemoXP: Could you please open a forum thread for this issue?
</p>]]></description>
      <content:encoded><![CDATA[<p>@NemoXP: Could you please open a forum thread for this issue?
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by NemoXP</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>can you tell me how to delete those files? the owner for those files is 99 and i don`t have permission to delete :|
<br />
i`ve renamed the folder var to var2 and created a new folder var, but still looking for deleting those files
<br />
thanks
</p>]]></description>
      <content:encoded><![CDATA[<p>can you tell me how to delete those files? the owner for those files is 99 and i don`t have permission to delete :|
<br />
i`ve renamed the folder var to var2 and created a new folder var, but still looking for deleting those files
<br />
thanks
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Michael</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>Hi NemoXP,
<br />
Could you empty the var directory under you magento folder and try to run the installation again ?
</p>]]></description>
      <content:encoded><![CDATA[<p>Hi NemoXP,
<br />
Could you empty the var directory under you magento folder and try to run the installation again ?
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by NemoXP</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>i`ve added php5-cgi to cgi-bin directory and chmod it to 755 and i retrieve a bad message:))
<br />
the error is quite long
<br />
please take a look on the website: <a href="http://www.margelutze.ro" target="_blank">http://www.margelutze.ro</a> and tell me if i can do something to make it fix.
</p>]]></description>
      <content:encoded><![CDATA[<p>i`ve added php5-cgi to cgi-bin directory and chmod it to 755 and i retrieve a bad message:))
<br />
the error is quite long
<br />
please take a look on the website: <a href="http://www.margelutze.ro" target="_blank">http://www.margelutze.ro</a> and tell me if i can do something to make it fix.
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Rule&#45;of&#45;Three</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<blockquote><p>I’m using a plesk server so the cgi-directory is not in the root of the site.
<br />
I tried this method and I get a “The page isn’t redirecting properly” error in Firefox.
<br />
Any ideea why?</p></blockquote>
<p>
Do you speak about Basic Web Hosting Plan on Plesk or Virtual Private Server on Plesk or even VSP with full Plesk installation.
</p>
<p>
If you have a VSP that is virtualized with SWsoft Software or VSP with Plesk you can even install latest PHP and modify httpd.conf file your self with notepad..
</p>
<p>
On Windows cgi-bin directory is in Apache root folder.. and much I know about Linux Apache is in /etc/httpd/ or in some other sub folder of Linux root.. sorry can&#8217;t remember because its long time from that I am used Hosting Plan with SWsoft&#8217;s Software&#8230;
</p>]]></description>
      <content:encoded><![CDATA[<blockquote><p>I’m using a plesk server so the cgi-directory is not in the root of the site.
<br />
I tried this method and I get a “The page isn’t redirecting properly” error in Firefox.
<br />
Any ideea why?</p></blockquote>
<p>
Do you speak about Basic Web Hosting Plan on Plesk or Virtual Private Server on Plesk or even VSP with full Plesk installation.
</p>
<p>
If you have a VSP that is virtualized with SWsoft Software or VSP with Plesk you can even install latest PHP and modify httpd.conf file your self with notepad..
</p>
<p>
On Windows cgi-bin directory is in Apache root folder.. and much I know about Linux Apache is in /etc/httpd/ or in some other sub folder of Linux root.. sorry can&#8217;t remember because its long time from that I am used Hosting Plan with SWsoft&#8217;s Software&#8230;
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Rule&#45;of&#45;Three</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>Hmm.. if you want to use Magento so why to buy low price basic Hosting Plan?
</p>
<p>
Why not buy Virtual Private Server? Virtual Private Server on some Server Virtualization System might only a cost 5-10 € / month more than basic hosting plan but needs much more knowledge about that how to install/configure all Sever Software like Apache, PHP and MySQL, SMTP and POP3/IMAP Server etc. on Linux/Windows Environment. And knowledge how setup security correctly. Benefit is that you can choose PHP version etc.
</p>
<p>
One thing I want to say I do not think that all ISPs allow to do much user custom setting to PHP like this CGI thing. Meny times much that user want to do is limited like user can not change much Apache setting with .htaccess&#8230;
</p>]]></description>
      <content:encoded><![CDATA[<p>Hmm.. if you want to use Magento so why to buy low price basic Hosting Plan?
</p>
<p>
Why not buy Virtual Private Server? Virtual Private Server on some Server Virtualization System might only a cost 5-10 € / month more than basic hosting plan but needs much more knowledge about that how to install/configure all Sever Software like Apache, PHP and MySQL, SMTP and POP3/IMAP Server etc. on Linux/Windows Environment. And knowledge how setup security correctly. Benefit is that you can choose PHP version etc.
</p>
<p>
One thing I want to say I do not think that all ISPs allow to do much user custom setting to PHP like this CGI thing. Meny times much that user want to do is limited like user can not change much Apache setting with .htaccess&#8230;
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by d8n</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>Anyone who has installed magento on godaddy, I could use some help&#8230; what does your .htaccess file look like and what else did you have to do, if anything for the php5-cgi workaround. Also posted in the forum: <a href="http://www.magentocommerce.com/boards/viewthread/1571/">http://www.magentocommerce.com/boards/viewthread/1571/</a>
</p>]]></description>
      <content:encoded><![CDATA[<p>Anyone who has installed magento on godaddy, I could use some help&#8230; what does your .htaccess file look like and what else did you have to do, if anything for the php5-cgi workaround. Also posted in the forum: <a href="http://www.magentocommerce.com/boards/viewthread/1571/">http://www.magentocommerce.com/boards/viewthread/1571/</a>
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by derkoidus</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>I&#8217;m also getting the following message:
</p>
<p>
“No input file specified.”
</p>
<p>
Please provide any suggestions
</p>]]></description>
      <content:encoded><![CDATA[<p>I&#8217;m also getting the following message:
</p>
<p>
“No input file specified.”
</p>
<p>
Please provide any suggestions
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by springrates</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>I can&#8217;t see the .htaccess file in the magento folder, but I can see it in some of the subfolders.
</p>]]></description>
      <content:encoded><![CDATA[<p>I can&#8217;t see the .htaccess file in the magento folder, but I can see it in some of the subfolders.
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by rajbrades</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>I&#8217;m getting this error:
</p>
<p>
Error message: 
<br />
Premature end of script headers: php5-cgi 
</p>
<p>
..just like Greek.
</p>
<p>
Was there ever a solution to this?
</p>]]></description>
      <content:encoded><![CDATA[<p>I&#8217;m getting this error:
</p>
<p>
Error message: 
<br />
Premature end of script headers: php5-cgi 
</p>
<p>
..just like Greek.
</p>
<p>
Was there ever a solution to this?
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Domino</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>Oups. I was loading the install page with https.
<br />
I hope I won&#8217;t have troubles in the buy process.
</p>]]></description>
      <content:encoded><![CDATA[<p>Oups. I was loading the install page with https.
<br />
I hope I won&#8217;t have troubles in the buy process.
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Domino</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>I&#8217;m using a plesk server so the cgi-directory is not in the root of the site.
<br />
I tried this method and I get a &#8220;The page isn&#8217;t redirecting properly&#8221; error in Firefox.
<br />
Any ideea why?
</p>]]></description>
      <content:encoded><![CDATA[<p>I&#8217;m using a plesk server so the cgi-directory is not in the root of the site.
<br />
I tried this method and I get a &#8220;The page isn&#8217;t redirecting properly&#8221; error in Firefox.
<br />
Any ideea why?
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by jerbroo_dot_com</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>I&#8217;m seeing this message when try to install. 
</p>
<p>
&#8220;No input file specified.&#8221;
</p>
<p>
 I&#8217;m using the php5-cgi binary method on php 5.1.6.
</p>
<p>
Any ideas?
</p>
<p>
thanks,
<br />
  Jeremy
</p>]]></description>
      <content:encoded><![CDATA[<p>I&#8217;m seeing this message when try to install. 
</p>
<p>
&#8220;No input file specified.&#8221;
</p>
<p>
 I&#8217;m using the php5-cgi binary method on php 5.1.6.
</p>
<p>
Any ideas?
</p>
<p>
thanks,
<br />
  Jeremy
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by beazleybub</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>My I please remind everyone that php5 is not a whole number.
</p>
<p>
For example godaddy currently uses 5.1.4 wich is indeed php5 but magento will not run on it.
</p>
<p>
Magento requires php5.20
</p>]]></description>
      <content:encoded><![CDATA[<p>My I please remind everyone that php5 is not a whole number.
</p>
<p>
For example godaddy currently uses 5.1.4 wich is indeed php5 but magento will not run on it.
</p>
<p>
Magento requires php5.20
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Ross</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>Just thought I would also add&#8230;
</p>
<p>
Don&#8217;t be hasty to use the CGI option described here - use as a last resort.&nbsp; First make (very) sure your host doesn&#8217;t have PHP5 support.
</p>
<p>
Many web hosts support both PHP4 and PHP5 (at the same time), but have PHP4 set as the default handler for files with the .php extension.&nbsp; Usually files with the .php5 extension will run with PHP5, and you can usually override the default handler for .php as well.
</p>
<p>
It is worth checking your hosts knowledge base for details, as it is not always advertised.
</p>
<p>
For example:
</p>
<p>
site5.com have PHP4 for *.php and PHP5 for *.php5 - this can be overridden with the following line in a .htaccess file:
<br />
AddHandler application/x-httpd-php5 .php
</p>
<p>
heartinternet.co.uk also have PHP4 for *.php and PHP5 for *.php5 -  but it is overridden with this line in a .htaccess file:
<br />
SetEnv DEFAULT_PHP_VERSION 5 
</p>
<p>
If you still have no luck and you have to go the CGI route, at least make sure you lodge a support request for your host to add PHP5.
<br />
<a href="http://gophp5.org/" target="_blank">http://gophp5.org/</a>
</p>]]></description>
      <content:encoded><![CDATA[<p>Just thought I would also add&#8230;
</p>
<p>
Don&#8217;t be hasty to use the CGI option described here - use as a last resort.&nbsp; First make (very) sure your host doesn&#8217;t have PHP5 support.
</p>
<p>
Many web hosts support both PHP4 and PHP5 (at the same time), but have PHP4 set as the default handler for files with the .php extension.&nbsp; Usually files with the .php5 extension will run with PHP5, and you can usually override the default handler for .php as well.
</p>
<p>
It is worth checking your hosts knowledge base for details, as it is not always advertised.
</p>
<p>
For example:
</p>
<p>
site5.com have PHP4 for *.php and PHP5 for *.php5 - this can be overridden with the following line in a .htaccess file:
<br />
AddHandler application/x-httpd-php5 .php
</p>
<p>
heartinternet.co.uk also have PHP4 for *.php and PHP5 for *.php5 -  but it is overridden with this line in a .htaccess file:
<br />
SetEnv DEFAULT_PHP_VERSION 5 
</p>
<p>
If you still have no luck and you have to go the CGI route, at least make sure you lodge a support request for your host to add PHP5.
<br />
<a href="http://gophp5.org/" target="_blank">http://gophp5.org/</a>
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Ross</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>It might be worth mentioning what kind of binary is being supplied with the link in the article.
</p>
<p>
I presume it is compiled for Linux x86, but it really needs to be stated.
</p>
<p>
In which case, it will NOT work for:
<br />
 - Windows
<br />
 - Mac OSX
<br />
 - Solaris
<br />
 - *BSD
<br />
 - Linux on other platforms (PPC, sparc, alpha, etc.)
</p>
<p>
My suggestion is that when it comes time to run a live store, make sure you switch to hosting that _does_ support PHP5 (note: PHP4 is end of life anyway - <a href="http://www.php.net/index.php#2007-07-13-1" target="_blank">http://www.php.net/index.php#2007-07-13-1</a> )
</p>]]></description>
      <content:encoded><![CDATA[<p>It might be worth mentioning what kind of binary is being supplied with the link in the article.
</p>
<p>
I presume it is compiled for Linux x86, but it really needs to be stated.
</p>
<p>
In which case, it will NOT work for:
<br />
 - Windows
<br />
 - Mac OSX
<br />
 - Solaris
<br />
 - *BSD
<br />
 - Linux on other platforms (PPC, sparc, alpha, etc.)
</p>
<p>
My suggestion is that when it comes time to run a live store, make sure you switch to hosting that _does_ support PHP5 (note: PHP4 is end of life anyway - <a href="http://www.php.net/index.php#2007-07-13-1" target="_blank">http://www.php.net/index.php#2007-07-13-1</a> )
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Travis</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>Managed to get it to work.&nbsp; I&#8217;m trying trace the steps to put a guide together.
</p>]]></description>
      <content:encoded><![CDATA[<p>Managed to get it to work.&nbsp; I&#8217;m trying trace the steps to put a guide together.
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Andre</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>OK ive fixed the problem. For anyone else getting this error, please make sure that not only the php5-cgi file is CHMOD 755, but the cgi-bin directory is also CHMOD 755.
</p>
<p>
I hope this helps <img src="http://www.magentocommerce.com/images/smileys/smile.gif" width="19" height="19" alt="smile" style="border:0;padding:0;" />
</p>]]></description>
      <content:encoded><![CDATA[<p>OK ive fixed the problem. For anyone else getting this error, please make sure that not only the php5-cgi file is CHMOD 755, but the cgi-bin directory is also CHMOD 755.
</p>
<p>
I hope this helps <img src="http://www.magentocommerce.com/images/smileys/smile.gif" width="19" height="19" alt="smile" style="border:0;padding:0;" />
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Andre</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>Hey Greek, i&#8217;m getting the same error - have you found the solution?
</p>
<p>
Cheers
<br />
Andre
</p>]]></description>
      <content:encoded><![CDATA[<p>Hey Greek, i&#8217;m getting the same error - have you found the solution?
</p>
<p>
Cheers
<br />
Andre
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by beazleybub</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>Travis
</p>
<p>
I use godaddy
</p>]]></description>
      <content:encoded><![CDATA[<p>Travis
</p>
<p>
I use godaddy
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Travis</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>Thanks.&nbsp; 
</p>
<p>
I do get the correct error when trying to access the cgi file on my server.&nbsp; So that&#8217;s good.
</p>
<p>
Still re-uploading all the Magento files (takes a good hour or so).
</p>
<p>
What type of server (host) have you managed to get this to work on?
</p>]]></description>
      <content:encoded><![CDATA[<p>Thanks.&nbsp; 
</p>
<p>
I do get the correct error when trying to access the cgi file on my server.&nbsp; So that&#8217;s good.
</p>
<p>
Still re-uploading all the Magento files (takes a good hour or so).
</p>
<p>
What type of server (host) have you managed to get this to work on?
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by beazleybub</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>Travis make sure that you edit the htacces file to point to the location of the php5-cgi.
<br />
( I totally forgot that step when I installed mine. )
<br />
And make sure the cgi binary was not saved as a text file when you downloaded it.
</p>
<p>
Good luck!&nbsp; <img src="http://www.magentocommerce.com/images/smileys/lol.gif" width="19" height="19" alt="LOL" style="border:0;padding:0;" />
</p>]]></description>
      <content:encoded><![CDATA[<p>Travis make sure that you edit the htacces file to point to the location of the php5-cgi.
<br />
( I totally forgot that step when I installed mine. )
<br />
And make sure the cgi binary was not saved as a text file when you downloaded it.
</p>
<p>
Good luck!&nbsp; <img src="http://www.magentocommerce.com/images/smileys/lol.gif" width="19" height="19" alt="LOL" style="border:0;padding:0;" />
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Travis</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>Yup.
</p>
<p>
Went through the exact steps above, several times.&nbsp; 
</p>
<p>
I&#8217;m giving it another try now on a new domain, clean directories, and will report what happens.
</p>]]></description>
      <content:encoded><![CDATA[<p>Yup.
</p>
<p>
Went through the exact steps above, several times.&nbsp; 
</p>
<p>
I&#8217;m giving it another try now on a new domain, clean directories, and will report what happens.
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by beazleybub</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>Travis did you put the binary in the cgi-bin?
</p>
<p>
Make sure the AddHandler directive in your .htaccess file is pointing to the correct location for the PHP5 binary. You can often test it by trying to surf to the location with your web browser. For example, if your site is <a href="http://www.example.com" target="_blank">http://www.example.com</a> and your PHP5 location is /cgi-bin/php5-cgi, try visiting <a href="http://www.example.com/cgi-bin/php5-cgi" target="_blank">http://www.example.com/cgi-bin/php5-cgi</a> with your web browser. If you see a Internal Server Error message, then that means your PHP5 binary is in the correct location. If you get a File not found message, then this is not the correct location.
</p>]]></description>
      <content:encoded><![CDATA[<p>Travis did you put the binary in the cgi-bin?
</p>
<p>
Make sure the AddHandler directive in your .htaccess file is pointing to the correct location for the PHP5 binary. You can often test it by trying to surf to the location with your web browser. For example, if your site is <a href="http://www.example.com" target="_blank">http://www.example.com</a> and your PHP5 location is /cgi-bin/php5-cgi, try visiting <a href="http://www.example.com/cgi-bin/php5-cgi" target="_blank">http://www.example.com/cgi-bin/php5-cgi</a> with your web browser. If you see a Internal Server Error message, then that means your PHP5 binary is in the correct location. If you get a File not found message, then this is not the correct location.
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by SimpleHelix.com</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>im providing free hosting for anyone interested just hit me up at simplehelix@gmail.com for testing  purposes
</p>]]></description>
      <content:encoded><![CDATA[<p>im providing free hosting for anyone interested just hit me up at simplehelix@gmail.com for testing  purposes
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Travis</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>Been going at this for hours.
</p>
<p>
No matter what I do, I keep getting a 404:
</p>
<p>
The requested URL /cgi-bin/php5-cgi/index.php was not found on this server.
</p>
<p>
Magento is installed in the root directory of my server (httpdocs), not in a subdirectory, and I added the code above to my .htaccess in that root directory:
</p>
<p>
Action php5-cgi /cgi-bin/php5-cgi 
<br />
AddHandler php5-cgi .php
</p>
<p>
No luck.&nbsp; Any ideas?
</p>]]></description>
      <content:encoded><![CDATA[<p>Been going at this for hours.
</p>
<p>
No matter what I do, I keep getting a 404:
</p>
<p>
The requested URL /cgi-bin/php5-cgi/index.php was not found on this server.
</p>
<p>
Magento is installed in the root directory of my server (httpdocs), not in a subdirectory, and I added the code above to my .htaccess in that root directory:
</p>
<p>
Action php5-cgi /cgi-bin/php5-cgi 
<br />
AddHandler php5-cgi .php
</p>
<p>
No luck.&nbsp; Any ideas?
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by Greek</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>when i try this i becomes a error:
</p>
<p>
Premature end of script headers: php5-cgi
</p>]]></description>
      <content:encoded><![CDATA[<p>when i try this i becomes a error:
</p>
<p>
Premature end of script headers: php5-cgi
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by d8n</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>Thanks!
</p>]]></description>
      <content:encoded><![CDATA[<p>Thanks!
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by RoyRubin</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>sorry - its there now
</p>]]></description>
      <content:encoded><![CDATA[<p>sorry - its there now
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>

    <item>
      <title>Comment by d8n</title>
      <link>{url_as_link}</link>
      <description><![CDATA[<p>Where is the Magento compiled php5 binary? This link is empty &gt;&gt;(<a href="http://www.magentocommerce.com/support/php5cgi/php5-cgi">http://www.magentocommerce.com/support/php5cgi/php5-cgi</a>)
</p>]]></description>
      <content:encoded><![CDATA[<p>Where is the Magento compiled php5 binary? This link is empty &gt;&gt;(<a href="http://www.magentocommerce.com/support/php5cgi/php5-cgi">http://www.magentocommerce.com/support/php5cgi/php5-cgi</a>)
</p>]]></content:encoded>
    <dc:date>2008-06-26 T;21:48:00-08:00</dc:date>
    </item>


</channel>
</rss>