|
Hi,
For the development purposes I want to have 2 app folders for the one shop.
I want to choose which folder to use as “app” by IP.
Then I suggested that I can do it in the index.php file. I found where the app/Mage.php includes and changed it to:
if($_SERVER['REMOTE_ADDR']=='82.117.249.152') { $mageFilename = 'app_1401/Mage.php'; } else { $mageFilename = 'app/Mage.php'; }
But the store doesn’t want to work.
http://screencast.com/t/ailDquwf0
How to make Magento use app_1401 and nothing more?
Thanks.
|