The proc-open tag has no wiki summary.
0
votes
0answers
36 views
proc_open runs too long in windows 7
I am using elfinder 2.0, but it doesn't work in Windows 7. The reason is that the proc_open() function takes too long to execute. For example, a simple command such as tar --version executes 25 ...
0
votes
1answer
20 views
How to create a resource with Resource id?
When I used proc_open, it returns a resource handle represented as Resource id #4. This code runs on the server, and I want to use this 'handle' again using the id. But after some kind of data ...
3
votes
1answer
130 views
Reading from STDIN pipe when using proc_open
I am trying to make a website where people can compile and run their code online, thus we need to find an interactive way for users to send instructions.
Actually, what first comes to mind is exec() ...
0
votes
1answer
157 views
Proc_open and Capifony issue
I'm trying to use Capifony with my web app in Symfony2.1 to accelerate the deployment process.
Here is my deploy.rb file :
default_run_options[:pty] = true
set :application, "mywebsite"
set ...
0
votes
1answer
67 views
PHP proc_open pipe anomaly (Win7/Apache2.2)
The following code works when executed from the command prompt in windows 7 running "php test.php" (PHP 5) - output is simply "test". But when the php (v5) is run over any browser running on a ...
0
votes
1answer
81 views
PHP set proc_open to output directly to user
I'm using proc_open with pdftk to pre-fill some forms with data, this works pretty well, but rather than save the result to a file and then read the file back, I'd like to print the file directly out. ...
0
votes
1answer
156 views
PHP proc_open avability
I made a PHP library that uses proc_open and relies on external application to process data.
Now, I need to make a "check" file that will analyze the server and return if my library can be used on ...
0
votes
1answer
78 views
PHP proc_open - Bail out if process requires input
So - I'm using proc_open() to execute programs such as ssh, rsync, scp etc. to perform backup tasks.
However, in some cases, these processes could become interactive and require input, for example ...
1
vote
3answers
65 views
JavaScript back and forth with running program
Problem:
I'm trying to see if I can have a back and forth between a program running on the server-side and JavaScript running on the client-side. All the outputs from the program are sent to ...
0
votes
1answer
63 views
How to open and close a process with PHP?
How to open and close a process with PHP?
Right now I open a process with the following code:
$zoutput = array();
if( ($fp = popen("7za t \"".$path."\" * -r", "r")) ) {
while( !feof($fp) ){
...
1
vote
0answers
150 views
Svn remote Server certificate verification issue by php
In order to use websvn for browsing remote repository, I installed websvn in my localhost(windows7, wampserver).
Websvn executes svn commands by proc_open of php functions.
When svn command is:
svn ...
1
vote
1answer
124 views
Terminating proc_open after x Seconds
I am using pdftk to merge pdf files. Occasionaly a user uploads a ill formed pdf and it hangs the process returning no errors and consuming all the server resources. To prevent this i am looking at ...
0
votes
2answers
724 views
Use of undefined constant STDOUT - assumed 'STDOUT'
I am running the following proc_open function. When the page is loaded, I get the error:
Use of undefined constant STDOUT - assumed 'STDOUT'`
How should I set STDOUT and STSDERR correctly?
PHP ...
0
votes
0answers
96 views
Get PID on windows with php 5.4
It was quite easy to get executed program pid using Sysinternals PsExec.
But its stoped working on php 5.4 .
Now nothing gets executed and script keeps running forever.
Maybe there are other ways ...
2
votes
1answer
177 views
Connect pipes of processes in php
I would like the output of one process created with proc_open to be piped to another one created with proc_open (in php). For example. In bash I can do:
[herbert@thdev1 ~]$ cat foo
2
3
1
...
0
votes
1answer
87 views
How to spawn two processes with proc_open at the same time?
<?php
$ds=array(1 => array("pipe", "w"));
$ds1=array(1 => array("pipe", "w"));
proc_open("notepad.exe", $ds, $pipes);
proc_open("notepad.exe", $ds1, $pipes);
?>
I just want to create two ...
0
votes
3answers
327 views
PHP - proc_get_status 'running' returning false when javaw executable still running
I am executing javaw with an infinite looping java file using this:
$descriptorspec = array(
0 => array("pipe", "r"), // stdin is a pipe that the child will read ...
1
vote
1answer
202 views
php exec suggestions/alternatives
Can anyone give me some pointers with regard PHP command execution and best practice?
Im currently trying to parse some netbackup data, but i am running into issues related to the massive amount of ...
2
votes
1answer
512 views
Multiple writes to a process opened with proc_open
So I open a process with $process = proc_open("my_process", $descriptors, $pipes);
Then I write to the stdin of the process using fwrite($pipes[0], "some_command");
Then I have to close the pipe ...
0
votes
0answers
141 views
exec works but proc_open returns false
I don't see why this isn't working, I copied the proc_open code from the drupal drush module so I am confident it is good quality.
$process = proc_open("ls", array(0 => STDIN, 1 => STDOUT, 2 ...
0
votes
8answers
653 views
How to run a php file in background [duplicate]
Possible Duplicate:
Best way to manage long-running php script?
I have to built a big email list.Everything works perfectly,but when i submit the form page is loading untill every email is ...
1
vote
1answer
278 views
PHP stream_select doesnt work
I'm using Windows 7 and php 5.
I have a problem with executing a process by proc_open and check the timeout.
I used stream_select to check the timeout with this code:
<?php
$descriptorspec = ...
0
votes
1answer
571 views
fclose(): 18 is not a valid stream resource
I am trying to execute a process using proc_open. The I/O for the process is handled by the pipes !!
$descriptorspec = array(
0 => array("pipe", "r"),
1 => array("pipe", "w"),
2 ...
1
vote
1answer
494 views
Multiple input with proc_open()
I'm currently working on an online program. I'm writing a php script that executes a command in the command line with proc_open() (under Linux Ubuntu). This is my code so far:
<?php
$cmd = ...
1
vote
1answer
345 views
always blocked on reading from pipe opened through php's proc_open when used with stream_select
I'm talking to a process requiring user interaction using the following (PHP 5.3/ Ubuntu 12.04),
$pdes = array(
0 => array('pipe', 'r'), //child's stdin
1 => array('pipe', 'w'), //child's ...
1
vote
1answer
174 views
Error while executing proc_open from php script to connect to pgsql
My PHP script trying to import a .sql file in to postgres DB (Cent OS).
To connect th DB from the PHP script it uses:
$sCMD = 'psql -p '.$aDSNInfo['port'].' -d '.$aDSNInfo['database'];
$aDescriptors ...
0
votes
1answer
176 views
Passing interactive arguments for PHP exec() method
Need a help to implement the following. I have a C program file as follows:
#include <stdio.h>
main()
{
int x;
int args;
printf("Enter an integer: ");
if (( args = scanf("%d", ...
0
votes
2answers
263 views
interactive prompts with proc_open() on psql query
I am trying to execute a few PostgreSQL DB commands from a web interface.
I use proc_open() to pipe to the Windows command prompt.
Because psql (and all other postgres command) do not accept the ...
0
votes
3answers
277 views
PHP proc_open environment variables
I am trying to run processes using proc_open() function. As specified on the page - I supplied the custom environment variables and tried to print out. It shows all of my supplied variables + always 3 ...
6
votes
2answers
288 views
proc_open: Extending file descriptor numbers to enable “status” feedback from a Perl script
PHP's proc_open manual states:
The file descriptor numbers are not limited to 0, 1 and 2 - you may specify any valid file descriptor number and it will be passed to the child process. This allows ...
2
votes
1answer
1k views
proc_open interaction
Here's what I'm trying to achieve: open a shell (korn or bash, doesn't matter), from that shell, I want to open a ssh connection (ssh user@host). At some point it is likely to happen I will be ...
2
votes
2answers
290 views
load .profile with proc_open()
Here's the situation: I wrote a back end application, that runs on a certain server. On this server, there is a script that can be executed from the front end server, over ssh. My script will then ...
0
votes
1answer
664 views
Using php proc_open() with multiple input streams. Preventing hangs
Seems like I'm having problems using the streams which are piped to a process when using the proc_open() php function.
The process I'm starting is simply the convert ImageMagick utility to compose 3 ...
1
vote
1answer
206 views
how to handle infinite loop process when using proc_open
I use proc_open to execute a program created by c language.
I was using file for the "stdout".
$descriptorspec = array(
0 => array("pipe", "r"),
1 => array("file", ...
2
votes
1answer
345 views
Not getting entire response from popen
Hi I'm running a process with popen;-
$handle = popen('python scriptos.py', "r");
while (!feof($handle)) {
$data = fgets($handle);
echo "> ".$data;
}
And I'm only getting 3 lines from a ...
0
votes
1answer
301 views
PHP - proc_open - How does env forwarding work?
PHP's documentation for the proc_open function states that when spawning a child process, you can pass null as the value for the 'env' parameter to forward the parent script's environment down to the ...
3
votes
1answer
1k views
Use PHP's proc_open + bypass_shell to run an executable in the background AND retrieve the correct PID?
So, In PHP on Windows: is it possible to both run an executable in the background AND retrieve its PID? I've deduced that it's possible to accomplish both tasks separately, but not together.
...
1
vote
0answers
195 views
How do I use proc_open() with a non-standard file descriptor on Linux?
The proc_open() documentation states that it's possible to use other file descriptors than the standard ones:
The file descriptor numbers are not limited to 0, 1 and 2 - you may
specify any ...
1
vote
1answer
444 views
Proc_Open in PHP and Pipes
This is a sourcecode to control a minecraftserver over a webinterface with a mysql server.
Everything works fine except of line 29, wich doesn#t seem to be executed. there simply doesnt appear ...
1
vote
1answer
706 views
PHP Show CMD Command Prompt Window (Windows)
Usually, you would want to hide the CMD window.
In my case, I'll be doing some tests with PHP+CLI.
It will be mighty useful if PHP could be made to launch a CLI popup.
But alas, I can't find a way to ...
3
votes
1answer
624 views
PHP proc_open won't work - gives me “Missing handle qualifier in array”
Warning: proc_open(): Missing handle qualifier in array in C:\...\updatedots.php on line 102
I'm trying to open notepad the close it after 2 seconds. This is my code:
$descriptorspec = array(
...
2
votes
2answers
2k views
how to get output of proc_open()
I've tried to get output from proc_open method in php, but, when I print it, I got empty.
$descriptorspec = array(
0 => array("pipe", "r"),
1 => array("pipe", "w"),
...
4
votes
3answers
2k views
Proper shell execution in PHP
The problem
I was using a function that made use of proc_open() to invoke shell commands. It seems the way I was doing STDIO was wrong and sometimes caused PHP or the target command to lock up. This ...
2
votes
2answers
2k views
PHP Process Execution Timeout
I have the following code:
/**
* Executes a program and waits for it to finish, taking pipes into account.
* @param string $cmd Command line to execute, including any arguments.
* @param string ...
0
votes
2answers
583 views
php-capture console output while processing a lengthy script
I have an issue on capturing the ssh script output onto the browser as it executes rather than having it in the end.
script written-
$descriptorspec = array(
0 => array("pipe","r"),
...
7
votes
3answers
792 views
PHP proc_open opens multiple times
I have a utility function used for executing a program through CLI (cmd, bash etc). It returns an array of 3 items: STDOUT, STDERR and EXIT CODE.
So far, it's been working nicely without issues. In ...
0
votes
0answers
327 views
Php, work with the console program. Gradually add to it the parameters
There is a console program, it requires input parameters gradually. And need to know exactly what she wrote in response.
You say it is simple, using proc_open. Ca. I have it and use it. But the only ...
1
vote
4answers
820 views
Run perl file from PHP script but not wait for output on Windows Server
Im trying to execute a perl script from within a php script. I have had this working using various methods such as exec, popen and proc_open but I have a couple of issues to get around which the good ...
1
vote
1answer
395 views
proc_open in php
I am using proc_open in PHP to open a Application such as tclsh.exe.
This returns a resource number .
Now my question is how do i know if the tclsh process is killed in the script ?
Regards
Mithun ...
3
votes
4answers
3k views
How can I use PHP to setup an interactive SSH session?
I'm trying to establish an interactive SSH connection to a remote server using PHP via the command line on Mac OS X 10.6. I'm currently using PHP's proc_open function to execute the following ...

