From: Andrew S. <and...@pa...> - 2003-01-29 08:02:08
|
Whhops, forgot to forward this reply to the list. Oh, and the problem was PHP 4.0.6 Begin forwarded message: Date: Tue, 28 Jan 2003 21:01:30 +1300 From: Andrew Simpson <and...@pa...> To: "Katta Srinivas" <kat...@et...> Subject: Re: [Core-lan-org-devel] core-lan-org installation problem On Mon, 27 Jan 2003 14:13:39 +0530 "Katta Srinivas" <kat...@et...> wrote: > Recently I downloaded the core-lan-party Project Management Software > and installed on our linux system, I configured the PstgreSQL Database > as Specified in the INSTALL file and Edited the 'config.php' file > appropriately, Then tried to login with 'admin' and password > 'admin123' with the browser but it did not allowd me to login and it > is not giving any error. Not giving *any* error? This sounds like PHP 4.0.6, or lower, which cannot read $_POST() arrays. Check your version of PHP - you'll need to have version 4.1.0, or better. > When I checked in the Database explicitly there is one record in > 'users' table( name='admin' and password='admin123') of the Database The password should be md5 encrypted in the database - and not plain text. The values should look like this: COLUMN ( id, name, fullname, password, email, admin, deleted ) VALUES ( 1, 'admin', 'Administrator', '0192023a7bbd73250516f069df18b500', 'please_edit@my_domain.com', 't', 'f' ) Andrew |