How do i install shop system in a sub-directory?

badlands

Member
Hi there,

probably a simple question. I installed a shop system (freshstorebuilder) in a subdirectory to xenforo (/shop/). When I run the shop, I get the error message that the page could not be found - and this error message in my Xenforo forum. Apparently the /shop/ and sub-folders are somehow interfereing with the Xenforo system.

YOu can see the Error message when clicking on http://anfcommunity.de/shop/hollister-herren-pacific-polo-t-shirt-tee-hemd-mehrere-farben/

Thanks for help!
 
Hi, I solved the problem partly via a Mod Rewrite

Code:
# BEGIN FreshStoreBuilder
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /shop
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ index.php [L]
</IfModule>
# END FreshStoreBuilder

When I click on buttons in the store system it shows the target URLs in my browser field, but the home screen in the browser window. Can anyone help? Thanks a bunch!
 
Top Bottom