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

Internal Server Error

Status
Not open for further replies.

takichi

Chevereto Member
Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request

plz help

thx
 
The issue is that in the upload folder Chevereto sets this rules to avoid malicious script execution:

Code:
<Files .*>
order allow,deny
deny from all
</Files>
 
AddHandler cgi-script .php .php3 .phtml .pl .py .jsp .asp .htm .shtml .sh .cgi .fcgi
Options -ExecCGI

But it seems that the Options directive is causing issues in your server. So I changed the rules to this:

Code:
<Files .*>
order allow,deny
deny from all
</Files>
 
#AddHandler cgi-script .php .php3 .phtml .pl .py .jsp .asp .htm .shtml .sh .cgi .fcgi
#Options -ExecCGI
 
<FilesMatch "\.(jpg|jpeg|jpe|gif|png|tif|tiff)$">
    Order Deny,Allow
    Allow from all
</FilesMatch>

Which is not exactly the same but it does the job and the images now works.
 
Status
Not open for further replies.
Back
Top