Max Number of Connections?

agentgaurav007

New Member
Hi, with all the DDoS'ing going on, is there a way to make it so that only "X" number of people can access my site at once? Is there a client-side script in vBulletin (like in the config.php) to do this? I really don't want to ask my host to do this. Thanks.
 
go to ur cpanel or ur hosting provider

tell them to edit ur thorodo policy and enable the max connection to 60 or 100 per min

also u can use this code in htaccess file

it will disable all bots and dial up and dsl user for opening ur site and redirect them to router page :D

NOTE* remove the # to enable it
PHP:
#RewriteEngine On
#RewriteCond %{HTTP_HOST} !^yoursite.com$ [NC]
#RewriteCond %{REMOTE_ADDR} ^(.*)$ [NC]
#RewriteRule ^(.*)$ http://%1 [R=301,L]
 
Back
Top