• 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.

Admin Panal Problem

Status
Not open for further replies.

BeyEFENDİ

Chevereto Member
hi problem images ..

yNEbv.png

rnY2c.png

9bFU.png


Turkish language my lang
help me..
 
The problem is that in 2.X, Chevereto handles all the files in /admin using PHP and I've notice that this may cause problems in some servers. That is why in 2.3 that will be changed to don't handle static files in that way.
The solution in your server was pretty same as this one: http://chevereto.com/community/thre...ministration-panel-of-my-web.2575/#post-15503

Basically I took this rule from the root .htaccess:
Code:
RewriteRule ^admin/(.*) admin/index.php [L]

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

As you could notice this patch is already applied on /site1, preserve that site1/.htaccess file and you will be ok 😉
 
Status
Not open for further replies.
Back
Top