Is there any specific settings in php.ini
that I need to change to allow the server to include the file?
require_once dirname(dirname(__FILE__)).'/unleashapi/protected/extensions/goutte.phar';
You can set in php.ini
auto_prepend_file
:
auto_prepend_file="/custom/path/unleashapi/protected/extensions/goutte.phar"
make sure Apache has access to that file.