• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • This community is user driven. Be polite with other users.
    • We recommend purchasing a Chevereto license to participate in this community.
    • Purchase a Community Subscription to get even faster ticket response times.

I can not access the administration panel of my web

Status
Not open for further replies.

thepix

Chevereto Member
Hello friends as I have a problem, well I can not access the administration panel of my website, I write my password keeps loading endlessly and never finishes loading, thinking it was a fault of my connection or my team decided to test in a new computer in the house of a friend and just never happens loading ... Well that's the only thing I fault my site, I hope I can help.
PD. I reinstalled 3 times the script and follow the same thinking also that there was defacing the script.
 
Perhaps you change the config.php and/or definitions.php encoding
PHP has trouble when you set a file coding in UTF-8 because it sets a null char at the top at the file and PHP includes fails. To fix this, get a code editor like notepad++, open the file, go to coding and choose UTF-8 without bom and the upload the files.
 
nothing, still not corrected what you told me save as UTF-8 without bom and nothing ... u.u
 
I'm 100000% sure that the issue is the wrong file edit. Anyway send me FTP details and I will fix the files for you.
 
Hm, is pretty weird. It seems that the server is cancelling the request of some files in the admin panel, when you don't see any style is because of this:

But that doesn't happen always, sometimes it loads this css file but it fails on the js files and in the subsecuential files, ie:
This happens because your server is blocking/cancelling this request. When you fetch this URL directly in your browser address bar it loads OK, so the problem is that your server is somehow cancelling this subsecuential request.

The solution for this (script side) is that Chevereto should not load this static files using PHP, I've already done this on your server by changing this on the root .htaccess file:
Code:
RewriteRule ^admin/(.*) admin/index.php [L]

To this:
Code:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^admin/(.*) admin/index.php [L]

That is a quickfix to load static admin files without PHP (this fix will be addressed on 2.3 on a more simple way). But in your case it doesn't solve anything because once you login in the admin panel you will notice that is not working 100% because your server is shouting down some json calls, like the query to get the total uploaded files. You can check this on the browser console.

I'm afraid that your server is not properly setted, This is the first time that I notice this weird error. You should contact your hosting company about this.
 
Status
Not open for further replies.
Back
Top