Top "Shell-exec" questions

The shell_exec() PHP function provides the ability to run shell commands during the execution of a script.

shell_exec() - Error when executing php script

When I'm trying to execute a PHP script using shell_exec(), it's not working. In the error_log file it …

php shell-exec
Batch file that opens adobe reader to print PDF doesn't end/close

I have the following code in a batch file that is called by a PHP script using shell_exec(): "C:\…

php batch-file shell-exec
php shell_exec with realtime updating

I have this shell program that I want to execute by php. The problem is that it can potentially take …

php popen shell-exec
How to get shell_exec to run on IIS 6.0

The Problem I have a PHP script that uses shell_exec to run a pdf-to-text converter. To simplify the problem …

php windows iis shell-exec
PHP detect if shell_exec() command failed

I'm running the ffmpeg command within PHP's shell_exec() to convert several videos in a list. Is there anyway to …

php ffmpeg shell-exec
Php check if shell_exec command was successful

I basically want to check if a command ran successful using shell_exec. Simple function: public static function foo() { $command = "…

php shell command-line command shell-exec
Querying an audio/video file for information

I want a PHP function which receives the path to a file and returns an array of information about it. …

php ffmpeg shell-exec
php libreoffice shell_exec not working

I am trying to convert .docx file to .html using php shell_exec in CentOS 6.5 My php code: $command = "libreoffice …

php linux centos libreoffice shell-exec
PHP - shell_exec output in browser is empty

I'm running a simple wget command in shell_exec() wget_file.php <?php $command = "wget http://mydomain.co/media/…

php wget shell-exec
php system() shell_exec() hangs the browser

Possible Duplicate: Asynchronous shell exec in PHP i need to run a java program in the background. process.php contains …

php shell-exec