• Upgrading from 1.0… Uploaded all the files and ran upgrade.php… This is the error message my home page gets…
    SQL/DB Error:
    [Unknown column ‘post_date_gmt’ in ‘where clause’]
    SELECT DISTINCT * FROM wp_posts WHERE 1=1 AND post_date_gmt <= ‘2004-12-02 00:34:59’ AND (post_status = “publish”) GROUP BY wp_posts.ID ORDER BY post_date DESC LIMIT 10
    Someone suggested reuploading the files and doing it again, which I’ve done multiple times.
    I can’t even login, for this comes up at the wp-login.php screen…
    <meta http-equiv=”Content-Type” content=”text/html; charset=
    Fatal error: Call to undefined function: convert_bbcode() in /usr/local/psa/home/vhosts/danwa.net/subdomains/czar/httpdocs/wp-includes/template-functions.php on line 23
    ANY HELP?
    Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Are you deleting all files from the server before uploading new ones ?
    Have you run ‘upgrade.php’ a couple of times ?

    Thread Starter czar21

    (@czar21)

    “Are you deleting all files from the server before uploading new ones ?”
    Not the first time, left index.php and wp-config.php etc. Did this morning though, with same result…
    “Have you run ‘upgrade.php’ a couple of times ?”
    Yes, many many times over a couple different uploads…

    Moderator James Huff

    (@macmanx)

    Try making a new wp-config.php file out the wp-config-sample.php file provided with the v1.2.1 download. It has probably changed slightly since v1.0

    Run a test script to make sure the SQL username and password you are using work. Put the following into a text file, test.php, and upload to your web host. Then run it by going to that file in your browser. If you get error messages, it’s not working. If not, it works.
    <?php
    $mysql_server = "localhost";
    $mysql_user = "username";
    $mysql_password = "password";
    $db_name = "databasename";
    print "Credentials for MySQL entered.<br>";
    mysql_connect ($mysql_server, $mysql_user, $mysql_password);
    mysql_select_db ($db_name);
    print "Connection to MySQL database attempted.<br>";
    ?>

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘1.2.1 upgrade error…’ is closed to new replies.