I need to create an ejabberd user from a PHP script. I also need to be able to add the new user to a predefined shared roster.
Should I just call ejabberdctl using exec() or is there a better way?
|
|
|
|
|
|
|
ejabberdctl is by far the easiest in this specific case. The other options are:
|
||||
|
|
|
Here's my final solution:Thanks to jldupont's advice that By default, apache's user doesn't have the right privileges to successfully run
Solution (for Ubuntu) - add this line at the end of
The path to the sudoers file and ejabberdctl may vary for other Linux distros. This allows apache's user ( All that's left is the PHP code:
SecurityIt's important to note that this does present a significant security risk even though you're only allowing one command to be run by |
||
|
|