Trying to install a estore getting this error
Quote:
|
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /home/makecash/public_html/shop/includes/configure.php on line 10
|
Here is lines 1 to 15
<?php
PHP Code:
/* add your database and website details to the variables below */ define('DB_SERVER_USERNAME', '*******'); // your username that you use to log into your web server define('DB_SERVER_PASSWORD', '*******); // your password that you use to log into your web server define('DB_DATABASE', store'); // replace username with your web server username define('DIR_FS_CATALOG', '/home/makecash/public_html/shop/'); // replace username with your web server username define('HTTP_SERVER', 'http://www.make-cash-fast.info/shop'); // enter your website url define('HTTP_COOKIE_DOMAIN', '.make-cash-fast.info/'); // enter your website url. Do not include the www define('DB_SERVER', 'localhost'); // do not change this unless your database server is not localhost
line 10 is:
define('DIR_FS_CATALOG', '/home/makecash/public_html/shop/');
definitely got the details in the config files right and permissions are set correct and was uploaded in correct transfer mode.
tried googling around cant find results some people with same problem but different script had different answers just wonderin if anyone here can come up with one?
|