Forums

BUG: Odd numbers appearing. (18 posts)

  1. 31337
    Member
    Posted 2 years ago #

    http://gmgene-alpha.ifastnet.com/wordpress/
    There are numbers appearing on the top and bottom of the page. I just installed this fresh, whats going on!

  2. 31337
    Member
    Posted 2 years ago #

    Shamelessly bumped.

  3. samboll
    moderator
    Posted 2 years ago #

    Just for grins, change themes and see what happens.
    To be honest, I've never seen this before and can't track it down with the dev tools.

  4. vkaryl
    Member
    Posted 2 years ago #

    I don't see any numbers at top and bottom of page....

  5. doodlebee
    Member
    Posted 2 years ago #

    I'm getting a "cannot connect to database error". When I go one level up, I can also see your directory tree.

  6. 31337
    Member
    Posted 2 years ago #

    OK, I have reinstalled this 5 times each time a fresh download and a fresh install. Also, I have tried changing themes.

    There are still numbers on the top and bottom. On the top on my computer I see the number 1402 on the bottom the number 0.

    Quote "I'm getting a "cannot connect to database error". When I go one level up, I can also see your directory tree."
    Yes, because this is my test server there is no main index.

    What is going on with the numbers?
    How do I fix this?

  7. 31337
    Member
    Posted 2 years ago #

    So, what is the deal with the numbers?
    Today I see the number 1179 on the top.
    Why in the world did it change? Why is it there at all?

  8. doodlebee
    Member
    Posted 2 years ago #

    I'm seeing the site now - 1179 at the top and 0 at the bottom. (I'm using Firefox on Windows XP.)

    Viewing source code looks like the numbers have been typed in before your doctype starts and after the closing HTML tag.

    Very curious.

    What's your server setup? Who's your host? Have you checked your error logs?

  9. 31337
    Member
    Posted 2 years ago #

    "I'm seeing the site now - 1179 at the top and 0 at the bottom. (I'm using Firefox on Windows XP.)"
    I have tested on IE and FF numbers are still there.

    "Viewing source code looks like the numbers have been typed in before your doctype starts and after the closing HTML tag."
    I noticed that as well it is very odd. I have never seen this before.

    What's your server setup?
    Can you specify the info, there are pages and pages of info on the server setup.

    Who's your host?
    ifastnet

    Have you checked your error logs?
    Not yet I will post them as soon as I can.

  10. doodlebee
    Member
    Posted 2 years ago #

    Meaning, what version of MySQL, PHP, Apache (are you on a Windows IIS system?) that kind of thing.

    ifastnet - free hosting service? Hmm..

  11. 31337
    Member
    Posted 2 years ago #

    Apache/2.2.3 (Unix)
    PHP: v5.1.6
    MySQL: v5.0.30-Debian_3

  12. 31337
    Member
    Posted 2 years ago #

    Dose any one know anything on this?

  13. doodlebee
    Member
    Posted 2 years ago #

    I would say that no, no one knows anything on it. I've googled on the issue, and also came up with nothing. I've seen similar problems, but it's always due to the use of comment text and IE - and the result of that bug isn't the same output as what you're seeing.

    This is definitely NOT a WordPress issue - this output is being generated before even the WordPress code is - I would say it's something odd going on with the installation of something on your server, or something that's set up on your server. (Which is why I suggested you check your logs - you may see something that refers to it.) My initial guess would be that it's an Apache thing - I've seen something similar when Apache generates what's called "ants". You'll see a number generated, and that number is associated with an "ant" - you can find lists of "ants" and what they represent all over the place. However, I've never seen an "ant" appear on a website - only in logfiles.

    That's my best guess though - this is most certainly not a WordPress thing, though. The fact that your pages take such a long time to load up also points to a server issue - I've never seen a site with so many issues in just loading up a page (I tried it again today, and it took another 3 minutes for the site to even *try* to come up.)

  14. 31337
    Member
    Posted 2 years ago #

    It looks like a proxy server error so I got them reconfigured. It should also speed things up so I hope it works.

  15. AndreBonhote
    Member
    Posted 2 years ago #

    Did you manage to fix this? I don't have a proxy in between my wordpress server and the outside - just apache and me!, and the same issue.

  16. dzukelis
    Member
    Posted 2 years ago #

    Yes... U'r damnit right.... This is proxy problem..
    Some strange thinks...
    Same server, same WP version, same same same.. but results with or without proxy are different's:

    Some screenshots: http://mantas.lt/tmp/wp_bugs/
    And piece of HTML code from http://www.bararama.net/mal with malformed code at http://p.defau.lt/?lS8g3XelKzZgshMdjRiw8w

  17. sarasaratricecom
    Member
    Posted 2 years ago #

    I'm having the same problem: http://saratrice.com/wordpress/

    This happens if I use any kind of code in a sidebar (with a plugin), or in a post. Right now it's because of the tooltip code (using the Tippy plugin) in the first test post. I've changed themes and it's not the theme code.

    Here's my PHPinfo page:
    http://saratrice.com/wordpress/phpinfo.php
    MySQL: 5.0.26
    Linux: Gentoo 2.4.34.4

    Ideas?

  18. pastiorama
    Member
    Posted 2 years ago #

    Hey guys,
    It's really a Proxy problem.
    Here is a solution, found at http://wordpress.org/support/topic/105807

    ----------
    thanks to your great work identifying the specific issue, I was able to find this:

    http://trac.wordpress.org/ticket/3886

    Aplying the revisions suggested in that post fixed my issue. I have confirmed that the fix fixed the issue, on both of my wordpress sites which were having the issue.

    looks like the patch is going to be in 2.2, set for 04/23/07. If like me you can't wait that long, to fix manually yourself:

    edit functions.php under the wp-includes directory

    search for the following line in functions.php:

    nocache_headers

    immediately above that entry, you should see the following:

    if ( version_compare(phpversion(), '4.3.0', '>=') )
    @header("HTTP/1.1 $header $text", true, $header);
    else
    @header("HTTP/1.1 $header $text");

    what you need to do is comment out the two lines with @header in them (by placing // before it) and add the lines i've added below (each added line is commented below it with "above line added to fix squid"). The "if" and "else" statements stay the same...

    if ( version_compare(phpversion(), '4.3.0', '>=') )
    // @header("HTTP/1.1 $header $text", true, $header);
    // above line needs commented out
    @header($_SERVER["SERVER_PROTOCOL"]." $header $text", true, $header);
    //above line added to fix squid issue
    else
    // @header("HTTP/1.1 $header $text");
    // above line needs commented out
    @header($_SERVER["SERVER_PROTOCOL"]." $header $text");
    //above line added to fix squid

    Best of luck. Drop me an email or IM if you need help (contact info on my blog below), i owe you one for identifying that this was an issue particular to squid and thus letting me track it down...

    -Performify
    http://performify.com

    ---------------------------------------
    ---------------

Topic Closed

This topic has been closed to new replies.

About this Topic