• 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

Block IP's

Status
Not open for further replies.

freebits

Chevereto Member
I've just started using the script and its beautiful, I'm not sure I've discovered all the options yet.
But it would be nice if it was possible to simply block an IP from uploading.
So if a button would appear for the administrator next to the IP of the uploader that would add the IP to a blocklist.
 
Yes, that will be pretty nice. In the meanwhile to ban by IP refer to .htaccess block IP. In the demo I use something like this:

Code:
RewriteEngine On

# Rickroll'd
RewriteCond %{REMOTE_ADDR} 89.146.166.250 [OR]
RewriteCond %{REMOTE_ADDR} 200.84.37.82 [OR]
RewriteCond %{REMOTE_ADDR} 31.176.134.177 [OR]
RewriteCond %{REMOTE_ADDR} 37.203.108.239 [OR]
RewriteCond %{REMOTE_ADDR} 37.203.108. [OR]
RewriteCond %{REMOTE_ADDR} 37.203.99. [OR]
RewriteCond %{REMOTE_ADDR} 109.163.137.115 [OR]
RewriteCond %{REMOTE_ADDR} 24.61.108.5 [OR]
RewriteCond %{REMOTE_ADDR} 78.215.24.57
RewriteRule .* http://player.vimeo.com/video/2619976?autoplay=1 [L]
 
that works great but I prefer Iptables, it probably will be easier to make the script add rules to it too.
 
Sure, like I said that will be added in future releases.
 
Status
Not open for further replies.
Back
Top