Forum Moderators: coopster
Parse error: parse error, unexpected '<', expecting ')' in /home/cartiqco/public_html/geeklog/config.php on line 157
If needed I can post the config.php if that would help.
Thanks
// This should point to the directory where your config.php file resides.
$_CONF['path'] = '/home/cartiqco/public_html/geeklog/'; // should end in a slash
// You only need to change this if you moved or renamed the public_html
// directory. In that case, you should specify the complete path to the
// directory (i.e. without the $_CONF['path']) like this:
// $_CONF['path_html'] = '/path/to/your/public_html/';
$_CONF['path_html'] = '/home/cartiqco/public_html/';
// +---------------------------------------------------------------------------+
// ¦ (3) Site Settings ¦
// +---------------------------------------------------------------------------+
// Make sure this is the correct URL to your site, i.e. to where Geeklog's
// index.php file resides (no trailing slash).
$_CONF['site_url'] = 'http://www.example.com';
// Some hosting services have a preconfigured admin directory. In that case,
// you need to rename Geeklog's admin directory to something like "myadmin"
// and change the following URL as well. Leave as is until you experience any
// problems accessing Geeklog's admin menu.
$_CONF['site_admin_url'] = $_CONF['site_url'] . '/admin';
// This is the return address for all email sent by Geeklog:
$_CONF['site_mail'] = 'admin@example.com';
// Name and slogan of your site
$_CONF['site_name'] = 'Geeklog Site';
$_CONF['site_slogan'] = 'Another Nifty Geeklog Site';
Thanks for not starting us out with a code dump! Anyway, in this case, you might want to post lines 150-157 for us. If you do not already have an editor that shows line numbers, get one - it's an indispensable tool.
Probably culprits are unmatched quotes in your script either on the line in question or somewhere above that line. Perhaps you forgot to escape out of php (no?> tag).
For some more reading, look at the troubleshooting threads referenced in the forum charter down near the bottom
[webmasterworld.com...]
[php.net...]