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

blocking is the directory where the images ?

Smart

Chevereto Noob
Hello,

I would like to know how to lock the directory where the images are hosted, I want to read:

imagemeve.jpg


translate image:

access is not allowed in "images"

Sorry, not allowed to access the root directory.


Help me.
 
Create a .htaccess file.

Insert this:
Code:
<Files .*>
order allow,deny 
deny from all 
</Files> 

AddHandler cgi-script .php .pl .py .jsp .asp .htm .shtml .sh .cgi
Options -ExecCGI All -Indexes

MAKE SURE YOU UPLOAD THIS .HTACCESS TO YOUR "IMAGES" AND "THUMBS" FOLDER.
 
ppeared that personalized message

Forbidden

You do not have permission to access / image / images / on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.


I want to an error page as it is:
Example: http://www.clafy.com/images/
 
Not sure if your version is the same as mine but try insert these into your htaccess file.

ErrorDocument 400 /index.php?p=400
ErrorDocument 401 /index.php?p=401
ErrorDocument 403 /index.php?p=403
ErrorDocument 404 /index.php?p=404
ErrorDocument 500 /index.php?p=500
ErrorDocument 503 /index.php?p=503


*THE LINES ABOVE SHOULD BE IN YOUR ROOT'S HTACCESS FILE
 
Back
Top