I developed a site on joomla, sort of a demo server I now want to move it into a new server and uploaded all the php files and configuration files including importing the old database into the new site through phpmyadmin.
when i load the page tethys-plantgeria.com/index php it gives me a parse error message
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ',' or ';' in \HOSTING\DFS\20\9\7\0\2076609079\user\sites\tethys-plantgeria.com\www\configuration.php on line 53
How do i remove this error message and get the site working..
Here is a copy of configuration.php file
<?php
class JConfig {
public $offline = '0';
public $offline_message = 'This site is down for maintenance.<br /> Please check back again soon.';
public $display_offline_message = '1';
public $sitename = 'Tethysplantgeria';
public $editor = 'tinymce';
public $list_limit = '20';
public $access = '1';
public $debug = '0';
public $debug_lang = '0';
public $dbtype = 'mysql';
public $host = '';
public $user = '';
public $password = '';
public $db = '';
public $dbprefix = 'jos_';
public $live_site = '';
public $secret = '3so6lxk3tba4tdkb';
public $gzip = '0';
public $error_reporting = 'default';
public $helpurl = 'http://help.joomla.org/proxy/index.php?option=com_help&keyref=Help16:{keyref}';
public $ftp_host = '';
public $ftp_port = '';
public $ftp_user = '';
public $ftp_pass = '';
public $ftp_root = '';
public $ftp_enable = '0';
public $offset = 'UTC';
public $offset_user = 'UTC';
public $mailer = 'sendmail';
public $mailfrom = 'nianyanwu@yahoo.com';
public $fromname = 'Tethysplantgeria';
public $sendmail = '/usr/sbin/sendmail';
public $smtpauth = '0';
public $smtpuser = '';
public $smtppass = '';
public $smtphost = 'mail.tethys-plantgeria.com';
public $smtpsecure = 'none';
public $smtpport = '25';
public $caching = '0';
public $cache_handler = 'file';
public $cachetime = '15';
public $MetaDesc = 'TethysPlantgeria';
public $MetaKeys = '';
public $MetaAuthor = '1';
public $sef = '1';
public $sef_rewrite = '0';
public $sef_suffix = '0';
public $unicodeslugs = '0';
public $feed_limit = '10';
public $log_path = '/site/tethys-plantgeria.com/www/logs'';
public $tmp_path = '/site/tethys-plantgeria.com/www/tmp'';
public $lifetime = '15';
public $session_handler = 'database';
public $MetaRights = '';
public $sitename_pagetitles = '1';
public $force_ssl = '0';
public $feed_email = 'author';
public $cookie_domain = '';
public $cookie_path = '';
}