Hi,
This is how our config.php looks [current forum]
<?php
return
array(
"base_url" => RURI . "uni_login/authorize",
"providers" => array (
"OpenID" => array (
"enabled" => true
),
"AOL" => array (
"enabled" => true
),
"Yahoo" => array (
"enabled" => true,
"keys" => array ( "id" => "", "secret" => "" )
),
"Google" => array (
"enabled" => true,
"keys" => array("id" => "918849199311-hpcbss880md4ghttbnarpvdmabcfo68q.apps.googleusercontent.com", "secret" => "SOMEHIDDENSECRET")
),
"Facebook" => array (
"enabled" => true,
"keys" => array ( "id" => "", "secret" => "" )
),
"Twitter" => array (
"enabled" => true,
"keys" => array ( "key" => "", "secret" => "" )
),
"Live" => array (
"enabled" => true,
"keys" => array ( "id" => "", "secret" => "" )
),
"MySpace" => array (
"enabled" => true,
"keys" => array ( "key" => "", "secret" => "" )
),
"LinkedIn" => array (
"enabled" => true,
"keys" => array ( "key" => "", "secret" => "" )
),
"Foursquare" => array (
"enabled" => true,
"keys" => array ( "id" => "", "secret" => "" )
),
),
"debug_mode" => false,
"debug_file" => ""
);
Hi,
This is how our config.php looks [current forum]
```
&lt;?php
#AUTOGENERATED BY HYBRIDAUTH 2.1.2 INSTALLER - Sunday 2nd of February 2014 12:26:10 PM
/*!
* HybridAuth
* http://hybridauth.sourceforge.net | http://github.com/hybridauth/hybridauth
* (c) 2009-2012, HybridAuth authors | http://hybridauth.sourceforge.net/licenses.html
*/
// ----------------------------------------------------------------------------------------
// HybridAuth Config file: http://hybridauth.sourceforge.net/userguide/Configuration.html
// ----------------------------------------------------------------------------------------
return
array(
"base_url" =&gt; RURI . "uni_login/authorize",
"providers" =&gt; array (
// openid providers
"OpenID" =&gt; array (
"enabled" =&gt; true
),
"AOL" =&gt; array (
"enabled" =&gt; true
),
"Yahoo" =&gt; array (
"enabled" =&gt; true,
"keys" =&gt; array ( "id" =&gt; "", "secret" =&gt; "" )
),
"Google" =&gt; array (
"enabled" =&gt; true,
"keys" =&gt; array("id" =&gt; "918849199311-hpcbss880md4ghttbnarpvdmabcfo68q.apps.googleusercontent.com", "secret" =&gt; "SOMEHIDDENSECRET")
),
"Facebook" =&gt; array (
"enabled" =&gt; true,
"keys" =&gt; array ( "id" =&gt; "", "secret" =&gt; "" )
),
"Twitter" =&gt; array (
"enabled" =&gt; true,
"keys" =&gt; array ( "key" =&gt; "", "secret" =&gt; "" )
),
// windows live
"Live" =&gt; array (
"enabled" =&gt; true,
"keys" =&gt; array ( "id" =&gt; "", "secret" =&gt; "" )
),
"MySpace" =&gt; array (
"enabled" =&gt; true,
"keys" =&gt; array ( "key" =&gt; "", "secret" =&gt; "" )
),
"LinkedIn" =&gt; array (
"enabled" =&gt; true,
"keys" =&gt; array ( "key" =&gt; "", "secret" =&gt; "" )
),
"Foursquare" =&gt; array (
"enabled" =&gt; true,
"keys" =&gt; array ( "id" =&gt; "", "secret" =&gt; "" )
),
),
// 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" =&gt; false,
"debug_file" =&gt; ""
);
```