Thanks for ur reply. no the file name is in small words.
Thanks for ur reply. no the file name is in small words.
In includes/functions/functions_lookups.php, around line 509, you should have this:
Is the 'product_info' lowercase there?Code:/* * look up the product type from product_id and return an info page name (for template/page handling) */ function zen_get_info_page($zf_product_id) { global $db; $sql = "select products_type from " . TABLE_PRODUCTS . " where products_id = '" . (int)$zf_product_id . "'"; $zp_type = $db->Execute($sql); if ($zp_type->RecordCount() == 0) { return 'product_info'; } else { $zp_product_type = $zp_type->fields['products_type']; $sql = "select type_handler from " . TABLE_PRODUCT_TYPES . " where type_id = '" . (int)$zp_product_type . "'"; $zp_handler = $db->Execute($sql); return $zp_handler->fields['type_handler'] . '_info'; } }
BrandTim
yes the product_info is in small letters.
i think problem is in SQL data Base.
I did not come across this error on your site ...
However, if it still exists go to the Catalog ... Product Types ... and hit the EDIT button for the Product - General and make sure that the:
Handler Page: product
is written lower case ...
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!