• 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.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.

After install problems

Status
Not open for further replies.

imagesaur

Chevereto Member
Hey! Installed Chevereto and now I can't login to the admin and also can't upload any image.
When I login it just thinking endless about something.. :) and if I upload the image it shows me the progress bar etc. but I don't get any links. It stays on upload page and not redirecting.

I'm using nginx + php-fpm
Testing script says YES :)

I see new image files uploaded by my self in images folder on server. Looks like I have no problems with permissions. Maybe Rewrites?

Thanks

p.s. if the problem comes from nginx rewrites
can you post them here, so I can configure it?
 
Code:
location / {
if (-f $request_filename/index.html){
                rewrite (.*) $1/index.html break;
        }
if (-f $request_filename/index.php){
                rewrite (.*) $1/index.php;
        }
if (!-f $request_filename){
                rewrite (.*) /index.php;
        }
        try_files $uri $uri/ /api.php;
}
 
location /admin {
                try_files $uri /admin/index.php?$args;
        }
 
Status
Not open for further replies.
Back
Top