[CubeCart] Redirect loop after installing Magic SEO URLs

Magic SEO URLs for CubeCart.
clip1493
Posts: 4
Joined: Sat Jun 09, 2012 4:38 am

[CubeCart] Redirect loop after installing Magic SEO URLs

Postby clip1493 » Sat Jun 09, 2012 10:45 am

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

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

Re: [CubeCart] Redirect loop after installing Magic SEO URLs

Postby inveo » Sun Jun 10, 2012 5:41 am

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).

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

Re: [CubeCart] Redirect loop after installing Magic SEO URLs

Postby inveo » Wed Jun 13, 2012 5:02 pm

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

Code: Select all

if($_COOKIE["poll".$_POST['qid']] != "true"){


and Replace with:

Code: Select all

if(isset($_POST['qid']) && $_COOKIE["poll".$_POST['qid']] != "true"){