Tagged Questions
3
votes
2answers
227 views
Is using shell commands from PHP/CGI bad practice?
Are shell commands considered a legitimate programming interface? Specifically, is there anything wrong with executing bash shell commands on a linux application server from PHP pages or CGI files? ...
2
votes
4answers
530 views
PHP sudo in shell_exec
I want to execute a command as root with shell_exec. Now I know this is dangerous, but believe me, you need to login with MOD_AUTH and have the right privilleges to come to this page. It's secure. How ...
2
votes
3answers
295 views
shell_exec() in PHP
<?php
// Execute a shell script
$dump = shell_exec('bigfile.sh'); // This script takes some 10s to complete execution
print_r($dump); // Dump log to screen
?>
When the script above is ...
1
vote
1answer
54 views
Check previous step in shell script run trough Cron
--- file makebackup.sh
#!/bin/bash
DATE='date'
mysqldump --all-databases | gzip -9 > /backup/temp_db.gz
tar -Pcf /backup/temp_ftp.tar /public_html/
tar -Pcf /backup/temp_backup.tar ...
1
vote
1answer
167 views
Starting screen from PHP to execute intensive Java application
I am wondering how to start a screen session from PHP, I have tried with shell_exec(), system() and passthru(), but no avail.
I have gotten the screen session started for the execution time of the ...
1
vote
4answers
928 views
Zipping files through shell_exec in PHP: problem with paths
I'm working on a web backup service part of which allows the user to download a zip file containing the files they have selected from a list of what they have backed up.
The zipping process is done ...
0
votes
1answer
46 views
How do I execute a Linux utility from within PHP with shell_exec() when I get the error “command not found”?
I've installed a linux utility ( optipng ).
It works fine when called from the command line like so: $ optipng image_name.jpg
If I try to execute it from within PHP like this shell_exec( 'optipng ...
0
votes
2answers
55 views
PHP interface for kernel's IP routing tables
I'm trying to implement a CRUD interface for the IP routing tables and I'm stuck at executing unix commands with PHP.
I've tried to echo the output for the route command using shell_exec command but ...
0
votes
2answers
97 views
echo exec working but exec not
I am using red hat enterprise edition n try making a simple php page..
When I try with ...
// html code
<?php
echo exec(<cmd>);
?>
// rest html code
Its working fine
but when ...
0
votes
2answers
47 views
GNUPG Escaping echoed data in shell_exec
I really want to go about this securely, as there is customer data involved.
I am using GNUPG via the command line because I am on shared hosting, and the PHP class is not available. So my code is as ...
0
votes
4answers
89 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
92 views
Why shell_exec executing more than 1 process?
I dont understand why there is more than 1 process when I run run.php once from a browser
In the PHP code, I have the following:
run.php
<?php
shell_exec("php theprocess.php > /dev/null ...
0
votes
1answer
86 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
721 views
Executing shell commands using PHP, e.g. shell_exec() etc., on a remote host?
Is it possible to execute shell commands on a remote computer (not localhost)? For instance things like
$output = shell_exec("unzip filename.zip");
You can assume that you have the login ...
0
votes
2answers
1k views
Calling bash with PHP's shell_exec — slow
I'm using PHP's shell_exec function to call a bash script on my server.
shell_exec("bash -x /tesladata/isetools/0-extractbytickerforweb.bash $ticker $isedate > ...
0
votes
2answers
286 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 ...