I believe this is a permissions issue, but not sure how to fix it.
I have a php script -- mainscript.php -- that calls:
$scriptCall = "/usr/bin/php wrap_prep.php 2>&1 &";
When running mainscript.php, the wrap_prep.php never executes. However, when I log into my webserver as root and run php wrap_prep.php 2>&1 &
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).
Thanks for any insight.
D