Ich habe eine Joomla-Seite mit DB und Ordnern auf einen anderen Server gespielt. Nun habe ich beim Aufruf einen Fehler, den ich nicht lokalisieren kann. Die Configuration.php habe ich mit SuperEdi angepasst und PSFtp hoch geladen. Auf dem Server läuft PHP Version 5.2.9-0.dotdeb.1. Im Joomla-Forum konnte man mir bis jetzt nicht helfen.
Es wird folgender Fehler ausgegeben:
Parse error: syntax error, unexpected T_STRING, expecting T_FUNCTION in /var/www/xxxxx/html/florian/configuration.php on line 6
Hier die Configuration.php:
<?php
class JConfig {
var $offline = '0';
var $editor = 'tinymce';
var $list_limit = '20';
var $helpurl = 'http://help.joomla.org';
var $debug = '0';
var $debug_lang = '0';
var $sef = '0';
var $sef_rewrite = '0';
var $sef_suffix = '0';
var $feed_limit = '10';
var $feed_email = 'author';
var $secret = 'xxxxxxx';
var $gzip = '0';
var $error_reporting = '-1';
var $xmlrpc_server = '1';
var $log_path = '/var/www/xxxxx/html/florian/logs';
var $tmp_path = '/var/www/xxxxx/html/florian/tmp';
var $live_site = '';
var $force_ssl = '0';
var $offset = '0';
var $caching = '0';
var $cachetime = '15';
var $cache_handler = 'file';
var $memcache_settings = array();
var $ftp_enable = '0';
var $ftp_host = 'xxxxxx.hosting-server.de';
var $ftp_port = '21';
var $ftp_user = 'xxxxx';
var $ftp_pass = 'password';
var $ftp_root = '';
var $dbtype = 'mysql';
var $host = 'localhost';
var $user = 'xxxxx';
var $db = 'db-name';
var $dbprefix = 'jos_';
var $mailer = 'mail';
var $mailfrom = 'webmaster@xxxxx.de';
var $fromname = 'Name';
var $sendmail = '/usr/sbin/sendmail';
var $smtpauth = '0';
var $smtpuser = '';
var $smtppass = '';
var $smtphost = 'localhost';
var $MetaAuthor = '1';
var $MetaTitle = '1';
var $lifetime = '15';
var $session_handler = 'database';
var $password = 'xxxxx';
var $sitename = 'Name';
var $MetaDesc = 'Joomla! - dynamische Portal-Engine und Content-Management-System';
var $MetaKeys = 'joomla, Joomla';
var $offline_message = 'Diese Website ist zurzeit im Wartungsmodus. Bitte kommen Sie später wieder.';
}
?>