webtechnick / CakePHP-Facebook-Plugin

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

Fatal error: class 'Facebook' not found in ... f_b.php on line 21 - under linux os #106

Closed davo3 closed 11 years ago

davo3 commented 11 years ago

I am using cakephp 1.3, plugin works just fine on my localost(windows os) , but when I tested it on linux, it gave this error Fatal error: class 'Facebook' not found in /var/www/website/app/plugins/facebook/libs/f_b.php on line 21 I guess it's because it can not import Vendor, in f_b.php line 10 App::import('Vendor', 'Facebook.facebook/src/facebook');

davo3 commented 11 years ago

It's funny, after couple of hour searching and trying I got it, in 'plugins/facebook/libs' folder line 10 App::import('Vendor', 'Facebook.facebook/src/facebook'); should be replaced by 'App::import('Vendor', 'Facebook.Facebook', array('file' => 'facebook/src/Facebook.php' ));'