• 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

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