Blocking anyone with IE

Status
Not open for further replies.

Jesse

Active Member
6,352
2009
2,085
5,030
Is there anyway to block anyone with IE from coming to your site and telling them to get a real browser? I'm so fucking tired of this Internet Explorer bullshit. Sometimes it works for bulklinks.net and other times nothing will load.
 
11 comments
http://www.devin.com/ieblock_howto.shtml I've used

Code:
<?php
   if (eregi("MSIE",getenv("HTTP_USER_AGENT")) ||
       eregi("Internet Explorer",getenv("HTTP_USER_AGENT"))) {
	Header("Location: http://www.domain.com/ie_reject.html");
	exit;
   }
?>

And obviously you'll want to make an ie_reject page perhaps with links to Firefox, Chrome etc.

It does seem a bit insane to block IE 100%, yes I fully understand its shortcomings but 20% of my user-base (according to awstats) are using it.
 
makes no sense. If I take out the addthis.com code my side navbar will not load. If I leave it in my main tables on the main page will not load but the side bar will....uhhhh. IE is such bullshit
 
i wouldn't block IE even how shit it is, still (a lot) of users use IE blocking it would just loose you traffic (even if its to a page that says get firefox, people would just leave most of the time), just have a get firefox button on your index...
 
I got it working. I clicked backspace on a empty line in the body and all the sudden the page worked....fucking Internet Explorer garbage browser. I'm not worried about losing visitors by blocking IE. I'm already using up to 100GB/day bandwidth so cutting back a little bit might be a good thing :D
 
i didn't start bulklinks to make it so big i have a hard time maintaining it. I get about 1k/day now and i want to keep it around that
 
Well I finally got IE working with no errors on the page. Its weird how having a space or line break with no code can cause everything to not load. That's garbage. Let this be a lesson everyone. Check your sites in IE to see if they do in fact work
 
If you use IE you are a complete moron, but hey, you will be cutting back on traffic. Best to make your site compatible with all browsers tbh.
 
Status
Not open for further replies.
Back
Top