From: Joe Z. <joe...@za...> - 2004-09-23 17:06:05
|
johon Doe wrote: > Hi, I have a problem with the admin pass that it doesnt work. Simply > the login dont accept the admin pass. In the installation I found two > problem: 1) the configure dont find the apache2 user so that I > substituted the line 1713 with this: > > if PSOUTPUT=$(ps -C apache2 -o user,rgroup,pid,ucomm --sort pid); > then > > and then it seems work. 2) but in the configure log I see a: > > checking for web server user id... www-data ./configure: line 1: php: > command not found configure: creating ./config.status > > anyway I have installed bobs but at login it doesnt login with admin > pass. > > Any idea ? Try this from the command line: echo '<?php echo crypt("admin"); ?>' | php It should output something like this: Content-type: text/html $1$SpbcC3BW$pqKt2d8yXZWygujoYP.K9. Perhaps it's not finding php in your path? Also, if your using the cvs version, there is a configure option (type ./configure --help) to allow you to specify the httpd user id, so you don't have to change the configure source. Cheers, Joe |