• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

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