ich habe den Notification Mod eingerichtet.
Ich bekomme aber jetzt bei diversen Admin Links folgende Fehlermeldung:
Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING in /srv/www/vhosts/xxxxxx.de/httpdocs/PHPBB/includes/functions_post.php on line 607
Die entsprechende Zeile in der Datei lautet:
Code: Alles auswählen
//
// Let's do some checking to make sure that mass mail functions
// are working in win32 versions of php.
//
if (preg_match('/[c-z]:\\\.*/i', getenv('PATH')) && !$board_config['smtp_delivery'])
{
$ini_val = (@phpversion() >= '4.0.0') ? 'ini_get' : 'get_cfg_var';
// We are running on windows, force delivery to use our smtp functions
// since php's are broken by default
$board_config['smtp_delivery'] = 1;
$board_config['smtp_host'] = @$ini_val('SMTP');
}
Vielen Dank schon mal!