wondrik Posted July 29, 2011 Share Posted July 29, 2011 Hi, I got a problem with opening second page in product list. I can open first page of category, but if I want to open second page with button in bottom of page it open me just blank page. But if open second page directly (with link) everything works. Link to comment Share on other sites More sharing options...
shokinro Posted July 29, 2011 Share Posted July 29, 2011 Please set display_errors to on in file /config.inc.phph to see what error is happening. You can also set the SQL debug to true in the same file. Don't forget to set it back when thing becomes normal. Link to comment Share on other sites More sharing options...
wondrik Posted July 29, 2011 Author Share Posted July 29, 2011 I change it, but nothing happened. Link to comment Share on other sites More sharing options...
shokinro Posted July 29, 2011 Share Posted July 29, 2011 are you able to show me the URL that has the problem? I can take a look for you if do so. Link to comment Share on other sites More sharing options...
fedajkin Posted August 8, 2011 Share Posted August 8, 2011 Hi, Did you manage to solve this problem? I'm dealing with the same one and have no idea what to do. If direct link works it mayby some problem with ajax there? Link to comment Share on other sites More sharing options...
sfinze Posted August 9, 2011 Share Posted August 9, 2011 Hi, Did you manage to solve this problem? I'm dealing with the same one and have no idea what to do. If direct link works it mayby some problem with ajax there? Hi all, I've same problem on my client's site with 1.4.3 version. I've found this bug on classes/Category.php .... if ($random === true) { $sql .= ' ORDER BY RAND()'; $sql .= ' LIMIT 0, '.(int)($randomNumberProducts); } else { $sql .= ' ORDER BY '.(isset($orderByPrefix) ? $orderByPrefix.'.' : '').'`'.pSQL($orderBy).'` '.pSQL($orderWay).' LIMIT '.(((int)($p) - 1) * (int)($n)).','.(int)($n); } .... at line 529 LIMIT '.(((int)($p) - 1) * (int)($n)).','.(int)($n); should be: LIMIT '.(((int)($p) - 1) * (int)($n)).','.(int)($p) * (int)($n); but this not solve the problem. Any idea? Sfinze. Link to comment Share on other sites More sharing options...
fedajkin Posted August 10, 2011 Share Posted August 10, 2011 Hi, Not from mi side. But I assume that this could be a common error, wondering why only us don't know what to do? I have a preety fresh install of presta, therefore it cannot be caused by some customizations. I guess we have to wait... Link to comment Share on other sites More sharing options...
Shadowscan Posted August 28, 2011 Share Posted August 28, 2011 Same problem, nobody has a solution for this? Link to comment Share on other sites More sharing options...
Shadowscan Posted August 28, 2011 Share Posted August 28, 2011 Ok, i just solved it by uninstalling some modules. Seems that the Layered navigation block is the problem. Just deactivate it and it'll show the next pages without a problem (at my end it solved it so i hope it'll be ok for you guys). Link to comment Share on other sites More sharing options...
alfan Posted January 21, 2013 Share Posted January 21, 2013 i've had the same problem too. i've tried to uninstall the layered navigation but it didn't work... it turns out that mod_deflate is not installed in apache... i'm using prestashop on a VPS.. i also used litespeed... the problem rise because, litespeed's gzip cannot work without mod_deflate in apache... hope this helps Link to comment Share on other sites More sharing options...
Recommended Posts