Page 1 of 1

Problem upgrade from 1.0.1 to 1.7.2

Posted: Sat Sep 07, 2013 5:53 am
by keatslee
Dear All,

I have problem upgrade from Serendipity from V1.0.1 to v1.7.2. Recenetly I have upgraded my XAMPP to latest version 1.8.1, then my existing Serendipity site have PHP error. Therefore I try to upgrade my Serendipity version to v1.7.2.

At the startup page, it told me to click "click here" to continue the upgrade, then it prompt me to input the login name and password. But whatever login I type in it also can't signon. I am pretty sure that login name and password for the admin is correct.

Regards,

Keats

Re: Problem upgrade from 1.0.1 to 1.7.2

Posted: Sat Sep 07, 2013 9:06 am
by Timbalu
Does your authors database table has changed to this? If not, submit this in phpmyadmin sql editor form and set the correct prefix first.

Code: Select all

    ALTER TABLE {PREFIX}authors ADD COLUMN hashtype int(1);
    ALTER TABLE {PREFIX}authors CHANGE password password VARCHAR(64) NOT NULL;
Then this procedure.
http://board.s9y.org/viewtopic.php?f=2& ... #p10432108

In some case the database updates (necessary between your 1.x and 1.7.x) have not run through successfully.
Often this has been the upper hashtype thing. But there may occur other issues too. So it might be good to have the update routine run again (see edit part of links thread text) first.

Re: Problem upgrade from 1.0.1 to 1.7.2

Posted: Mon Sep 09, 2013 9:21 am
by keatslee
It works, thanks a lot for your help!!! :lol: