[CRE Loaded] Getting Page cannot be displayed

Magic SEO URLs for CRE Loaded.
Abe
Posts: 3
Joined: Mon Jun 15, 2009 9:43 am

[CRE Loaded] Getting Page cannot be displayed

Postby Abe » Mon Jun 15, 2009 9:49 am

After installing Magic SEO, When I now click on checkout in our shopping cart it takes me to https://www.healthyisland.com/checkout/shipping.html with a page cannot be displayed error.
Using CRE loaded Pro 6.3
Thanks

inveo
Inveo Support
Posts: 1285
Joined: Sat Feb 02, 2008 12:07 pm
Contact:

Re: [CRE Loaded] Getting Page cannot be displayed

Postby inveo » Mon Jun 15, 2009 9:58 am

This is caused by incorrectly configured mod_negotiation module loaded into Apache. It can be solved by removing this module or by following these instructions:

Rename files:

Code: Select all

account.php
includes/languages/english/account.php
articles.php
includes/languages/english/articles.php
specials.php
includes/languages/english/specials.php
reviews.php
includes/languages/english/reviews.php
links.php


to:

Code: Select all

msuaccount.php
includes/languages/english/msuaccount.php
msuarticles.php
includes/languages/english/msuarticles.php
msuspecials.php
includes/languages/english/msuspecials.php
msureviews.php
includes/languages/english/msureviews.php
msulinks.php


(and same apply to files of other languages)

Alter includes/filenames.php file according to these changes (following constants need to be changed):

Code: Select all

define('FILENAME_ACCOUNT', 'msu'.CONTENT_ACCOUNT . '.php');
define('FILENAME_ARTICLES', 'msu'.CONTENT_ARTICLES . '.php');
define('FILENAME_SPECIALS', 'msu'.CONTENT_SPECIALS . '.php');
define('FILENAME_REVIEWS', 'msu'.CONTENT_REVIEWS . '.php');
define('FILENAME_LINKS', 'msu'.CONTENT_LINKS . '.php');


and the last task is to re-generate the .htaccess file.

Abe
Posts: 3
Joined: Mon Jun 15, 2009 9:43 am

Re: [CRE Loaded] Getting Page cannot be displayed

Postby Abe » Mon Jun 15, 2009 8:01 pm

Thanks,
I did exactly what's suggested and it seemed to have fixed the problem.