[PHP] 64 bit binary ?

2009-07-05 Thread loki
Hello Is it plane to release 64 bit binary for php on windows ? -- Stéphane Http://www.arkadia.com/fra/ Http://www.arkadia.com/usa/ Http://www.arkadia.com/rus/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] 64 bit binary ?

2009-07-06 Thread loki
no "Daniel Brown" wrote in message news:ab5568160907051350x530f4efbw96ffc356c15...@mail.gmail.com... On Sun, Jul 5, 2009 at 15:43, loki wrote: Hello Is it plane to release 64 bit binary for php on windows ? Pierre? -- daniel.br...@parasane.net || danbr...@ph

[PHP] need sample of code for Fast-CGI with php

2009-09-07 Thread loki
hello, if someone have sample of code (C#, C++, delphi, etc.) to call php from an custom application (custom web server for exemple) throught fast-cgi ? thanks you by advance -- stephane Http://www.arkadia.com/fra/location-vacances/ http://www.arkadia.com/fra/immobilier/vente/france/provence

[PHP] VC9 x86 Non Thread Safe or VC9 x86 Thread Safe ?

2009-10-12 Thread loki
Hello, We use Php-cgi.exe as FastCGI with our own custom WebServer on Windows Server What to choose, VC9 x86 Non Thread Safe or VC9 x86 Thread Safe ? We have these enviroment variable : PHP_FCGI_CHILDREN: 8 Thanks you by advance stephane -- Http://www.arkadia.com/fra/ Http://www.arkadia.c

[PHP] Bug in php-cgi.exe

2009-10-13 Thread loki
Hello, i thing i found a bug in PHP-cgi.exe I use Php-cgi as fastCgi php-cgi.exe -b host:port i set in environement variables this : PHP_FCGI_CHILDREN=8 PHP_FCGI_MAX_REQUESTS=1000 in the task manager i see only one Php-cgi.exe process (when normaly i must see 9 process no?) and after i send

[PHP] exec in different directory where PHP is Installed

2010-05-24 Thread loki
Hello, PHP is installed in c:\program files\php the PHP script are in network drive \\xxx.xxx.xxx.xxx\scriptdir\ in the PHP script, we try to launch the command @exec(...) with a executable located in c:\program files\ourexecutable\ it's not work :( but if we move the PHP script from \\xxx.xx

Re: [PHP] exec in different directory where PHP is Installed

2010-05-24 Thread loki
} $exec = @exec($input, $output, $this->returnvalue); when i put the script in \\xxx.xxx.xxx.xxx\scriptdir\ the result is empty when i put the script everywhere in the c: then the result is good ! in both case $input is the same and point to c:\program files\im\identify.exe

Re: [PHP] exec in different directory where PHP is Installed

2010-05-24 Thread loki
On 5/24/2010 11:31 PM, Bob McConnell wrote: From: loki PHP is installed in c:\program files\php the PHP script are in network drive \\xxx.xxx.xxx.xxx\scriptdir\ in the PHP script, we try to launch the command @exec(...) with a executable located in c:\program files\ourexecutable\ it'

Re: [PHP] exec in different directory where PHP is Installed

2010-05-25 Thread loki
d-By: PHP/5.2.8 Content-type: text/html @exec function work well Now when PHP is run as a FAST-CGI then it's not work at ALL (ie: just the @exec function not work, the other work ok!) is it a normal behavior ? thanks you by advance stephane On 5/24/2010 11:42 PM, Bob McConnell wrote: