Tagged Questions

7
votes
3answers
502 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 ...
5
votes
6answers
334 views

How can I spawn concurrent processes with PHP?

I'm trying to spawn multiple processes at once in PHP with proc_open, but the second call won't start until the first process has ended. Here's the code I'm using: for ($i = 0; $i < 2; $i++) { ...
3
votes
1answer
378 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
1answer
177 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
3answers
1k 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 ...
1
vote
1answer
35 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 ...
1
vote
0answers
136 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
185 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 ...
1
vote
1answer
146 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"), ...
1
vote
1answer
469 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 ...
1
vote
4answers
424 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
138 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 ...
1
vote
1answer
624 views

PHP popen and proc_open not returning binary output

When using popen or proc_open to run the following command to list the contents of a windows share: smbclient -N -U 'username%password' -O 'TCP_NODELAY IPTOS_LOWDELAY SO_KEEPALIVE SO_RCVBUF=8192 ...
0
votes
1answer
75 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 ...
0
votes
0answers
228 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. ...
0
votes
0answers
57 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 ...
0
votes
1answer
255 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"), ...
0
votes
1answer
180 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 ...
0
votes
1answer
175 views

Ensuring proc_open will keep the command line window alive in PHP

In PHP I am using proc_open to run a command at the command line. It needs to open in a new CMD window, so I prepended 'start' to the beginning of the command. However, it also needs to stay open to ...
0
votes
2answers
416 views

PHP using proc_open so that it doesn't wait for the script it opens (runs) to finish?

I've spent a while on this but can't get this to work, I apologize as I asked a somewhat related question about this earlier but deleted it so I could do more research to narrow down the question, at ...
0
votes
4answers
1k views

php - proc_open (or other function that works)

I need to do some command lines through a browser. What I need to do in a command-line would be: $login <login name> <password> $passwd <old password> <new password> ...