Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Recommended Posts

Posted

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?

Posted

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

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...