Hi All,
I'm trying to do a "simple" GPG Encryption call. It's very difficult to debug as there are no error outputs to work off of.
I'm executing the following PHP code:
passthru("gpg --always-trust -q --no-secmem-warning -aer pgptransactions@merchantrust.com test.txt");
system("gpg --always-trust -q --no-secmem-warning -aer pgptransactions@merchantrust.com test.txt");
shell_exec("gpg --always-trust -q --no-secmem-warning -aer pgptransactions@merchantrust.com test.txt");
exec("gpg --always-trust -q --no-secmem-warning -aer pgptransactions@merchantrust.com test.txt");
You'll notice the 4 lines are pretty much similar, just using the different command line call functions.
I get NO output to work with. It's not working because I don't see any files generated! Please help!