• 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

500 internal server error cannot view image

Status
Not open for further replies.

tangmo12

Chevereto Member
Please help;

Everything is working fine until the uploading is completed.
But after the uploading is completed, i cannot view the image please see captured below;


Please help me.
 

Attachments

  • error.JPG
    error.JPG
    59.2 KB · Views: 14
htaccess file as below;

Code:
# Disable server signature
ServerSignature Off
 
# Disable directory listing (-indexes), Multiviews (-MultiViews) and enable Follow system links (+FollowSymLinks)
Options -Indexes
Options -MultiViews
Options +FollowSymLinks
 
# Turn on mod_rewrite
RewriteEngine On
 
# If you have problems with the rewrite rules remove the "#" from the following RewriteBase line
# You will also have to change the path to reflect the path to your Chevereto installation
# RewriteBase /chevereto
 
# The /api rewrite
RewriteRule ^api$ api.php [L]
 
# If you want to have your own fancy "image not found" image remove the "#" from RewriteCond and RewriteRule lines
# Make sure to apply the correct paths to reflect your current installation
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule images/.+\.(gif|jpe?g|png|bmp) content/system/img/404.gif [NC,L]
 
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !\.([a-z]{1,4})$ [NC]
RewriteRule . index.php [L]
 
The file upload is working, problem is accesing images. Most likely is a permission error. Check that the images folder have the right permissions. Either 0777 if you don't run with permission or 755.
 
I have sent a question to my hosting admin. They said the problem happen because of htaccess. Could you please help me figure out??
 
Thank you so much!.
The problem came from the server. I have change the host so the problem are now cleared.

Thanks a lot for your support.
 
Status
Not open for further replies.
Back
Top