• 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

Problems after updating

Status
Not open for further replies.
The script can't find all other files (style.css , images , js etc.)

I think there is something wrong with your .htaccess file.

Make sure, that your main .htaccess file looks like this:
Code:
ServerSignature Off
Options -Indexes -MultiViews
 
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^api$ api.php [L]
RewriteRule ^admin/(.*) admin/index.php [L]
RewriteRule ^image/(\w*\.)(jpg|png|gif)$ i/old/$1$2 [L] #legacy images
RewriteRule ^image/thumbs/(\w*\.)(jpg|png|gif)$ i/old/$1th.$2 [L] #legacy thumbs
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
 
ErrorDocument 400 default
ErrorDocument 401 default
ErrorDocument 403 default
ErrorDocument 404 default
ErrorDocument 500 default
 
Seems the htaccess file in the package was missing the following:
Code:
RewriteRule ^image/(\w*\.)(jpg|png|gif)$ i/old/$1$2 [L] #legacy images
RewriteRule ^image/thumbs/(\w*\.)(jpg|png|gif)$ i/old/$1th.$2 [L] #legacy thumbs

Thanks for your help.
 
Status
Not open for further replies.
Back
Top