I have this error
20 - An error has occurred.
JPath::check Snooping out of bounds @ /administrator/components/com_login/views
Return to Control Panel
Any solution?
wrobli wrote:I'm install quick version.
I installed the subdomain and after graduating moved into the main domain and then the problem occurred.
wrobli wrote:I have this error
20 - An error has occurred.
JPath::check Snooping out of bounds @ /administrator/components/com_login/views
Return to Control Panel
Any solution?
{
$path = trim($path);
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);
}
return $path;
}
{
$path = trim($path);
if (empty($path)) {
$path = "/";
} else {
// Remove double slashes and backslahses and convert all slashes and backslashes to DS
$path = preg_replace('#[/\]+#', $ds, $path);
}
return $path;
}