webtechnick / CakePHP-Facebook-Plugin

CakePHP Facebook Plugin
http://facebook.webtechnick.com
445 stars 138 forks source link

save same user for every hit #83

Closed milinaudara closed 12 years ago

milinaudara commented 12 years ago

I am using cakephp 2.2 and this plugn but it save the loged user every time(every hit) and logout button do not display

webtechnick commented 12 years ago

Make sure your facebook_id is a bigint(22) in your database, otherwise it gets saved as the INT(11) cap which isn't the actual facebook_id. As such the plugin can't find the facebook_id in your database (since its the int cap) and tries to create another one, to which your database turns the bigint into the int resulting in the same issue.

milinaudara commented 12 years ago

Thank u very much. This plugin is awesome