[CubeCart] Redirect loop after installing Magic SEO URLs
[CubeCart] Redirect loop after installing Magic SEO URLs
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
In order to resolve this issue we will need your FTP credentials (please use PM).
Re: [CubeCart] Redirect loop after installing Magic SEO URLs
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"){