[osCommerce] Infinite Redirect After Install

Magic SEO URLs for CRE Loaded.
davref
Posts: 16
Joined: Sat Jul 11, 2009 1:53 pm

Re: [osCommerce] Infinite Redirect After Install

Postby davref » Sat Jul 11, 2009 5:19 pm

Sorry for my ignorance but isn't that a necessary redirect? How would I fix that?

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

Re: [osCommerce] Infinite Redirect After Install

Postby inveo » Sat Jul 11, 2009 5:22 pm

It is not necessary to do such redirect. I can't provide you with details how to fix it, since JS code which is doing this is not included in pure osCommerce.

davref
Posts: 16
Joined: Sat Jul 11, 2009 1:53 pm

Re: [osCommerce] Infinite Redirect After Install

Postby davref » Sat Jul 11, 2009 10:32 pm

Where is MSU trying to redirect me to that a redirect to http://www.ubreakifix.com/index.php results in an infinite loop. I have no recollection of JS anywhere on the server that could be responsible for the redirect and I can't find it. It's probablly there somewhere but I don't know where, is there a work around on the MSU side that might work to resolve this issue? Thanks again.

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

Re: [osCommerce] Infinite Redirect After Install

Postby inveo » Sun Jul 12, 2009 4:29 am

Once again, it is not MSU issue.

JS code responsible to this problem is this line in your HTML source code:

Code: Select all

<script type='text/javascript'>window.location='index.php';</script>

davref
Posts: 16
Joined: Sat Jul 11, 2009 1:53 pm

Re: [osCommerce] Infinite Redirect After Install

Postby davref » Sun Jul 12, 2009 7:44 am

Ah Ha! Thanks for the tip, finally found it buried in my header. Thanks again.

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

Re: [osCommerce] Infinite Redirect After Install

Postby inveo » Sun Jul 12, 2009 8:02 am

Btw I took a look to your web site and it will also be necessary to apply: [CRE Loaded] Getting Page cannot be displayed

davref
Posts: 16
Joined: Sat Jul 11, 2009 1:53 pm

Re: [osCommerce] Infinite Redirect After Install

Postby davref » Mon Jul 13, 2009 7:07 pm

I followed the steps in the thread you mentioned however I am still receiving a 404 error on the account, reviews, and specials pages.

davref
Posts: 16
Joined: Sat Jul 11, 2009 1:53 pm

Re: [osCommerce] Infinite Redirect After Install

Postby davref » Mon Jul 13, 2009 8:15 pm

Also, I didn't realize the copyright notice was included in the special edition, can I upgrade if I get everything working?

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

Re: [osCommerce] Infinite Redirect After Install

Postby inveo » Tue Jul 14, 2009 5:43 am

Make sure you have edited the correct constants and the .htaccess file has been re-generated.

davref
Posts: 16
Joined: Sat Jul 11, 2009 1:53 pm

Re: [osCommerce] Infinite Redirect After Install

Postby davref » Tue Jul 14, 2009 6:53 am

Ok, the pages are working, I just had to recreate a bunch of links. There seems to be a campatibility issue with the header tags module I previously installed. At the top of the specials page I receive the following errors:

Warning: implode() [function.implode]: Invalid arguments passed in /homepages/36/d258193784/htdocs/ubreakifix/includes/functions/header_tags.php on line 63

Warning: implode() [function.implode]: Invalid arguments passed in /homepages/36/d258193784/htdocs/ubreakifix/includes/functions/header_tags.php on line 64

Warning: implode() [function.implode]: Invalid arguments passed in /homepages/36/d258193784/htdocs/ubreakifix/includes/functions/header_tags.php on line 66

Line 63, 64, and 65 on header_tags.php are:

Code: Select all

 $header_tags_array['title'] = ltrim(tep_db_prepare_input(implode(' ' . HEADER_TAGS_SEPARATOR_DESCRIPTION . ' ', $sortOrder['title'])), ' ' . HEADER_TAGS_SEPARATOR_DESCRIPTION);

  $header_tags_array['desc'] = ltrim(tep_db_prepare_input(implode(' ' . HEADER_TAGS_SEPARATOR_DESCRIPTION . ' ', $sortOrder['description'])), ' ' . HEADER_TAGS_SEPARATOR_DESCRIPTION);

  $header_tags_array['keywords'] = ltrim(tep_db_prepare_input(implode(' ' . HEADER_TAGS_SEPARATOR_KEYWORD . ' ', $sortOrder['keywords'])), ' ' . HEADER_TAGS_SEPARATOR_KEYWORD);