chroot is like a jailshell
these are linux/unix terms related to forcing security settings
if you are chroot'ed, that means your working area (in this case command-execution environment, akin to a DOS window) is restricted to only have access to the files/folders specified.
In your case, it appears that when PHP is granted exec() access, it's being chroot'ed to a path that doesn't have access/permission to the "required" binaries.
It would seem that your host has changed their PHP security restrictions since you last ran the program.



