[CubeCart] Redirect loop after installing Magic SEO URLs
[CubeCart] Redirect loop after installing Magic SEO URLs
Hi, I just installed Magic Seo on my Cubecart 4 store.
It seems that I'm getting a redirect infinite loop. My store is http://www.smokingsweeties.com/videos and I've found out this redirect loop when submiting my site on the validator at http://validator.w3.org/
any help will be highly appreciated
It seems that I'm getting a redirect infinite loop. My store is http://www.smokingsweeties.com/videos and I've found out this redirect loop when submiting my site on the validator at http://validator.w3.org/
any help will be highly appreciated
Re: [CubeCart] Redirect loop after installing Magic SEO URLs
We have checked your site and it does not work with cookies disabled clients such as W3 validator. We have never met such problem yet. It will likely be a site specific problem.
In order to resolve this issue we will need your FTP credentials (please use PM).
In order to resolve this issue we will need your FTP credentials (please use PM).
Re: [CubeCart] Redirect loop after installing Magic SEO URLs
One other client has been experiencing similar issue and we got FTP credentials so we could do debugging. This problem is due to bug in CubeCart.
To fix it, please open-up includes/boxes/poll.inc.php file and
Find
and Replace with:
To fix it, please open-up includes/boxes/poll.inc.php file and
Find
Code: Select all
if($_COOKIE["poll".$_POST['qid']] != "true"){
and Replace with:
Code: Select all
if(isset($_POST['qid']) && $_COOKIE["poll".$_POST['qid']] != "true"){