문제

I have used this guide in a previous installation with Magento 1.7 and it worked well, but I am using version 1.8 now and it doesn't seem to work at all.

The edits I made the following edits to the index.php:

$compilerConfig = MAGENTO_ROOT . '/../includes/config.php';

$mageFilename = MAGENTO_ROOT . '/../app/Mage.php'; 

to properly find the appropriate files.

And I added this to the end (with lic23rdst being the website name):

$mageRunCode = 'lic23rdst'; 

$mageRunType = 'website'; 

Mage::run($mageRunCode, $mageRunType);

When I try to access the new store I get this message:

app/Mage.php was not found

Can anyone assist me with this?

도움이 되었습니까?

해결책

Why not just symlink the directory?

ln -s otherstore .

Now store.com and store.com/otherstore will point to the same filesystem.

You can use some logic in your index.php to determine what the store code should be.

You also have the option to include store codes in the URL, then Magento will take care of the logic and filesystem for you.

enter image description here

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top