You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently only php-cgi.exe is bundled with phpdesktop binaries, in the php/
directory. People may run into issues when they try to run php scripts from
command line using php-cgi.exe, as this is a CGI interface for interacting with
web servers and it works differently. You are not supposed to run php scripts
from command line using php-cgi.exe.
If you try to run some php scripts in the background using this code:
$backgroundexec = PHP_BINARY . " " . getcwd() . "\background.php " . $argument;
echo $backgroundexec;
shell_exec($backgroundexec);
It will cause creation of infinite number of cmd.exe and php-cgi.exe processes.
Original issue reported on code.google.com by [email protected] on 16 Mar 2014 at 2:41
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 16 Mar 2014 at 2:41The text was updated successfully, but these errors were encountered: