Search results

  1. marshian

    Extra width in firefox

    This is *probably* not the latest version of IE7, but that's probably not what you want either. http://img191.imageshack.us/img191/3446/ie7.png As you see, it's not working. These are the 3 errors IE gives: Line: 2 Char: 1 Error: Expected identifier, string or number Code: 0 URL...
  2. marshian

    header files not being included in c++ compiler

    "The eclipse C++ compiler"? Eclipse is only an IDE, it doesn't include a compiler. You'll have to download a compiler somewhere else. And if you're using Windows, perhaps it's a better idea to use Microsoft Visual C++ (Express Edition). The express edition is free and includes both an IDE and a...
  3. marshian

    Extra width in firefox

    My VM can run JS without any problem (why wouldn't it?) but the page you linked to is not available, so I can't make a screenshot ;)
  4. marshian

    Extra width in firefox

    I found IE7 on a VM, but there is a problem loading that page.
  5. marshian

    Extra width in firefox

    You're welcome (:
  6. marshian

    Extra width in firefox

    OK the quick reply box is there :) Part 1: bug confirmed. Part 2: confirmed the bug lies with the quick reply box. Now for fixing it. You've got an (unnamed) div that contains the quick reply box (the one below <a name="quickreply"></a>). Its width is set to 200%. That's what causes the...
  7. marshian

    Extra width in firefox

    You're right, I have set up a test account ;) The bug doesn't occur though, probably because I don't have a quick reply box... Am I missing an option somewhere to turn it on?
  8. marshian

    $_SESSION Problem state not changing

    There must be something in front of it somehow, can you post the entire source again?
  9. marshian

    $_SESSION Problem state not changing

    If, and only if, I understand your problem correctly, this behaviour is normal. When you enter the page $_SESSION isn't set, not even if the client is currently associated with a session. (Sessions are not always (this is a setting in php.ini) automatically resumed.) Thus, you enter the if...
  10. marshian

    $_SESSION Problem state not changing

    I think you should take a good look at this: http://www.php.net/manual/en/intro.session.php And pretty much everything it links to.
  11. marshian

    Setting favicon on error pages

    What might help is putting your favicon at http://lydiascarletswan.x10hosting.com/favicon.ico When there is no favicon specified in the head section, this would be where *any* browser *should* look for it.
  12. marshian

    Extra width in firefox

    I'll make a test account later tonight to see it then ;) (I'm a bit short on time atm.) Overflow is what happens when the contents of an element are bigger than the size of that element (like a bucket in which you poor too much water). Overflow-x is overflow on the x axis (horizontal), value...
  13. marshian

    Extra width in firefox

    No, that's normal, your content is wider than the viewport, that's why I (deliberately) made the screen smaller (to make a scrollbar appear). It doesn't show much empty space, like in your screenshot. Maybe the scrollbar style confuses you, but it's scrolled all way to the right. There's nothing...
  14. marshian

    Extra width in firefox

    Nope, I don't have a problem with that... Screenshot I don't see anything that would obviously cause this, so I'd suggest you take Firebug (a Firefox plugin) and try to find out which element causes this bug. Usually I'd do it for you, but it's quite hard to do when I can't reproduce the bug ;)
  15. marshian

    Extra width in firefox

    Which version of FF do you have? It shows up without any bugs when I open it. (with FF 3.5.8)
  16. marshian

    Prevent mysql injection but allow ' in comments

    Actually only until you find out what's wrong, but they're a major pain when you don't know they exist, but you just get strange results ): Good thing they're now about to be deprecated, I just hope they don't come up with any new great additions... register_globals and magic_quotes_gpc were...
  17. marshian

    Prevent mysql injection but allow ' in comments

    I think your problem lies elsewhere, with magic quotes (which is now to be deprecated). When this setting is enabled, any input automatically gets escaped, so each " ' \ and NUL characters get escaped with a backslash. Say you enter the string ab'c With magic quotes on, you get this in your...
  18. marshian

    crossbrowser clusterfk

    Support for png files has already been added to IE7. I've encountered a number of glitches using IE7 too, but they're usually easily fixable with a bit of css and generally not very numerous. IE8 displays most pages quite well, although still not 100% according to the convention. (But they're...
  19. marshian

    help....please.....

    Learning to use the validator is going to save him a lot of troubles later on.
  20. marshian

    help....please.....

    Good point misson, I'd have to double that. The code looks nothing even near to valid. In fact it even renders wrong, the copyright statement is halfway the content... The occasional "hack" using "<p>&nbsp;</p>", isn't of any importance to anyone, but this is just BAD. You don't even need ANY...
Top