I would like to be able to add FTP only users via a PHP web based form. The form would be located in a password protected area and I would be the only one with access to the form. I'm running RH 9.
The following creates the directory and chmods it, but the user is not added. Any ideas?
Code:
system ('useradd testuser -p test');
$dir="testee";
mkdir($dir,0755);
Thanks.
Alan Pollenz