Auf /typo/typo3/install/index.php wenn ich Typo installieren will, kriege ich immer diese fehler meldung:
Zitat:
|
Parse error: syntax error, unexpected $end, expecting '(' in /srv/www/httpd/phost/s/com/pytalhost/sadochinero/web/typo/t3lib/class.t3lib_div.php on line 847
|
So sieht die linie in "class.t3lib_div.php" aus:
Zitat:
/**
* Removes an item from a comma-separated list of items.
* Usage: 1
*
* @param string element to remove
* @param string comma-separated list of items (string)
* @return string new comma-separated list of items
*/
847 function rmFromList($element,$list) {
$items = explode(',',$list);
while(list($k,$v)=each($items)) {
if ($v==$element) {unset($items[$k]);}
}
return implode(',',$items);
}
|
Also ich habe Php 5.1.6 auf dem Server.