|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2001-09-10 04:02 UTC] vcaron at aplon dot org
i use easy php 1.5 and when i try to execute this code
<? exec("pkunzip -o *.zip"); ?>, i obtain
Warning: Unable to fork [cd ftp] in c:\program files\easyphp\www\toto.php on line ..
this code worked with easy php 1.5 ( php 4.0.5 ).
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 09:00:01 2025 UTC |
i've found a workaround by using a .bat file i've create a file called "lirezip.bat" where i put the following code @pkunzip -o *.zip @del *.zip and inside a php script i wrote exec("lirezip.bat") and everything worked fine