1
Joomla! 1.6/1.7/2.5 / Re:RISOLTO ---- Errore nell'avviare installazione joomla 1.6
« il: 17 Mag 2011, 23:13:33 »
Salve io ho risolto modificando alla riga 148 fino a 153 del file path.php in libraries/joomla/filesystem/path.php
$path = JPath::clean($path);
148 if (empty($path)) {
$path = JPATH_ROOT;
} else {
// Remove double slashes and backslahses and convert all slashes and backslashes to DS
$path = preg_replace('#[/\\\\]+#', $ds, $path);
153 }
return $path;
$path = JPath::clean($path);
148 if (empty($path)) {
$path = JPATH_ROOT;
} else {
// Remove double slashes and backslahses and convert all slashes and backslashes to DS
$path = preg_replace('#[/\\\\]+#', $ds, $path);
153 }
return $path;