Diseño y Posicionamiento Web con Joomla › Foros › General › Mi web Joomla › Joomfish Error › Re: Joomfish Error
14/08/2011 a las 13:18
#101043
Anónimo
Invitado
Es un problema en los servidores windows encontre esta solución googleando ;
Solution:
http://forum.joomla.org/viewtopic.php?p=2104692
in file: libraries/joomla/filesystem/path.php, modify method “clean”
function clean($path, $ds=DS)
{
$path = trim($path);
if (empty($path)) {
$path = JPATH_ROOT;
} else {
// Remove double slashes and backslahses and convert all slashes and backslashes to DS
$newpath = preg_replace(‘#[/\\]+#’, $ds, $path);
// if in windows share
if($ds==’\’ && !strncmp($path,’\\’,2)){
$newpath=’\’.$newpath;
}
$path=$newpath;
}
return $path;
}