Where in the script should I put my password? I've looked through it and I don't see where I should place my password.
Hi,
find the line: $passwd = array('' => '');
change to: $passwd = array('user1' => 'password1');
for multiple users: $passwd = array('user1' => 'password1', 'user2' => 'password2');
cheers bzrudi
Log in to post a comment.
Where in the script should I put my password? I've looked through it and I don't see where I should place my password.
Hi,
find the line:
$passwd = array('' => '');
change to:
$passwd = array('user1' => 'password1');
for multiple users:
$passwd = array('user1' => 'password1',
'user2' => 'password2');
cheers bzrudi