Hello @Seanlionel
This is my config.php file:
return
array(
"base_url" => RURI . "uni_login/authorize",
"providers" => array (
"OpenID" => array (
"enabled" => false
),
"AOL" => array (
"enabled" => false
),
"Yahoo" => array (
"enabled" => false,
"keys" => array ( "id" => "", "secret" => "" )
),
"Google" => array (
"enabled" => false,
"keys" => array ( "id" => "", "secret" => "" )
),
"Facebook" => array (
"enabled" => true,
"keys" => array ( "id" => "99id99", "secret" => "99secret99" )
),
"Twitter" => array (
"enabled" => false,
"keys" => array ( "key" => "", "secret" => "" )
),
"Live" => array (
"enabled" => false,
"keys" => array ( "id" => "", "secret" => "" )
),
"MySpace" => array (
"enabled" => false,
"keys" => array ( "key" => "", "secret" => "" )
),
"LinkedIn" => array (
"enabled" => false,
"keys" => array ( "key" => "", "secret" => "" )
),
"Foursquare" => array (
"enabled" => false,
"keys" => array ( "id" => "", "secret" => "" )
),
),
"debug_mode" => false,
"debug_file" => ""
);
As for the APP, if you don't have codoforum installed in root you need to change the site URL in facebook app to the codoforum path (example.com/codoforum/)
If you're still having problem configuring it manually, restore the original files of hybrid and navigate to:
www.yourdomain.com/sys/Ext/hybrid/install.php
It will run the web configurator for Hybrid, with a form for every provider.
If you still can't solve it, contact via mail at bacchiega.alberto@gmail.com
Hello @Seanlionel
This is my config.php file:
````
return
array(
"base_url" => RURI . "uni_login/authorize",
"providers" => array (
// openid providers
"OpenID" => array (
"enabled" => false
),
"AOL" => array (
"enabled" => false
),
"Yahoo" => array (
"enabled" => false,
"keys" => array ( "id" => "", "secret" => "" )
),
"Google" => array (
"enabled" => false,
"keys" => array ( "id" => "", "secret" => "" )
),
"Facebook" => array (
"enabled" => true,
"keys" => array ( "id" => "99id99", "secret" => "99secret99" )
),
"Twitter" => array (
"enabled" => false,
"keys" => array ( "key" => "", "secret" => "" )
),
// windows live
"Live" => array (
"enabled" => false,
"keys" => array ( "id" => "", "secret" => "" )
),
"MySpace" => array (
"enabled" => false,
"keys" => array ( "key" => "", "secret" => "" )
),
"LinkedIn" => array (
"enabled" => false,
"keys" => array ( "key" => "", "secret" => "" )
),
"Foursquare" => array (
"enabled" => false,
"keys" => array ( "id" => "", "secret" => "" )
),
),
// if you want to enable logging, set 'debug_mode' to true then provide a writable file by the web server on "debug_file"
"debug_mode" => false,
"debug_file" => ""
);
````
As for the APP, if you don't have codoforum installed in root you need to change the site URL in facebook app to the codoforum path (example.com/codoforum/)
If you're still having problem configuring it manually, restore the original files of hybrid and navigate to:
www.yourdomain.com/sys/Ext/hybrid/install.php
It will run the web configurator for Hybrid, with a form for every provider.
If you still can't solve it, contact via mail at bacchiega.alberto@gmail.com
edited Nov 15 '14 at 1:13 am