I\'m trying to \"faux-fork\" a process (an email being sent via SMTP) in my web application, and the application is built on Kohana.
$command = \'test/emai
I had a similar issue
Did you or anyone add the SERVER_NAME to the index.php file?
SERVER_NAME
index.php
If so either remove the code outside the index.php (and or bootstrap) OR you can wrap it it in a
if (PHP_SAPI === 'cli') { // ... } else { //.... }