Having trouble installing serendipity?
PurpleCow
Regular
Posts: 64 Joined: Sun Jan 30, 2005 11:25 am
Contact:
Post
by PurpleCow » Sun May 08, 2005 4:03 pm
Hi,
I got my admin to change the db password for my serendipity installationa nd the site is not loading now. Which file should ic hange to update the password ? I knew there is an option within the admin panel to change it, but now i cannot even login to my admin panel ?
Kindly help me here.
Thanks
mgroeninger
Regular
Posts: 546 Joined: Mon Dec 20, 2004 11:57 pm
Contact:
Post
by mgroeninger » Sun May 08, 2005 5:19 pm
the database password should be contained in serendipity_config_local.inc.php
If should contain something like:
Code: Select all
$serendipity['versionInstalled'] = '0.8';
$serendipity['dbName'] = 'serendipity';
$serendipity['dbPrefix'] = 'serendipity_';
$serendipity['dbHost'] = 'localhost';
$serendipity['dbUser'] = 'dbuser';
$serendipity['dbPass'] = 'password';
$serendipity['dbType'] = 'mysql';
$serendipity['dbPersistent'] = false;
You want to change:
Code: Select all
$serendipity['dbPass'] = 'password';
PurpleCow
Regular
Posts: 64 Joined: Sun Jan 30, 2005 11:25 am
Contact:
Post
by PurpleCow » Mon May 09, 2005 6:14 am
Thanks mgroeninger
Cheers