php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #27787 browser hangs with exec()
Submitted: 2004-03-30 18:04 UTC Modified: 2004-04-07 10:58 UTC
Votes:2
Avg. Score:4.0 ± 1.0
Reproduced:2 of 2 (100.0%)
Same Version:0 (0.0%)
Same OS:0 (0.0%)
From: vardemor at hotmail dot com Assigned:
Status: No Feedback Package: Program Execution
PHP Version: 4.3.5 OS: windows 2000 professional/server
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
40 + 28 = ?
Subscribe to this entry?

 
 [2004-03-30 18:04 UTC] 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); 


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2004-04-07 10:58 UTC] sniper@php.net
No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Open". Thank you.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Wed Apr 24 22:01:30 2024 UTC