Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Parse Error, please help...


Charene

Recommended Posts

Hi,

 

I have reloaded my website, and get the following error on opening my webpage:

 

Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /home/giftsinc/public_html/includes/configure.php on line 16

 

 

Herewith my configure.php code:

 

 

<?php

/*

osCMax v2.0, Open Source E-Commerce Solutions

http://www.osCDox.com

 

Copyright 2006 osCMax2005 osCMax

 

Released under the GNU General Public License

*/

 

// Define the webserver and path parameters

// * DIR_FS_* = Filesystem directories (local/physical)

// * DIR_WS_* = Webserver directories (virtual/URL)

define('HTTP_SERVER', 'http://www.giftsinc.co.za'); // eg, http://localhost - should not be empty for productive servers

define('HTTPS_SERVER', 'https://www.giftsinc.co.za ''); // eg, https://localhost - should not be empty for productive servers

define('ENABLE_SSL', false);

define('HTTP_COOKIE_DOMAIN', 'www.giftsinc.co.za');

define('HTTPS_COOKIE_DOMAIN', 'www.giftsinc.co.za');

define('HTTP_COOKIE_PATH', '/');

define('HTTPS_COOKIE_PATH', '');

define('DIR_WS_HTTP_CATALOG', '/');

define('DIR_WS_HTTPS_CATALOG', '');

define('DIR_WS_IMAGES', 'images/');

define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');

define('DIR_WS_INCLUDES', 'includes/');

define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');

define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');

define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');

define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');

define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');

 

define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');

define('DIR_FS_CATALOG', 'C:/wamp/www/');

define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');

define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 

// define our database connection

define('DB_SERVER', 'www.giftsinc.co.za'); // eg, localhost - should not be empty for productive servers

define('DB_SERVER_USERNAME', '***');

define('DB_SERVER_PASSWORD', '***');

define('DB_DATABASE', 'oscmax');

define('USE_PCONNECT', 'true'); // use persistent connections?

define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql'

?>

 

Any help would be appreciated.

 

Thanks!

Charene

Charene

Link to comment
Share on other sites

Hi,

 

I have reloaded my website, and get the following error on opening my webpage:

 

Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /home/giftsinc/public_html/includes/configure.php on line 16

Herewith my configure.php code:

<?php

/*

osCMax v2.0, Open Source E-Commerce Solutions

http://www.osCDox.com

 

Copyright 2006 osCMax2005 osCMax

 

Released under the GNU General Public License

*/

 

// Define the webserver and path parameters

// * DIR_FS_* = Filesystem directories (local/physical)

// * DIR_WS_* = Webserver directories (virtual/URL)

define('HTTP_SERVER', 'http://www.giftsinc.co.za'); // eg, http://localhost - should not be empty for productive servers

define('HTTPS_SERVER', 'https://www.giftsinc.co.za ''); // eg, https://localhost - should not be empty for productive servers

define('ENABLE_SSL', false);

define('HTTP_COOKIE_DOMAIN', 'www.giftsinc.co.za');

define('HTTPS_COOKIE_DOMAIN', 'www.giftsinc.co.za');

define('HTTP_COOKIE_PATH', '/');

define('HTTPS_COOKIE_PATH', '');

define('DIR_WS_HTTP_CATALOG', '/');

define('DIR_WS_HTTPS_CATALOG', '');

define('DIR_WS_IMAGES', 'images/');

define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');

define('DIR_WS_INCLUDES', 'includes/');

define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');

define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');

define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');

define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');

define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');

 

define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');

define('DIR_FS_CATALOG', 'C:/wamp/www/');

define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');

define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 

// define our database connection

define('DB_SERVER', 'www.giftsinc.co.za'); // eg, localhost - should not be empty for productive servers

define('DB_SERVER_USERNAME', '***');

define('DB_SERVER_PASSWORD', '***');

define('DB_DATABASE', 'oscmax');

define('USE_PCONNECT', 'true'); // use persistent connections?

define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql'

?>

 

Any help would be appreciated.

 

Thanks!

Charene

 

define('HTTPS_SERVER', 'https://www.giftsinc.co.za ''); // eg, https://localhost - should not be empty for productive servers

 

replace with this

 

define('HTTPS_SERVER', 'https://www.giftsinc.co.za '); // eg, https://localhost - should not be empty for productive servers

 

 

that should fix it. You had one too may of these-----> '

Link to comment
Share on other sites

define('HTTPS_SERVER', 'https://www.giftsinc.co.za ''); // eg, https://localhost - should not be empty for productive servers

 

replace with this

 

define('HTTPS_SERVER', 'https://www.giftsinc.co.za '); // eg, https://localhost - should not be empty for productive servers

that should fix it. You had one too may of these-----> '

 

 

 

 

 

 

Thanks a million!!! I'm going to try this right away...

Charene

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...