[osCommerce] Infinite Redirect After Install
Re: [osCommerce] Infinite Redirect After Install
Re: [osCommerce] Infinite Redirect After Install
Re: [osCommerce] Infinite Redirect After Install
Re: [osCommerce] Infinite Redirect After Install
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>
Re: [osCommerce] Infinite Redirect After Install
Re: [osCommerce] Infinite Redirect After Install
Re: [osCommerce] Infinite Redirect After Install
Re: [osCommerce] Infinite Redirect After Install
Re: [osCommerce] Infinite Redirect After Install
Re: [osCommerce] Infinite Redirect After Install
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);