Advertisement:

Author Topic: Facebook Login  (Read 39141 times)

beebo

  • Newbie
  • *
  • Posts: 15
Re: Facebook Login
« Reply #15 on: January 28, 2011, 03:30:15 am »
Oh no no of course, like I told you before, I can use my site as a testing site until i get everything done right, so I just wanted to report it. Great thanks!

Kimosabe

  • Newbie
  • *
  • Posts: 9
Re: Facebook Login
« Reply #16 on: May 15, 2011, 05:00:41 pm »
Tried it with the 0.9 available, and i get

Fatal error: Call to undefined function osc_registerplugin() in /home/mypage/public_html/oc-content/plugins/social_connect/index.php on line 366

Its this segment:


Code: [Select]
// This is needed in order to be able to activate the plugin
osc_registerPlugin(__FILE__, 'socialconnect_call_after_install');
// This is a hack to show a Configure link at plugins table (you could also use some other hook to show a custom option panel)
osc_addHook(__FILE__."_configure", 'socialconnect_conf');
// This is a hack to show a Uninstall link at plugins table (you could also use some other hook to show a custom option panel)
osc_addHook(__FILE__."_uninstall", '');

Any ideas?
« Last Edit: May 15, 2011, 05:04:59 pm by Kimosabe »

_CONEJO

  • Administrator
  • Hero Member
  • *****
  • Posts: 4689
Re: Facebook Login
« Reply #17 on: May 16, 2011, 11:05:36 am »
Hi Kimosabe,

Facebook login is NOT compatible with 2.x version of OSClass. Working on a new version, don't worry. It will be released soon.

Thanks

Kimosabe

  • Newbie
  • *
  • Posts: 9
Re: Facebook Login
« Reply #18 on: May 16, 2011, 11:06:25 am »
Hi Kimosabe,

Facebook login is NOT compatible with 2.x version of OSClass. Working on a new version, don't worry. It will be released soon.

Thanks

Thanks!
Btw do you accept donations and where?

Juan Ramón

  • Osclass Developer
  • Hero Member
  • *****
  • Posts: 2382
Re: Facebook Login
« Reply #19 on: May 16, 2011, 12:01:14 pm »
The donate button is on the right sidebar in the blog: http://osclass.org/blog

Juan Ramón

  • Osclass Developer
  • Hero Member
  • *****
  • Posts: 2382
Re: Facebook Login
« Reply #20 on: May 16, 2011, 05:48:12 pm »
Thanks for the donation! :)

Kimosabe

  • Newbie
  • *
  • Posts: 9
Re: Facebook Login
« Reply #21 on: May 16, 2011, 05:50:53 pm »
Thanks for the donation! :)

You welcome (i would like to give more but i am on a reeeeally tight student budget right now ;) )

serjuc11111

  • Hero Member
  • *****
  • Posts: 814
Re: Facebook Login
« Reply #22 on: August 27, 2012, 05:27:31 pm »
Error
An error occurred with Andover Free Ads. Please try again later.

API Error Code: 191
API Error Description: The specified URL is not owned by the application
Error Message: Invalid redirect_uri: Given URL is not permitted by the application configuration.

facebook log in.any ideea?ty

facebook

  • Newbie
  • *
  • Posts: 4
Re: Facebook Login
« Reply #23 on: May 07, 2013, 03:21:54 pm »
any update for this plugin? the last time i checked still not functional.

diveshlalit

  • Guest
Re: Facebook Login
« Reply #24 on: May 07, 2013, 06:53:53 pm »
login fine but when i put image i got error page

<div><a href="' . $osc_facebook->loginUrl() . '"><img src="http://www.domain/images/fb-login-button.png" /></a></div>

diveshlalit

  • Guest
Re: Facebook Login
« Reply #25 on: May 08, 2013, 12:21:55 am »
need facebook login button image

serjuc11111

  • Hero Member
  • *****
  • Posts: 814
Re: Facebook Login
« Reply #26 on: May 08, 2013, 10:16:30 pm »
i got this with latest fb_plugin version...
Fatal error: Call to a member function bootstrap_login() on a non-object in /home/site213/public_html/oc-content/plugins/facebook/OSCFacebook.php on line 117

thx

xlibrio

  • Newbie
  • *
  • Posts: 4
  • Fixing the world
Re: Facebook Login
« Reply #27 on: May 15, 2013, 02:57:55 am »
Dear team of programmers and developers, I wonder if they have a stable version of the plugin in this new version of OSClass, I was working a little in detail from Latin American Spanish translation, but still encounter problems with the connection of the appi facebook to my website. Please'd be happy to help with some fixes. best regards  ;)

kimmyk

  • Newbie
  • *
  • Posts: 39
Re: Facebook Login
« Reply #28 on: June 24, 2013, 01:07:04 am »
Either it is not working, or i am missing some dataflow basics here. I'm getting older so i might not 'get' the FB stuff, but when i press the login with facebook link in our project, i get sent to Facebook, login there as reuested and get sent back. But nothing happens then. Still not logged in at our osclass.

i suppose this is where we should be logged in and what the plugin is for, right?

SlicK

  • Newbie
  • *
  • Posts: 30
Re: Facebook Login
« Reply #29 on: June 24, 2013, 02:40:05 am »
In OSCFacebook.php find this:
Code: [Select]
if( Params::getParam('fbc_login') !== 'true' ) {
                    return self::$facebook;
                }
I'm 90% certain it can be deleted. I couldn't find any other reference to fbc_login anywhere else in all the other OSClass files. So I think this parameter is never posted which makes the condition always execute return self::$facebook; which prevents the plugin from ever getting to the code that creates a new user.

Dunno, maybe when they changed the code they forgot to delete that if statement.
If I'm wrong, somebody correct me.