I'm installing Pligg on an intranet (apache server) that supports PHP and mysql. I'm on step 3, and after the installer tells me the tables were successfully created, I get this:
Quote:
|
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /var/www/sites/rklau/cgi/settings.php on line 4
|
My settings.php file reads:
Code:
<?php
$my_base_url = '//rklau/cgi';
$my_pligg_base = '/var/www/sites/rklau/cgi';
$dblang = 'en';
if(!defined('table_prefix')){ define('table_prefix', 'pligg_'); }
include_once mnminclude.'settings_from_db.php';
?>
I've successfully installed Pligg on other servers, and searching for this particular error hasn't resulted in any obvious Pligg-related issues. The syntax in the settings.php file appears valid - any idea what's wrong?