system() not working in php using windows server 2003
- by jazzy
hi
i have to extract the cabfile(.cab) on the server.
i am Finding such script which extract cab file but i didn't get it yet.
So now i am try to extract using cabarc.exe.
But i face the problem that when i run command throuw commandline its work fine but when i give same command to system() or exec() function in php it is not work.
code is as follow:
$command = "c:\\exe\\cabarc X c:\\cab\\data.cab c:\\data\\";
if(($output = system($command,$return) != false)
{
echo "$return";
}
it is not working when i use same string in commandline it works fine.
please any body help me to why it not working what to do tomake it work is ther any rights issue.
I had give the execute permission to the site.
thanks