woogie
06-29-2007, 07:39 AM
Hello.
I'm having a problem with installing Dekiwiki to Windows. Installation has been succesfull, but when prompted for a password I can't get logged in.
When entering:
User: Sysop
Pass: <my password>
It just keeps asking password three times and then stops.
This is probably caused because of XAMPP and it doesn't have root password for MySQL database. To get rid of this problem I modified install.php where passwords are checked:
From this:
if( isset( $options['help'] ) || !isset( $options['dbPwd'] ) || !isset( $options['dbRootPwd'] ) || !isset( $options['site'] ) ) {
To this:
if( isset( $options['help'] ) || !isset( $options['dbPwd'] ) || !isset( $options['site'] ) ) {
And in installation command I used following:
php.exe install.php --site Deki --dbPwd <password> --sysOpPwd <password> --supportPwd <password>
Is there any way to go around this password checking? I have browsed trough code but haven't found any solution.
I'm having a problem with installing Dekiwiki to Windows. Installation has been succesfull, but when prompted for a password I can't get logged in.
When entering:
User: Sysop
Pass: <my password>
It just keeps asking password three times and then stops.
This is probably caused because of XAMPP and it doesn't have root password for MySQL database. To get rid of this problem I modified install.php where passwords are checked:
From this:
if( isset( $options['help'] ) || !isset( $options['dbPwd'] ) || !isset( $options['dbRootPwd'] ) || !isset( $options['site'] ) ) {
To this:
if( isset( $options['help'] ) || !isset( $options['dbPwd'] ) || !isset( $options['site'] ) ) {
And in installation command I used following:
php.exe install.php --site Deki --dbPwd <password> --sysOpPwd <password> --supportPwd <password>
Is there any way to go around this password checking? I have browsed trough code but haven't found any solution.