Perhaps. I've just fixed a site that had identical symptoms. It turned out that the person that had installed the module made a very simple mistake.
---- From the readme.html -------------------------------
5. Edit /includes/modules/YOUR_TEMPLATE/product_listing.php
If you don't already have a modified product_listing.php in /includes/modules/YOUR_TEMPLATE/, then create one there first.
If you already have one, merge these changes into it.
Find:
if (!defined('IS_ADMIN_FLAG')) {
die('Illegal Access');
}
Add below:
// BOF Number of Items Per Page
if(isset($_POST['max_display']) || isset($_GET['max_display'])) {
$_SESSION['product_listing_max_display'] = (int)$_REQUEST['max_display'];
} elseif (!isset($_SESSION['product_listing_max_display'])) {
$_SESSION['product_listing_max_display'] = (int)MAX_DISPLAY_PRODUCTS_LISTING;
}
// EOF Number of Items Per Page
----------------------------------------------------------
The problem was that this addition was added in between the "die('Illegal Access')" and the "}" rather than after the "}".
I simple mistake to make I guess, but it did have me scouring the forums for the a solution, and for a while there I thought it was related to the SEO module that she had installed.
Anyway, since I discovered your post in my search for an answer I figured it'd be worth suggesting that your problem may be due to the same/similar cause.
Cheers
RodG
Bookmarks