PHP exec() call never runs

I believe this is a permissions issue, but not sure how to fix it.I have a php script -- mainscript.php -- that calls:\[code\]$scriptCall = "/usr/bin/php wrap_prep.php 2>&1 &";\[/code\]When running mainscript.php, the wrap_prep.php never executes. However, when I log into my webserver as root and run \[code\]php wrap_prep.php 2>&1 &\[/code\] it works fine.I have set both scripts to owner and group to my apache user as well as 755 permissions. I recently recompiled PHP to add a library (not sure if this has anything to do with the new issue).
 
Back
Top