Solved - Problem with login to administrator

GK User
Thu Jan 27, 2011 9:11 pm
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?
User avatar
Junior Boarder

GK User
Fri Jan 28, 2011 3:48 pm
did u install the quickstart or joomla and then template?

i aint getting this error on my end.
installed 1.6 and then template on top..
User avatar
Platinum Boarder

GK User
Sat Jan 29, 2011 10:23 pm
I'm install quick version.
I installed the subdomain and after graduating moved into the main domain and then the problem occurred.
User avatar
Junior Boarder

GK User
Sat Jan 29, 2011 10:43 pm
wrobli wrote:I'm install quick version.
I installed the subdomain and after graduating moved into the main domain and then the problem occurred.


Please check your configuration.php file.
User avatar
Platinum Boarder

GK User
Sat Jan 29, 2011 10:49 pm
I'm check nothing find. What I must search then?
User avatar
Junior Boarder

GK User
Tue Feb 22, 2011 10:11 pm
Hello.
I have a similar problem with the back side. After logging takes me to the main page. I used to install gk_penguinmail_quickstart_J!16. Please help.

P.S.
where is the file configuration.php in joomla 1.6? I found it only in the installation directory, which still must be removed.

Please help in solving the problem.
User avatar
Fresh Boarder

GK User
Fri Feb 25, 2011 7:52 am
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?


Update I'm find solution with my hosting provider home.pl.

to eliminate instalation problem and login problem in libraries/joomla/filesystem/path.php must change

Code: Select all
{
      $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;
   }



to

Code: Select all
   {
      $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;
   }
User avatar
Junior Boarder


cron