Re: [phpWebLog-devel] Password problems still
Brought to you by:
openface
|
From: Jason H. <ope...@ey...> - 2000-06-08 13:24:36
|
I am (again) sorry for the confusion/immaturity of the packaging/installation issues. I've been using the homepage itself, phpweblog.org as my current working copy to work on, so when i make a nightly tar, I have to change the password, and some things first. There are times that I make mistakes and overlook some things. In the past few builds, I had set the default password incorrectly, again. This was because I was forgettingly using crypt("password") to get encrypted password to insert into the data.sql manually instead of doing crypt("password","CRYPT_BLOWFISH"). So anyway. Here it is.. The password in the database should be 'CRdA8QWcCutMQ' to have your password defaulted to 'password'. $ mysql -u USERNAME -p DATABASE mysql> UPDATE T_Config set Passwd='CRdA8QWcCutMQ'; The same mistake was made in the reset_passwd.sh script as well. This has been fixed as of this writing. Again, I apologize. I feel once I separate the phpweblog site from the dev site, I can begin on making installation easier, and without any errors. I know, I know,... haste makes waste.. I'm learning. =] Jason |