• 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.
  • Chevereto Support CLST

    Support response

    Support checklist

    • ⚠️ Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • ✅ Confirm that the server meets the System Requirements
    • 🔥 Check for any available Hotfix - your issue could be already reported/fixed
    • 📚 Read documentation - It will be required to Debug and understand Errors for a faster support response

How to Disable Hotlink for images

Not sure why you'd want to do that for an image hosting site?

But you can add this to your .htaccess

Code:
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?yourdomain.com [NC]
RewriteRule \.(jpg|jpeg|png|gif)$ - [NC,F,L]
 
Not sure why you'd want to do that for an image hosting site?

Because that is perhaps the most important source of high usage and some websites can't handle it. In the other hand, everybody should ban certain IP ranges directly at server level to avoid denials of service caused by layer 7 attacks.
 
Because that is perhaps the most important source of high usage and some websites can't handle it. In the other hand, everybody should ban certain IP ranges directly at server level to avoid denials of service caused by layer 7 attacks.

Yeah, I'm aware of what image hotlinking does, but it kind of defeats the object of an image hosting site. Just seems a bit silly, as well as the fact that servers nowadays come with so much data, this should never really be a problem. Unless you're serving millions of views a day, and wherever the image is linked is getting millions of views a day.
 
Is a problem when people abuse your website which happens to everybody at certain point. That's why I'm doing an IP banning system for 3.5.14 :D
 
Back
Top