I tried to open the start page, but I throw out a 404 error. When I start debugging, I saw, that in app.php
public function getStore($ id = null) { if ($ this->_isInstalled === null) { $ this->_isInstalled = Mage::isInstalled(); } if (!$ this->_isInstalled || $ this->getUpdateMode()) { return $ this->_getDefaultStore(); } if ($ id === true && $ this->isSingleStoreMode()) { return $ this->_store; } if (!isset($ id) || ''===$ id || $ id === true) { $ id = $ this->_currentStore; } if ($ id instanceof Mage_Core_Model_Store) { return $ id; } if (!isset($ id)) { $ this->throwStoreException(); }
my $ id is null. My config.xml is
<?xml version="1.0"?> <config> <global> <install> <date> <![CDATA[Wed, 09 Nov 2011 20:48:34 +0000]]> </date> </install> <crypt> <key> <![CDATA[36e6b4cad4baf868159b3ba3c03050f1]]> </key> </crypt> <cache> </cache> <disable_local_modules>false</disable_local_modules> <resources> <db> <table_prefix> <![CDATA[label_]]> </table_prefix> </db> <default_setup> <connection> <host> <![CDATA[localhost]]> </host> <username> <![CDATA[root]]> </username> <password> <![CDATA[my_pass]]> </password> <dbname> <![CDATA[my_name]]> </dbname> <initStatements> <![CDATA[SET NAMES utf8]]> </initStatements> <model> <![CDATA[mysql4]]> </model> <type> <![CDATA[pdo_mysql]]> </type> <pdoType> <![CDATA[]]> </pdoType> <active>1</active> </connection> </default_setup> </resources> <session_save> <![CDATA[db]]> </session_save> </global> <admin> <routers> <adminhtml> <args> <frontName> <![CDATA[superadmin]]> </frontName> </args> </adminhtml> </routers> </admin> </config>
What it is?