12-07-2016, 05:49 AM
Not sure if it was just me, but the Google instructions were spot on, but the Facebook instructions were only half right. Also, in /users/fb-callback.php on line 16, i had to change:
to
As it was creating an error stating it couldn't find the file. Same thing for /users/includes/facebook_oauth.php on line 51
to
Code:
require_once("/src/Facebook/autoload.php");
to
Code:
require_once("src/Facebook/autoload.php");
As it was creating an error stating it couldn't find the file. Same thing for /users/includes/facebook_oauth.php on line 51
Code:
require_once("/src/Facebook/autoload.php");
to
Code:
require_once("src/Facebook/autoload.php");