0
votes
1answer
187 views

How to get process PID from PHP on Windows

I am developing a web-based application and I need to run a Matlab script to process some information. The problem is that I have a limitation on the maximum number of Matlab processes running at ...
0
votes
1answer
228 views

Find PID of created PHP process in PHP

I first execute the following command, $retVal = proc_close(proc_open("rfcomm connect \/dev\/rfcomm0 &> /dev/null 2> /dev/null &", array(), $pipe)); I have to use proc_close right ...
0
votes
0answers
95 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 ...
0
votes
2answers
112 views

Send a variable to a processes using PID in command line?

I have a processes that is open and can retrieve variables but it is running in the back ground. so i need to send a variable to the processes using the PID ?? is it possible in the command line to ...
0
votes
0answers
53 views

Send a Variable to a command line processes in php?

I don't know if it is possible but here it is, i am trying to send a variable to a command line processes that i have opened. $command = "cd FilePAth;"; $command .= 'export PATH=$PATH:`pwd`;'; ...
3
votes
5answers
589 views

how to find PID in php

I am writing a php script which will run through cron . Its task is to call other php scripts. The called scripts can also be executed externally. What I want is that while one file is executing, it ...
3
votes
3answers
993 views

Check if specified PID is currently running using PHP - Possible without using ps / etc?

We would like to check if a specified process is currently running via PHP. We would like to simply supply a PID and see if it is currently executing or not. Does PHP have an internal function that ...
1
vote
1answer
340 views

PHP Exec returning incorrect process ID

I am using PHP to launch an FFMPEG transcoding command. It's a typical LAMP setup running on Ubuntu 10.04 Server, there's nothing special about the configuration. The issue I am having is when I run ...
1
vote
2answers
230 views

How to handle an abandoned PID file when the user cancels a script?

This is more of a question about best practices. My server allows users to convert fonts from one format to another using FontForge. To prevent collisions, only one font conversion is allowed at any ...
0
votes
1answer
59 views

Determining if a process is running by its Command Name

So I have multiple processes running: N amount of working threads and 1 collector thread. I want to determine ONLY if the collector thread is active. These are the command results from pgrep php | ...
1
vote
2answers
78 views

Do PID values only increase over time? Or can they also generate lower values

I noticed that the PID of the processes my webapp is spawning keeps getting larger over time. For each process, the PID is stored in a file to reference from the web app. I originally had a file ...
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. ...
0
votes
1answer
223 views

php how could i kill a process by PID when safe_mode is on

i need to kill a process by PID, but safe_mode is on and i can't use posix_kill or exec or shell_exec and something like that! what should i do ?
2
votes
1answer
1k views

Creation of new process for each request of web page?

It might be a basic question but everytime a user call a php file from a server, does it create a new process from that server ? For example, I have a basic form (let's say on index.php) that submits ...
0
votes
1answer
481 views

Why in PHP CLI getmypid() returns 0 as a pid?

I'm developing a long running command line script and of course I want in not to launch itself more than once. So I write a .pid file and on launch check if a process with such PID exists. The problem ...
2
votes
2answers
2k views

How to get PID of a background process in PHP?

php file.php & How to get PID of the background process in file.php?