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

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