Are there any working packages to change a linux user passwords using PHP?
I\'ve tried using PECL:PAM but theres an error when it tries to change the password.
E
You could use RSBAC passwords.
$ret = system("echo \"newpass newpass\" | rsbac_password -n"); if ($ret) echo "fail."; else echo "done!";
So much easier.