Tagged Questions

0
votes
0answers
46 views

PHP CLI very different process title on Debian 32 vs Ubuntu 64

I have two servers Debian Squeeze 32 and Ubuntu 11.10 Server 64. The same script with the same command behaves very different. Script test.php: <?php for ($i = 0; $i < 5; $i++) { echo $i, ...
0
votes
1answer
45 views

php: ps_hyphenate not working [closed]

I'm trying to hyphenate words in php. I'm using the example provided by http://php.net/manual/en/function.ps-hyphenate.php <?php $word = "Koordinatensystem"; $psdoc = ps_new(); ...
0
votes
2answers
363 views

how to check if ruby script is running in background from PHP script?

say a ruby script is running ruby.rb SOMEUSERID using PHP, how can i find out whether something exactly like that is currently running or not ? Currently i am using PID to check but im not sure if ...