PHP doubts
From: Rajiv (jrajiv_at_hclinsys.com)
Date: 03/31/05
- Previous message: Paul Howarth: "Re: Problem with NFS after updating util-linux"
- Next in thread: James Kosin: "Re: PHP doubts"
- Reply: James Kosin: "Re: PHP doubts"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
To: <fedora-list@redhat.com> Date: Thu, 31 Mar 2005 19:57:17 +0530
Dear All,
I am able do add password using the following PHP script
<?php
$password="pass";
exec("useradd user2");
$volumesp = popen("passwd user2", "w");
fputs($volumesp,$password."\n");
fputs($volumesp,$password."\n");
pclose($volumesp);
?>
# php sample.php - gives sucessful output
The password for the user "user2" is being created sucessfully.
But I am unable to add a samba user using a similar script
<?php
$password="pass";
$volumesp = popen("smbpasswd -a user1", "w");
fputs($volumesp,$password."\n");
fputs($volumesp,$password."\n");
pclose($volumesp);
?>
# php sample.php - I am have to enter the password 2 times like I do in
command line.
I am also facing the same problem with smbadduser instead of smbpasswd
command. Infact these are the only commands I am facing problems executing
in PHP scripts.
I agree - this may not be the right list for this question - Pls help me in
troubleshooting this problem or atlest help me guiding to the right list.
Regards,
Rajiv
-- fedora-list mailing list fedora-list@redhat.com To unsubscribe: http://www.redhat.com/mailman/listinfo/fedora-list
- Previous message: Paul Howarth: "Re: Problem with NFS after updating util-linux"
- Next in thread: James Kosin: "Re: PHP doubts"
- Reply: James Kosin: "Re: PHP doubts"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|