Hi
I have the following script...
$cmd_add_new = 'C:/Apache2/bin/htpasswd -b logg ' . "$userid " . "$passwd";
system($cmd_add_new) or die "Update procedure failed !\n";
print "Password update successful !\n";
The last code line never executes when I run the script. This means that the system function "died" before, right? The problem is that the system function actually has done its job (because I've checked it out in the output file called "logg") and than "died" anyway ???
Thanks
I have the following script...
$cmd_add_new = 'C:/Apache2/bin/htpasswd -b logg ' . "$userid " . "$passwd";
system($cmd_add_new) or die "Update procedure failed !\n";
print "Password update successful !\n";
The last code line never executes when I run the script. This means that the system function "died" before, right? The problem is that the system function actually has done its job (because I've checked it out in the output file called "logg") and than "died" anyway ???
Thanks