• This is my first time ever installing the WP.
    Here is a problem. When I install the WP, step 1, 2 go fine. Then I get to the third screen where I enter my URL. I click the button, and I am supposed to get a generated password.
    But I get “Page cannot be found” built in IE error (it’s actually an empty return page – IE returns the same error message for all errors). I tried tracing the headers and it seems that the script does not return anything at all. Browser does 2 requests, but nothing returned. And it happens real fast too. Browser does not hang or anything. It happens instantly. I tried FF too – same thing.
    I tried opening other files, like edit.php and post.php – same thing, just an emtpy page. When I say empty page, I mean that there are not even HTTP headers that get returned – nothing!
    I wrote a small sample script <?php phpinfo() ?> and it works fine. And I know that other php scripts also work fine on the server… PHP and MySQL meet the requirements.
    Everything seems to be in tackt… I don’t get this one at all…

Viewing 15 replies - 1 through 15 (of 20 total)
  • Can you check your server’s error logs? That can sometimes help. I had that problem but on an existing blog. It turns out it was a rogue plugin. But on a fresh install, I’m at a loss. The only other thing you may want to check is the file wp-login.php and/or wp-config.php — if you installed WP yourself (instead of through your web host’s Fantastico or CPanel installer), there MIGHT be a stray carrier return (line feed) at the end of the file. A PHP file cannot have any line breaks or carrier returns after that closing caret! An obvious thing, I know, but it’s jumped up and bitten me on my considerable behind more than once!!

    I have an issue similar to the original poster I believe. I am trying to install wordpress on a website that is being hosted by Yahoo!. I am having a fit installing wordpress and even generating a meaningful error message. If anyone has configured this on a website hosted by Yahoo!, your help would likely be especially useful. I created a database (actually a couple of them) using mysql on the host. I then set up the wp-config.php in the home directory of my domain. I setup the file with the username, host, password, etc info that I believe is correct, yet when i click on run php from the Yahoo console, no matter which file I click on I get an empty screen?! Not even an error message which might be helpful, but just a plain empty screen. What I did then was to add some general php scripts to print out some variables so I would know that it was at least running. I get the following information which may or may not be very useful but it says:
    You are running thr file //wp-config.php.
    You r viewing this page using Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322).
    Your IP address 199.172.169.19
    Now there is a possibility that I did some things in the configuration for the MySql database wrong, and I am trying to address that If I did, but I can’t even start being that I get no indication on what might be wrong. Any help would be greatly appreciated, this whole process has me befuddled and frustrated and my gut tells me it really shouldn’t be that difficult. Thanks

    I am trying to get this working on my home server and having no luck, I just get a blank page.
    No errors to help.

    Anon – setup details ? wp version ? steps you have tried ? Info πŸ™‚

    I get this same blank screen. I have tried a new database, and one that I wasn’t using. I have tried the root account, I have tried a new account created for the wordpress blog. I turned off my firewall. I have changed the “localhost” to “127.0.01” Still, just a blank screen.

    ^ above post from “doubleu” new person, same problem.

    ^ above post from “doubleu” new person, same problem.

    Thread Starter moltar

    (@moltar)

    So as I understand – no solution yet?

    Same problem…It’s the 3th blog i try to install today and i’m always getting blank pages… I have the most recent version of PHP and mysql.

    Thread Starter moltar

    (@moltar)

    If I run the edit.php or any other file for that matter in shell, I get segmentation fault error.
    There was another problem that I found open_basedir was limited in Plesk. And script was requesting a file a catalogue up and system wouldn’t allow it. After I fixed that, I started getting Segmentation faults.
    They only happen after I finish the install. Well, not finish, but go all the way to step 3 which fails. Then even If I run install.php again, I get seg faults.

    Moderator James Huff

    (@macmanx)

    Volunteer Moderator

    Possible solution: http://wordpress.org/support/2/11775
    Enjoy. Don’t be afraid to search next time.

    Thread Starter moltar

    (@moltar)

    In those 3 posts you pointed out people had problem with mysql + php not working together. Mostly because of mod_mysql.
    I have it installed and it’s working. I am running myadmin and other php scripts fine that interact with database on daily basis. Besides, i can go all the way to the end of step 2 during installation. I think even step 3 completes, but I just don’t get any return. Tables get created fine, and when I press to go onto step 3, admin user is added to the database with password and everything, I just don’t get any output.
    When I run php –modules in shell, it lists mysql as one of the modules too, so it’s loaded for sure.

    Moderator James Huff

    (@macmanx)

    Volunteer Moderator

    And you did create a MySQL database before installing, right?

    Thread Starter moltar

    (@moltar)

    Of course πŸ™‚
    I mentioned that tables do get created. I checked the actual database thru myadmin, not just the messages on the screen.
    This post got me some more useful info: http://wordpress.org/support/2/7740
    I commented out upgrade_all() and install went smooth, but I think some tables were missing. But when I try to access any other pages (login, edit) I still get segfaults.

    Thread Starter moltar

    (@moltar)

    It took me a while, but I traced the segmentation fault to the pin point.
    It seems to be failing in the following file: /wp-includes/wp-db.php
    On line 144 (in latest release).
    It’s in function query($query)
    Here is a piece of code with the problem line in bold:

    } else {
    $i = 0;
    while ($i < @mysql_num_fields($this->result)) {
    $this->col_info[$i] = @mysql_fetch_field($this->result);
    $i++;
    }
    $num_rows = 0;
    while ( $row = @mysql_fetch_object($this->result) ) {
    $this->last_result[$num_rows] = $row;
    $num_rows++;
    }

Viewing 15 replies - 1 through 15 (of 20 total)
  • The topic ‘Install ends up with a blank page!’ is closed to new replies.