Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

HELP


eksc06651

Recommended Posts

HELP I AM NEW TO THIS SO IF ANY ONE CAN HELP GREAT

MY WEB SITE SITE WAS SET UP FOR ME I TRIED TO ADD SOME TEXT TO MY HOME PAGE GOT THE FOLLOWING ERROR

Parse error: parse error, unexpected T_STRING in /home/computer/public_html/catalog/includes/languages/english/index.php on line 19

I THEN TOOK THE TEXT BACK OUT BUT STILL GET THE ERROR THE INDEX.PHP READS

<?php

/*

$Id: index.php,v 1.1 2003/06/11 17:38:00 hpdl Exp $

 

osCommerce, Open Source E-Commerce Solutions

http://www.oscommerce.com

 

Copyright © 2003 osCommerce

 

Released under the GNU General Public License

*/

 

define('TEXT_MAIN', 'Welcome to the Computer-Outlet. We have a wide selection of computer hardware at great prices. All orders are safe and secure, through our 128-bit SSL ordering system.');

define('TABLE_HEADING_NEW_PRODUCTS', 'New Products For %s');

define('TABLE_HEADING_UPCOMING_PRODUCTS', 'Upcoming Products');

define('TABLE_HEADING_DATE_EXPECTED', 'Date Expected');

 

if ( ($category_depth == 'products') || (isset($HTTP_GET_VARS['manufacturers_id'])) ) {

define('HEADING_TITLE', 'Let's See What We Have Here');

define('TABLE_HEADING_IMAGE', '');

define('TABLE_HEADING_MODEL', 'Model');

define('TABLE_HEADING_PRODUCTS', 'Product Name');

define('TABLE_HEADING_MANUFACTURER', 'Manufacturer');

define('TABLE_HEADING_QUANTITY', 'Quantity');

define('TABLE_HEADING_PRICE', 'Price');

define('TABLE_HEADING_WEIGHT', 'Weight');

define('TABLE_HEADING_BUY_NOW', 'Buy Now');

define('TEXT_NO_PRODUCTS', 'There are no products to list in this category.');

define('TEXT_NO_PRODUCTS2', 'There is no product available from this manufacturer.');

define('TEXT_NUMBER_OF_PRODUCTS', 'Number of Products: ');

define('TEXT_SHOW', '<b>Show:</b>');

define('TEXT_BUY', 'Buy 1 '');

define('TEXT_NOW', '' now');

define('TEXT_ALL_CATEGORIES', 'All Categories');

define('TEXT_ALL_MANUFACTURERS', 'All Manufacturers');

} elseif ($category_depth == 'top') {

define('HEADING_TITLE', 'What's New Here?');

} elseif ($category_depth == 'nested') {

define('HEADING_TITLE', 'Categories');

}

?>

Link to comment
Share on other sites

define('HEADING_TITLE', 'Let's See What We Have Here');

to

define('HEADING_TITLE', 'Let\'s See What We Have Here');

 

define('HEADING_TITLE', 'What's New Here?');

to

define('HEADING_TITLE', 'What\'s New Here?');

Link to comment
Share on other sites

NEW ERROR

Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING in /home/computer/public_html/catalog/includes/languages/english/index.php on line 33

 

Hey...

 

Just a hint...if it gives you a line number, you should check that line. If that checks out, try the line before. i.e. line 32 is

define('TEXT_BUY', 'Buy 1 '');

You need to take out the extra single-quote.

 

Hope it helps...

 

-A

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...