<?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>Magento Issue Tracking</title>
    <link>http://www.magentocommerce.com/bug-tracking/</link>
    <description></description>
    <dc:language>en</dc:language>
    <dc:creator>MagentoCommerce</dc:creator>
    <dc:rights>Copyright {gmt_date format="%Y"}</dc:rights>
    <dc:date>{gmt_date format="%Y-%m-%dT%H:%i:%s%Q"}</dc:date>
    <admin:generatorAgent rdf:resource="http://expressionengine.com/" />
        <item>
        <title>View Issue #27892 / Upon setting up database, error is displayed: PHP </title>
        <link>http://www.magentocommerce.com/bug-tracking/issue?issue=13827</link>
        <description><![CDATA[<strong>Posted:</strong> 2012-06-21 22:23:52<br/><strong>Category:</strong> Installation<br/><strong>Version:</strong> 1.7.0.1<br/><strong>Priority:</strong> normal<br/><strong>Status:</strong> new<br/><strong>Reported By:</strong> <a href="http://www.magentocommerce.com/boards/member/26398371/">jeremy23</a></strong><br/><br/>I have spent the better part of the morning trying to get Magento installed. Every time I submit at the database installation screen, I get the following message at the top:<br />
<br />
    PHP Extensions &quot;0&quot; must be loaded.<br />
<br />
Looking through the code, it seems as though the return value of the function Mage_Install_Model_Installer_Db_Abstract::getRequiredExtensions() from app/code/core/Mage/Install/Model/Installer/Db/Abstract.php is returning Array( [0] =&gt; 0 ).<br />
<br />
I modified the code in getRequiredExtensions() to &quot;return Array();&quot; at the top, and installation proceeded smoothly. This is but a hack, though.<br />
<br />
This error also occurs when running install.php from the command-line:<br />
<br />
  # php5 -f install.php -- --license_agreement_accepted &quot;yes&quot; --locale &quot;en_AU&quot; --timezone &quot;Australia/Sydney&quot; --default_currency &quot;AUD&quot; # etc etc etc<br />
  FAILED<br />
  ERROR: PHP Extensions &quot;0&quot; must be loaded.<br />
<br />
I have fulfilled all the PHP extension requirements, and magento-check.php says my &quot;server meets the requirements for Magento&quot;.<br />
<br />
Environment is a fresh install of Debian Wheezy, running Apache 2.2.22, PHP 5.4.5, MySQL 5.5.14, and the necessary PHP extensions from the Debian repository.<br />
<br />
I have tested Magento 1.7.0.0 and 1.7.0.1, and both suffer from the same issue.<br />
<br />
A forum user is having the same problem, but has had no response: http://www.magentocommerce.com/boards/viewthread/284882/<br/><br/><hr/>]]></description>
    </item>
    
                    <item>
        <title>RE: Upon setting up database, error is displayed: PHP </title>
        <description><![CDATA[<em>#1 / Comment by <a href="http://www.magentocommerce.com/boards/member/26205195/">maxya123</a></em><br/><br/>I'm facing the same issue with 1.7.0.1. magento-check.php says my &quot;server meets the requirements for Magento&quot;, but getting PHP Extensions &quot;0&quot; must be loaded.]]></description>
    </item>
            <item>
        <title>RE: Upon setting up database, error is displayed: PHP </title>
        <description><![CDATA[<em>#2 / Comment by <a href="http://www.magentocommerce.com/boards/member/26670329/">OzzyJohn</a></em><br/><br/>I'm seeing the same problem, recent install of Ubuntu 12.04 LTS LAMP server installed in virtualbox, only other things installed are<br />
<br />
1. myphpadmin<br />
2. webmin<br />
<br />
This sounds like it might be debian related .. I might try with a redhat clean install and another ubuntu install without the other apps loaded.<br />
<br />
The fix mentioned above does work, and given that it's only in the installer seems acceptable for the moment, nonetheless it would be nice to know what the root cause of the problem is<br />
<br />
Another fix that was suggested was<br />
<br />
The problem seems to be in wrong version PHP SimpleXML extension. Here?s another workaround:<br />
<br />
Replace in file app/code/core/Mage/Install/etc/config.xml (near 71th string) this<br />
<br />
&lt;extensions&gt;<br />
    &lt;pdo_mysql/&gt;<br />
&lt;/extensions&gt;<br />
<br />
with this<br />
<br />
&lt;extensions&gt;<br />
    &lt;pdo_mysql&gt;1&lt;/pdo_mysql&gt;<br />
&lt;/extensions&gt; <br />
<br />
Which seems to have worked for others, but did not work for me, <br />
<br />
If anyone is interested the PDO info from phpinfo is as follows<br />
<br />
PDO<br />
PDO support    enabled<br />
PDO drivers     mysql<br />
<br />
pdo_mysql<br />
PDO Driver for MySQL    enabled<br />
Client API version     5.5.27<br />
<br />
Directive    Local Value    Master Value<br />
pdo_mysql.default_socket    /var/run/mysqld/mysqld.sock    /var/run/mysqld/mysqld.sock]]></description>
    </item>
            <item>
        <title>RE: Upon setting up database, error is displayed: PHP </title>
        <description><![CDATA[<em>#3 / Comment by <a href="http://www.magentocommerce.com/boards/member/26298262/">major_impact</a></em><br/><br/>I tested it and can confirm that this bug is present.<br />
<br />
The current version of magento is not installable without the modfications described above. :-/]]></description>
    </item>
            <item>
        <title>RE: Upon setting up database, error is displayed: PHP </title>
        <description><![CDATA[<em>#4 / Comment by <a href="http://www.magentocommerce.com/boards/member/26613274/">devplayer</a></em><br/><br/>same problem with magento 1.7.0.2 and PHP Version 5.4.6-1ubuntu1.1 , the same fix '&lt;pdo_mysql&gt;1&lt;/pdo_mysql&gt;' in config.xml does the trick]]></description>
    </item>
            <item>
        <title>RE: Upon setting up database, error is displayed: PHP </title>
        <description><![CDATA[<em>#5 / Comment by <a href="http://www.magentocommerce.com/boards/member/23710/">Appmerce</a></em><br/><br/>This happens because Magento could not determine the version of MySQL, or could not detect MySQL. I am using MySQL 5.5.29 and PHP 5.4.10 on Apache 2.4.2]]></description>
    </item>
        </channel>
</rss>