Tagged Questions
0
votes
1answer
26 views
PHP exec 'service httpd fullstatus' returns empty when run from cronjob
I have this script that checks the server load. If the load is too high and/or the script is visited from a browser, the script fetches all running processes.
If the load is too high, and the script ...
0
votes
1answer
77 views
How can I execute a PHP file using the Ant script with php output in console, while executing file
My ant script
<target name="testRunPHP">
<exec executable="${php}" failonerror="true" dir="${source}">
<arg ...
0
votes
3answers
80 views
Why cannot run an executable file with exec() or system() functions?
I'm trying to run notepad on the server (localhost for now).
exec() and system() functions are working fine when for example write ping 127.0.0.1.
But this does not work (working fine if I write ...
0
votes
0answers
42 views
rndc failing intermittently on exec() calls w/ exit code 127
I have a web service that needs to remotely trigger a BIND reload. I'm accomplishing this by using a local rndc binary, which gets called via PHP exec() function. The rndc binary is set up to remotely ...
0
votes
2answers
142 views
Can't run PHP using exec Command
I've a problem in running a continous background process in which the parent initiate 2 or 3 child process then end itself, child processes have heavy computation so they will take alot of time.
I'm ...
0
votes
1answer
71 views
rsync folder out of apache server in php
This command I can run in command line correctly.
>sshpass -p 'xxxx' rsync -rve ssh /var/www/html/my_profect/image server2@192.168.xxx.xxx:/var/www/html/project2
But I want to call this command ...
0
votes
3answers
318 views
Why cannot PHP execute a command from web browser?
This is really simple but I cannot get it to work at all. Spent many hours and I've always give up. I created php script called copy.php and it should call a python script called copy.py.
I want to ...
0
votes
1answer
225 views
Convert videos in background php ffmpeg?
I would like to convert videos with exec(), FFMPEG php. I would like to run the script in background. How can I do that?
/*** convert video to flash ***/
$v = date('H-i-s');
// exec("ffmpeg -i ...
0
votes
3answers
151 views
PHP exec and OSASCRIPT?
I have a little Apple script as follow:
beep
delay 2
tell application "Finder" to activate
It just makes a sound, wait 2 second and then bring the "Finder" window to the foreground.
When I run it ...
0
votes
1answer
83 views
Openssl return status in cmd
I am using openssl command for creating certificate using PHP.I am using exec.When I give exec the command ,the return status is 1,I echoed whatever i insert in exec(OpenSSL statement) and try it ...
0
votes
2answers
297 views
PHP web application throwing “Too many open files”
I have a web application which uses php's native functions to write to files e.g. fopen(), fwrite() after writing to files at the end of the process, I close the file handle by doing fclose().
The ...
0
votes
1answer
49 views
How to get notified when the process invoked using Apache Commons Exec has stopped?
I am invoking a java process using Apache exec library. I need to do some operation if the process is forcefully stopped ( using task manager or some other way). Is there any option available in exec ...
-1
votes
5answers
538 views
How to execute a php script from another?
How to execute a php script from another ?
I want to execute 3 php scripts from my php file without waiting for the 3 scripts to finish. In other words, the 3 php files need to be executed all at ...
2
votes
1answer
1k views
pass arguments to apache-ant exec task based on the variable's value
I am only using apache-ant and not ant-contrib
I have an ant target
<target name="stop" depends="init" >
...
</target>
In which i want to invoke exec task.
If the value of a variable ...
0
votes
1answer
132 views
Apache file execution model using PHP exec()
Newly registered user here after being a long time lurker!
I have an Apache 2.2 web server running on Windows locally (for now) as a service, with PHP 5 installed. I'm using PHP's exec() to run a ...
0
votes
2answers
210 views
PHP exec('git') failing
Specifically, I'm trying to get ViewGit working on a PHP/Apache/Windows installation.
It seems that PHP is unable to run exec('git');.
exec('whoami'); works just fine, so it isn't a problem with ...
3
votes
3answers
2k views
PHP exec() not working properly
I am having difficulty with the PHP exec() function. It seems to not be calling certain functions. For instance, the code echo exec('ls'); produces no output whatsoever (it should, there are files in ...
0
votes
1answer
67 views
Receive feedback during a command execution using Apache Exec
I've implemented an example from Apaches's web: http://commons.apache.org/exec/tutorial.html
What I need now is listen / receive feedback from a heavy process.
I know how to print the process ...
0
votes
1answer
118 views
Using Exec() on Apache on window platform
I am trying to run an exec placed on my server using android emulator. When i use exec() command through my local host the commands works fine ( i didnt change any permissions) . but when i am running ...
3
votes
1answer
616 views
Creating a PHP Online Grading System on Linux: exec Behavior, Process IDs, and grep
Background
I am writing a simple online judge (a code grading system) using PHP and MySQL. It takes submitted codes in C++ and Java, compiles them, and tests them.
This is Apache running PHP 5.2 on ...
0
votes
1answer
1k views
Execute .bat file, without waiting for end
I am trying to make a kind of panel where I would like to have "start/stop" operations of application(Game server).
HTTP server is running on Windows Server 2008 R2(WAMP SERVER 64-bit)
I found out ...
0
votes
0answers
216 views
SQLCMD via PHP EXEC under IIS not working
I recently tried to port my PHP application from an Apache web server to an IIS. The web application is using the FastCGI interface when running on an IIS.
Now I have the problem, that whenever I try ...
1
vote
1answer
375 views
Run a Perl Script from PHP/Apache
On RED HAT LINUX: Running APACHE
From a PHP script I want to run a Perl script and am trying to do so with the following command:
exec("/usr/bin/perl /home/path/to/perlscript/main.pl", $output, ...
1
vote
3answers
537 views
PHP exec command on local server - Why doesn't this work?
I wanted clipboard access for a web app that I built for my own use on my local server, and I came up with this:
First a batch file that reads from another file:
clip < %1
and then in my PHP ...
1
vote
1answer
1k views
PHP's exec() can't access network drive
In PHP, I list some file by calling exec("dir ..."). However, this strangely works only on local drives. On network drives it has non-zero result status code and no results are returned.
I run Apache ...
0
votes
1answer
124 views
Python erroring when called from Apache but not commandline with close failed in file object destructor:
I've a Python script which works perfectly when called from the command-line but dies when called from a php script running on Apache on the same machine.
Error meesage (scraped from Apache error ...
2
votes
2answers
684 views
PHP exec() command wont launch python script using sendkeys
First Note: Sorry this is long. Wanted to be thorough.
I really hate to ask a question when there's so much out there online but its been a week of searching and I have nothing to show for it. I'd ...
1
vote
3answers
274 views
How to create directories in PHP that can actually be used (mkdir() and apache problem)?
I have literally spent days searching for a solution to this problem. PHP's mkdir() function is creating directories with owner/group: apache:apache. There is no way I can work in this directory via ...
1
vote
2answers
65 views
storing java executable that is callable via php
so I'm planning to have a PHP site being able to execute a java app using exec()....
my question is, where should I store the actual jar file for the java app, should I put them in one of the folders ...
4
votes
4answers
651 views
php exec multiple commands, apache restart
I have to run 2 commands through exec();
the first command is a wrapper calling for (Plesk panel) subsription,
the second is also a plesk command,for dns.
Note: After i execute an add subscription, ...
0
votes
1answer
573 views
SUID issues with PHP + Apache
Ok, not sure what I am missing here. I'm trying to rename some files with a web accessible PHP script, without giving world write permissions on those files. So I'm trying to use SUID on a PHP script ...
1
vote
4answers
888 views
exec function does not work out
<?php
exec("whoami");
?>
I can be more explicit with the code . Although When I'm trying to call the php file with my browser nothing happens (of course I'm using apache and the whole).
...
1
vote
3answers
136 views
The horrors of working with executables on windows
I run an executable called Test.exe via exec which in turns runs Outlook.
I am able to run the Test.exe fine but I get the error:
Rejected Safe Mode action : Microsoft Office Outlook. in the windows ...
2
votes
2answers
3k views
PHP exec/shell_exec/system not working through browser
I am running an SCO Unix box with apache version 1.3.33 and PHP version 4.4. I can properly execute the exec command through the cli, but run into trouble with trying to execute the script via a ...
1
vote
1answer
821 views
Programmatically get path to php
I'd like to do a similar thing than How to "fork" a video conversion process into background, in php? :
exec("/usr/bin/php ./foo.php > /dev/null 2>&1 &"); // executed in Apache
...
1
vote
2answers
2k views
Running shell_exec as a different user on Windows
I feel like I'm close to the answer, but I'm not quite there. I have a command line program that I call from a PHP. I use shell_exec(), and it runs on a Windows machine running an Apache server.
When ...
1
vote
2answers
1k views
Apache permissions to execute the exec function
I've been trying to run this php code on CentOS:
<?php
$command = "diff file1 file2 > file3";
exec($command, $output, $error_code);
if ($error_code != 0) {
echo "Error: $error_code";
}
...
1
vote
1answer
260 views
PHP / Apache - Refreshing screen while exec'd script is running
One page on my web site is a PHP script that uses exec() to launch a separate PHP script which generates a PDF document.
The PDF may take 30 seconds to generate. When I hit the refresh button during ...
-1
votes
2answers
2k views
What is the difference between running a script from the command line and from exec() with PHP?
I'm trying to run a Python script using exec() from within PHP. My command works fine when I run it directly using a cmd window, but it produces an error when I run it from exec() in PHP.
My Python ...

