Results 1 to 2 of 2

Thread: Page loads fine in Safari, Chrome, and Firefox but will not work in Internet Explorer

  1. #1
    Join Date
    Jan 2011
    Posts
    19

    FIXED: Page loads fine in Safari, Chrome, and Firefox but will not...

    For some reason my page will not load in Internet Explorer. It just sits there. I'm assuming it has something to do with the page reloading every time some javascript changes something on the page, but can't pin point the issue. Anyone have any similar problems?

    Any help is appreciated.

    Thank you.

    FIXED: Problem was with a redirect to non HTTPS function that I had created.
    Last edited by GoDawgs; 25 May 2011 at 05:47 PM.

  2. #2
    Join Date
    Jan 2011
    Posts
    19
    To further elaborate, I have this code in the top of this page that should make it so that nothing else happens on the page:

    PHP Code:
    $browser $_SERVER['HTTP_USER_AGENT'];
        
        if( 
    preg_match('/compatible/i'$browser) > && preg_match('/MSIE/i'$browser) > ){
            
    header("Location: http://www.peeka.com/brwser_redirect.html");
        }else{
            
    header("Location: http://www.peeka.com/home.php");
        } 
    But when using the developer tools in IE, it is constantly doing a 302 redirect to http://www.peeka.com/testing/

    What would cause this? Neither brswer_redirect.html or home.php have any kind of redirect in them...

    Also, this code is working fine in a separate file by itself... (Really getting frustrated with IE right about now...)

    FIXED: Problem was with a redirect to non HTTPS function that I had created.
    Last edited by GoDawgs; 25 May 2011 at 05:47 PM.

Similar Threads

  1. page breaks in IE but works fine in firefox and chrome
    By devil6600 in forum Web Design, HTML Reference and CSS
    Replies: 1
    Last Post: 20 May 2011, 10:58 AM
  2. Page is loading well in IE, Chrome, Safari ... not Firefox- Please Help!
    By nbogatin in forum Web Design, HTML Reference and CSS
    Replies: 1
    Last Post: 20 Oct 2010, 03:15 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •