Not sure if this qualifies as 'beginner', but I certainly do.
I'm trying to install the latest Google AdWords API onto a Phalcon/Ubuntu AWS server. I walked through the instructions, but got nowhere.
I think I'm doing something really wrong. I used Composer, but I'm not sure I launched it in the right directory, and I'm not sure I know how to install it 'right'.
Right now, I put the google files under app/library/googleads-php-lib. But I just get a failed webpage when I try to run a controller that uses the files. The "use Google\AdsApi\AdWords\AdWordsServices;" etc statements cause it to fail to load the page, even if I put a die() right after them. I setup debug with:
error_reporting(E_ALL);
$debug = new \Phalcon\Debug();
$debug->listen();
And I got some file not found messages, but fileexists returns true for the files if I put that in there?