Add Password for Database user
Brought to you by:
jpkaps
It would be good if one could supply a password which
is used for connecting to the database. For MySQL the
solution would be as simple as adding a new
configuration variable
$DBUSERPASS="" to includes/config.inc
and changing line 34 in mysql.inc
to (probably als add a check whether the password is empty)
$conn = mysql_connect( "localhost", $DBUSERNAME,
$DBUSERPASS );
This would need some complementing code in install.sh.