mffyap Posted September 27, 2005 Posted September 27, 2005 I installed Customer Computer Creator (CCC 9.3) on a fresh version of OSCommerce 2.2. The admin seems to be working fine, but the catalog gives the following error: //CCC DEFINES define('HEADER_TITLE_CUSTOM_BUILD', 'Custom Computer Creator'); if (tep_session_is_registered('ccc_prod_id')){ $edit_params = 'edit=1'; $link_file = FILENAME_CCC_BUILD; }else{ $link_file = FILENAME_CCC; $edit_params = ''; } //END Unable to determine the page link! and nothing on the page except the top header. I have re-installed on another server and followed all the installation instructions to edit the various files - but still the same error. Does anybody know what the problem may be? Quote
Carbon Posted September 28, 2005 Posted September 28, 2005 I had this problem too, but luckily it was easy to trace and fix. catalog/includes/header.php Just enclose the same text that appears in your error with php delcarations like this... <?php define('HEADER_TITLE_CUSTOM_BUILD', 'Custom Computer Creator'); if (tep_session_is_registered('ccc_prod_id')){ $edit_params = 'edit=1'; $link_file = FILENAME_CCC_BUILD; }else{ $link_file = FILENAME_CCC; $edit_params = ''; } ?> hope that helps Carbon Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.