CakePHP-Facebook-Plugin icon indicating copy to clipboard operation
CakePHP-Facebook-Plugin copied to clipboard

CakePHP Facebook Plugin

Results 67 CakePHP-Facebook-Plugin issues
Sort by recently updated
recently updated
newest added

Corrected continuous session behavior when multiple users on the same browser logged in and out. New user where keeping the session of the previous logged in user because behavior was...

Hi, I want the users to logout from the app, without needing to logout from Facebook first. In another way, in doesn't matter if the user is logged on Facebook,...

Calls to FB::api() seem to time out after 5 minutes. For example, when I leave a page with FB login open for 5 minutes or more, the function will not...

On the Readme.md said: ALTER TABLE `users` ADD `facebook_id` BIGINT(20) UNSIGNED NOT NULL The problem is that when you update the schema to get into account the new field it...

On ConnectComponent, add User->exists validation: if ($this->User->exists()) { if (!$this->User->field('facebook_id')) { $this->User->saveField('facebook_id', $this->uid); } } It avoids exceptions in case the user has been deleted from DB but still authenticated...

Hi, as we are not using the Auth mechanism of CakePHP, could you plz assist me on which changes are required to the plugin so that it works with custom...

Please see my explanation here: http://stackoverflow.com/questions/18750084/fb-connect-cake-auth-signup-and-login-issues. Thnx

I'd like to be able to get a Facebook user's information within the beforeRender method and the only way I've been able to do this is using the following method....

I'm testing out this plugin with an existing app. Situation: - user has authorized the FB app - does not have any domain cookies set The first time a page...

the issue is different in different browsers, this is in google chrome as a work around to logout, I am doing $this->Session->destroy(); in users logout and redirecting Facebook helper's logout...