ID: 27787 Updated by: [EMAIL PROTECTED] Reported By: vardemor at hotmail dot com -Status: Open +Status: Feedback Bug Type: Program Execution Operating System: windows 2000 professional/server PHP Version: 4.3.5 New Comment:
Please try using this CVS snapshot: http://snaps.php.net/php4-STABLE-latest.tar.gz For Windows: http://snaps.php.net/win32/php4-win32-STABLE-latest.zip Previous Comments: ------------------------------------------------------------------------ [2004-03-30 18:04:28] vardemor at hotmail dot com Description: ------------ I've been trying to call a Win NT executable from a PHP4 script and the result is very strange. The browser hangs, and not finish to show results. If I stop the navigation, nothing appens. The script execute an win app like that: <? //...more code here.. exec("c:\appdir\appname.exe"); //...more code here.. ?> The code after the execution is not show in the browser. The app executes normally, but after the execution the script maybe hangs the browser. PHP was installed like a ISAPI module, not CGI. All help appreciated. Reproduce code: --------------- <? $server_path = "c:\\sites\\mysite\\uploaded\\"; mt_srand((double)microtime()*1000000); $filename_doc = strval(mt_rand(1, intval(1000))) . ".doc"; move_uploaded_file($_FILES['userfile']['tmp_name'], $server_path . $filename_doc); $filename = strval(mt_rand(1, intval(1000))) . ".htm"; $arr = array(); $exe_app = $server_path . "ConvertDoc.exe"; $params = " /S " . $server_path . $filename_doc . " /F9 /T " . $server_path . $filename . " /C4 /M2 /L " . $server_path . "wordlog.log /V"; exec($exe_app . $params, $arr, $return_val); ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=27787&edit=1