Tagged Questions
2
votes
3answers
50 views
PHP shell_exec with parameters is not working
I have a problem with the shell_exec option in my server. I am running CentOS 5.7 with CPanel and PHP installed on it.
In our coding we are passing parameters to a php file using shell_exec. Our ...
1
vote
2answers
1k views
Shell_exec php with nohup
I think there are tons of similar posts but I haven't yet found a solution after searching around.
Basically, I'm trying to run two scripts in the background. When I run them in the commandline, I ...
0
votes
4answers
76 views
How to pass a parameter with space to an external program in a shell script?
a.sh
#!/bin/bash
description=`"test message"` # input parameter for contain a space
binary=<external_prog> # simply display what passes to flag --description
cmd="$binary ...
0
votes
1answer
81 views
Execute multiple shell_exec at once?
How do I execute multiple shell_exec at once?
Also how do I switch each process to view output from test.php file? I need to know what each process (php file) is doing.
Take a look, example:
...
0
votes
2answers
181 views
PHP passwd error
I'm doing this:
$user = 'kevin';
$pass = 'nivek';
shell_exec('echo -e "' . $pass . '\n' . $pass . '" | sudo passwd ' . $user);`
But when I execute this, I get this error:
Enter new UNIX password: ...
0
votes
2answers
281 views
error executing shell script in PHP
I am trying to execute a shell command via:
<php echo shell_execute("tac /home/kusmuk/access-logs/kusmuk.org"); ?>
But it does not give any output. What could be the reason?
Although it does ...