webair/wordpress & IE anyone else have this problem?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • spacedog
    Yes that IS me. Bitch.
    • Nov 2001
    • 14149

    #1

    webair/wordpress & IE anyone else have this problem?

    Every single one of my blogs looks fucked up,,, I've seen this happen before..

    When I type in domain, I get the fucked up page.. when I check via my IE favorites, it loads fine.. I talked to the tech & it works fine in Firefox..

    My 2 newest sites work fine,

    some of my other sites that are not blogs some images are broken,,,

    Did microsoft do something to fuck shit up? Or is it a hosting problem..

    The techs looking into it for me, but I am curious to find out if it is either a wordpress problem, or a IE or microsuck change in IE..

    one example would be http://www.beatingskull.com (which may load fine now since apache restart) but here is screencap of what I am talking about
    http://www.beatingskull.com/xxxx.gif

    looks like it's not pulling up the .css or is having some sort of php or mysql problem

    even my resources sites & other blogs all have this issue right now



    any ideas of what's wrong?

    It wasn't broken before..
  • spacedog
    Yes that IS me. Bitch.
    • Nov 2001
    • 14149

    #2
    it's fucked up... I click the links in my sig, they load fine.. I type it in, they look fucked up????

    even this one looks fucked up either way http://www.source4porn.com/

    Comment

    • baddog
      So Fucking Banned
      • Apr 2001
      • 107089

      #3
      Originally posted by spacedog
      it's fucked up... I click the links in my sig, they load fine.. I type it in, they look fucked up????

      even this one looks fucked up either way http://www.source4porn.com/

      Looks okay in FF to me

      Comment

      • spacedog
        Yes that IS me. Bitch.
        • Nov 2001
        • 14149

        #4
        Originally posted by baddog
        Looks okay in FF to me
        yeah, I know.. i'm looking for a bug with IE.. I think MS fucked something up.. so, it can't be the host if it works in other browsers..,, looks like ms fucked shit up

        Comment

        • SmokeyTheBear
          ►SouthOfHeaven
          • Jun 2004
          • 28609

          #5
          you rpic example you posted is 404
          hatisblack at yahoo.com

          Comment

          • spacedog
            Yes that IS me. Bitch.
            • Nov 2001
            • 14149

            #6
            Originally posted by SmokeyTheBear
            you rpic example you posted is 404
            yeah, must be the anti hotlink htaccess

            cut & paste it beatingskull.com/xxxx.gif

            Comment

            • BradM
              Confirmed User
              • Dec 2003
              • 3397

              #7
              That makes no sense spacedog. Unless you have some non IE compatible HTML there is NO reason FF would parse and IE would not parse the page from Apache. That is not a tech problem, it's your problem.

              Comment

              • spasmo
                Confirmed User
                • Dec 2005
                • 2678

                #8
                Check your Apache error logs for recursion errors. I had this issue on two different servers and it turned out that every browser other than IE puts the slash at the end of the URL when it autocompletes.

                It turned out to be my anti-hotlinking code. I had to replace:

                Code:
                    RewriteCond %{HTTP_REFERER} !^$ [NC]
                    RewriteCond %{HTTP_REFERER} !^\-$ [NC]
                    RewriteCond %{HTTP_REFERER} !^http://(www\.)?mydomain\.(com|net|org)/ [NC]
                with

                Code:
                    RewriteCond %{HTTP_REFERER} !^$ [NC]
                    RewriteCond %{HTTP_REFERER} !^\-$ [NC]
                    RewriteCond %{HTTP_REFERER} !^http://(.*\.)?mydomain\.(com|net|org)/ [NC]
                Note the third line where www was replaced by .* Also be sure you have the trailing slash in the rewrite for your site. The one after (com|net|org) above. It has been awhile and I don't recally *why* that fixed it.

                If you aren't doing anything similar to the above it's still likely mod_rewrite going nuts. Turn it off for a moment to see if you still have the problem.

                Hope that helps.
                Last edited by spasmo; 06-05-2006, 05:02 PM.

                Surfers: Go here for hot babes.

                Comment

                Working...