• Okay… After 3 days, I got past the “blank page” syndrome of
    index.php, as discussed here:
    https://www.ads-software.com/support/2/11775
    Now I merrily go through WordPress setup Step 1, Step 2, and then on Step 3, I get “Step 3” on the screen, and nothing after it. Where’s the password I’m suppose to get? How do I proceed from here?
    I’ve deleted the database multiple times and repeated the same process. Sometimes specifying https://localhost as the WordPress root, and sometims specifying https://localhost/wordpress as teh WordPress root (no difference in the results).
    How do I get through Step 3?

Viewing 15 replies - 1 through 15 (of 19 total)
  • Try using phpmyadmin to go into the database.
    Reset your password, then try /wordpress/wp-login.php
    https://www.tamba2.org.uk/wordpress/

    Thread Starter increa

    (@increa)

    (Reponse to podz, above: phpmyadmin is a great tool, thanks, but I extracted the password by adding my own debugging echo command. But the install script is failing in other ways, per below.)
    After a few days of experimenting I have the problem isolated down to one line inside the WordPress install scripts. install.php calls another file, upgrade-functions.php. Inside that file, execution is dispatched to function upgrade_110. Here’s a code snippet from that function. I’ve added all the echo commands as a debugging aid. Worpress programmers, any clue why this section of code, inside upgrade-functions.php, doesn’t return from the if statement?
    // Convert passwords to MD5 and update table appropriately
    $query = 'DESCRIBE '.$tableusers.' user_pass';
    $res = $wpdb->get_results($query);
    echo "in upgrade_110, just before if.";
    if ($res[0]['Type'] != 'varchar(32)') {
    echo "in upgrade_110, inside if statement.";
    $wpdb->query('ALTER TABLE '.$tableusers.' MODIFY user_pass varchar(64) not null');
    }
    echo "in upgrade_110, just after if";

    Here’s the html output that displays when I click into Step 3 of the install sequence. All output after the “Step 3” is from my own debugging echo commands:
    Step 3
    Just BEFORE upgrade_all with random password: efdfd1
    . Just before upgrade_110.in upgrade_110, just before if.

    Notice the echo inside the if doesn’t execute. And the echo just after the if doesn’t excute. So where does execution go? It seems the if statement is failing. What’s going on?

    I encountered the same problem. Anyone has a solution?

    I get the very same problem (I’m glad I checked this forum as I was about to start the very sme debugging process).
    I ran this software fine on a previous server I was running, but since moving to FreeBSD the whole thing dies as outlined above.
    I really enjoyed using this…please can anyone help us out?
    Many thanks,
    Keeran
    (ps, if there is a solution, could someone give me a shout in case i miss it here? – ta)

    I’ve just tried removing all the references to the upgrade code (this should be latest version..so why do we need the upgrade code) but as all blind hacks should, it failed. ??
    The annoying thing is that this isn’t triggering any errors at all, it’s just dying. So is this some weird, rare, coding anomally that is nuking mysql or apache in the process?
    Have started looking for alternative software while I keep an eye on this forum :/
    Keeran

    I am having the same troubles. I have php, mysql, and apache all talking just fine. But I get this message in my apache error log for page 3:
    [client 127.0.0.1] PHP Fatal error: Cannot use object of type stdClass as array in C:\\Program Files\\Apache Group\\Apache2\\htdocs\\as\\wordpress\\wp-admin\\upgrade-functions.php on line 705, referer: https://localhost/as/wordpress/wp-admin/install.php?step=2
    Does this help anyone in trying to figure out the problem. I want to use this software, but this is frustrating.

    Do you have php5 ?
    Use 1.2mingus for php4.x
    Use a 1.3nightly for php5.x

    I do have php 5.x. Which nightly do you suggest?

    I do have php 5.x. Which nightly do you suggest?

    The latest 6 / 9 build.

    I do have php 5.x. Which nightly do you suggest?

    sorry about that. my browser went a little whacky there. thanks for the suggestion.

    I’m guessing the nightly builds wont make any difference for the original thread problem (thanks for the hijack!;) and PHP4 users?
    Kee ??

    update: the only thing i can find different between my previous server and current is that now we are using Mysql 4.0.x rather than 3.23.x – is this a known problem cause?
    Kee

    commented out the update call in the above code and now the install completes and issues me an admin password, but the system doesnt run at all…
    arrgh ??
    Kee

Viewing 15 replies - 1 through 15 (of 19 total)
  • The topic ‘Step 3 of install gives me no password’ is closed to new replies.