Can you show the config file that you edited for the unilogin ?
<?php
return
array(
"base_url" => "http://join.yac.org.in/uni_login/authorize",
"providers" => array (
"OpenID" => array (
"enabled" => true
),
"Yahoo" => array (
"enabled" => true,
"keys" => array ( "key" => "", "secret" => "" ),
),
"AOL" => array (
"enabled" => true
),
"Google" => array (
"enabled" => true,
"keys" => array ( "id" => "567278044754-djc081h25om2pbe0npv7406ote31ul32.apps.googleusercontent.com", "secret" => "NUlZAgDoE4qY6hqrqIBDb5jR" ),
),
"Facebook" => array (
"enabled" => true,
"keys" => array ( "id" => "1100234456689441", "secret" => "f1eae22cf990bab991a5504ae5efe550" ),
"trustForwarded" => false
),
"Twitter" => array (
"enabled" => true,
"keys" => array ( "key" => "xAOiqB022oW4wOQmKXGBeHGHd", "secret" => "opZPGACefy8Fss8eU1ge2mcK415mquNzyMCn6WMsNJmpMyrhs0" )
),
"Live" => array (
"enabled" => true,
"keys" => array ( "id" => "", "secret" => "" )
),
"LinkedIn" => array (
"enabled" => true,
"keys" => array ( "key" => "", "secret" => "" )
),
"Foursquare" => array (
"enabled" => true,
"keys" => array ( "id" => "", "secret" => "" )
),
),
"debug_mode" => false,
"debug_file" => "/hybridauth.log",
);
>Can you show the config file that you edited for the unilogin ?
````
<?php
/**
* HybridAuth
* http://hybridauth.sourceforge.net | http://github.com/hybridauth/hybridauth
* (c) 2009-2015, HybridAuth authors | http://hybridauth.sourceforge.net/licenses.html
*/
// ----------------------------------------------------------------------------------------
// HybridAuth Config file: http://hybridauth.sourceforge.net/userguide/Configuration.html
// ----------------------------------------------------------------------------------------
return
array(
"base_url" => "http://join.yac.org.in/uni_login/authorize",
"providers" => array (
// openid providers
"OpenID" => array (
"enabled" => true
),
"Yahoo" => array (
"enabled" => true,
"keys" => array ( "key" => "", "secret" => "" ),
),
"AOL" => array (
"enabled" => true
),
"Google" => array (
"enabled" => true,
"keys" => array ( "id" => "567278044754-djc081h25om2pbe0npv7406ote31ul32.apps.googleusercontent.com", "secret" => "NUlZAgDoE4qY6hqrqIBDb5jR" ),
),
"Facebook" => array (
"enabled" => true,
"keys" => array ( "id" => "1100234456689441", "secret" => "f1eae22cf990bab991a5504ae5efe550" ),
"trustForwarded" => false
),
"Twitter" => array (
"enabled" => true,
"keys" => array ( "key" => "xAOiqB022oW4wOQmKXGBeHGHd", "secret" => "opZPGACefy8Fss8eU1ge2mcK415mquNzyMCn6WMsNJmpMyrhs0" )
),
// windows live
"Live" => array (
"enabled" => true,
"keys" => array ( "id" => "", "secret" => "" )
),
"LinkedIn" => array (
"enabled" => true,
"keys" => array ( "key" => "", "secret" => "" )
),
"Foursquare" => array (
"enabled" => true,
"keys" => array ( "id" => "", "secret" => "" )
),
),
// If you want to enable logging, set 'debug_mode' to true.
// You can also set it to
// - "error" To log only error messages. Useful in production
// - "info" To log info and error messages (ignore debug messages)
"debug_mode" => false,
// Path to file writable by the web server. Required if 'debug_mode' is not false
"debug_file" => "/hybridauth.log",
);
````