Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
CakePHP is a rapid development framework for PHP that provides an extensible architecture for developing, maintaining, and deploying applications. It uses commonly known design patterns like MVC and ORM within the convention over configuration paradigm.
0
votes
0answers
97 views
redirect_uri facebook auth doesn't return to right URI cakephp
This is a example of Facebook Login on my system:
https://www.facebook.com/login.php?api_key=551996844837880 &
skip_api_login=1 &
display=page &
cancel_url=http://my_current_page
...
-2
votes
0answers
33 views
cakephp share article on facebook & database [closed]
I have cakephp application,I have form to add new article I'd like to make check box on the form to enable share the article on facebook page not wall on the same time the article insert data into ...
2
votes
1answer
47 views
Facebook API & CakePHP
I'm integrating the Facebook API (PHP-SDK) with CakePHP and I know that there exist a few integrations already but I'm stubborn enough to do this on my own. My question is, providing the fact that I ...
0
votes
1answer
70 views
Not able to get facebook user details using Cakephp
I am trying to intergrate facebook connect webtechnick plugin with my Cakephp application.
My login and logout is working, but i am not able to get the facebook user details like username, ...
0
votes
0answers
45 views
My component conflicts with Auth component
I decided to handle the Facebook functionality into a component I wrote the following code to start my own Facebook component:
<?php
class FacebookComponent extends Object{
var $name = ...
0
votes
1answer
127 views
CakePHP 2.3.1 Facebook authentication
I'm using CakePHP 2.3.1 and this plugin: https://github.com/webtechnick/CakePHP-Facebook-Plugin to implement a facebook authentication. I followed this screen cast ...
-4
votes
1answer
129 views
how to show user facebook profile pic on my website [closed]
<?php
//create the url
$profile_pic = "http://graph.facebook.com/USER_ID/picture?type=SIZE";
//echo the image out
echo "<img src=\"" . $profile_pic . "\" />";
0
votes
0answers
54 views
How do I create HTTPS page for CakePHP?
I don't really understand the differences between HTTP and HTTPS except that HTTTPS encrypts the data transmission (I think, correct me if I am wrong). Now, I am about to get my Facebook Page Tab up ...
0
votes
0answers
67 views
Facebook CakePHP canvas app F5 refresh
In Facebook only the app url is shown in address bar, e.g. apps.facebook.com/myapp/. Even when you are actually on e.g. apps.facebook.com/myapp/users/edit/.
When refreshing page with F5, it will then ...
2
votes
3answers
446 views
Logging a Facebook user into CakePHP app if authenticated and user exists in DB
I have built a very simple CakePHP application to test out a possible implementation of the Facebook PHP SDK whereby users can signup either using the app or Facebook and can also login using the app ...
-1
votes
1answer
142 views
cakephp facebook api now working
i am trying to do facebook login in cakephp. I am able to login successfully but cant retrieve user info. I am using the facebook plugin from the following link:
...
0
votes
0answers
96 views
cakephp:facebook plugin - logout button displayed on page refresh
i am using facebook plugin for cakephp and am following the below link:
https://github.com/webtechnick/CakePHP-Facebook-Plugin
and
...
0
votes
0answers
98 views
Facebook OAuth working locally, but not from production
I just got back on a 8 month old project which used Facebook Connect. Everything worked fine at the time. I put my app in production again a few days ago and I'm stuck with this facebook OAuth error : ...
0
votes
2answers
92 views
cakephp facebook component include paths on linux
I have a website on cakephp 1.3, with facebook integration. On my localhost(with windows os) it works fine, but on real hosting(with linux os) it gives this error Fatal error: Class 'Facebook' not ...
2
votes
1answer
562 views
cakephp facebook api, FB->api('/me') returns empty value
I use Webtechnick Facebook plugin for cakephp 1.3 website. I implemented it about a year ago. And it worked fine until now. But today I found out that when I try to login(as a new user) it does not ...
0
votes
0answers
46 views
Facebook API for SSO
This may have been asked already but after an hour or two of searching I haven't found anything so I thought I would give it a try here.
I'm trying to use Facebook again (I did once with the old, ...
0
votes
2answers
650 views
How to clear cache in Controller CakePHP 2.x?
I am working a properties website where user creates the listing and later to save it, we ask him to connect via Facebook. Currently it is working nice but, when I create another property (say a User ...
0
votes
0answers
123 views
error 310 cakephp facebook
am trying to integrate facebook login with my Auth component but end up with a error 310
//appcontroller
if(!$this->Auth->user('id')){
if($this->facebook->getUser()){
...
0
votes
0answers
112 views
How can I use WebTechNick's facebook plugin for CakePHP on a facebook canvas app?
I've been successfully using WebTechNick's facebook plugin for Cakephp for my webapp.
... But now, I want to make a facebook canvas app for the same webapp. When I set the canvas page to my webapp ...
0
votes
1answer
341 views
PHP SDK for Facebook: Uploading an Image for an Event created using the Graph API
Can anyone shed some light on my problem?
<?php
$config = array();
$config['appId'] = "foo";
$config['secret'] = "bar";
$config['cookie'] = true;
$config['fileUpload'] = true;
$facebook = new ...
0
votes
1answer
305 views
How to set uploaded photo as profile picture
I've been trying this for the past few days but it seems I'm missing something: Well, I'm able to upload a photo to a users profile with the following code (I'm using cakephp with Nick Baker's ...
3
votes
1answer
531 views
Oauth authentication facebook - cakePHP plugin
I am confused with this plugin.
Just copy-paste the demo, but I am getting this error when i am trying to connect with facebook:
The page isn't redirecting properly
Firefox has detected that the ...
0
votes
2answers
110 views
CakePHP model association like “Facebook Likes”
I try to do something that is best described like Facebooks "Like" with CakePHP.
I have four tables: Users, Likes, Posts and Pictures. A user can like an post or an picture and I try to have only one ...
0
votes
2answers
516 views
Facebook Logout not working(session always recreated). CakePHP + Facebook plugin
So, I've been at this for a while now, went through a bunch of different questions, and still no solution.
If I log in regularly, all is fine, I can logout as expected. But, if I login with facebook ...
0
votes
0answers
302 views
CakePHP, Facebook, and Safari - 3rd Party Cookies and the Security Component
I am using CakePHP with the Security Component turned on.
Here is my Controller
<?php
class PagesController extends AppController {
public $helpers = array('Html','Form');
public ...
1
vote
1answer
227 views
CakePHP and Facebook with Security Component turned on
I want the Security Component turned on.
BUT when you load a CakePHP app inside a Facebook tab, FB posts $_REQUEST['signed_request'] to my form - the problem with this is that the Security Component ...
0
votes
2answers
193 views
function css() on a non-object
I have encountered an error with my development. Trying to do Facebook Authentication basics on CakePHP and doing the debug activity and stumbledupon this error, which i cannot fix for now. Maybe ...
-1
votes
1answer
122 views
How to change from localhost to localhost.local in wamp?
I'm using cakephp 2.1 and WAMP for one of my app which is making use of Facebook Connect plugin. Getting an error saying
An error occurred. Please try later
Googled and found this
...
0
votes
1answer
95 views
How to set image, description and title for like, comment, send in cakephp facebook plugin?
I’m using webtechnick cakephp facebook plugin. I want to set image description and title for like send and comments. There are many like and send in one page. Current site get same title(what in the ...
0
votes
0answers
843 views
Facebook getUser() always returns 0 [duplicate]
I have develop a simple method of my class that does the Facebook login, this is the code:
public function auth()
{
$config = array(
'appId' => Configure::read('FB.id'),
...
0
votes
1answer
151 views
ISP causing Facebook Access denied 403
I am using Facebook Auth on my local computer and it had been working fine until this morning. I can't figure out why I get an access denied when connecting.
http://facebook.com/en_US/all.js
Here is ...
-1
votes
1answer
234 views
How to setup facebook-php-sdk3 in cakephp-2.0?
I need the info about any complete tutorial about how to setup facebook-php-sdk3 in cakephp-2.0. If you have any please help me out of this. I've searched and found some plugins but with incomplete ...
1
vote
1answer
630 views
How to implement logout with facebook connect in cakephp while preserving facebook login?
how do you logout the user from your site in facebook api, while still keeping the user logged into facebook with cakephp? (I found the answer so wanted to share with everyone).
1
vote
1answer
303 views
facebook cakephp plugin issues
I am using the following:
cakephp 1.3
CakePHP-Facebook-Plugin 3.1.1 (branch cakephp 1.3)(webtechnick)
php 5.3.x
My problem is on line 146 of the following:
...
0
votes
1answer
120 views
creating facebook canvas app with cakephp
I'd like to create a Facebook canvas app with CakePhP 2.0. All the tutorials I've found seem to be out of date. Could anyone tell me how I can integrate facebook-php sdk into cakephp 2.0 ?
Any help ...
0
votes
1answer
282 views
Post values to cakePHP controller action and display it
I am using Facebook Javascript API for Facebook authentication and implementing other Facebook features, in a cake PHP based site. Now I am using API for fetching the Facebook friends and I need to do ...
1
vote
1answer
884 views
Cakephp Facebook Plugin - Sharing through an action
I am using Nick Baker's (webtechnick) CakePHP / Facebook plugin which is awesome and works great, however I have a question that I can't seem to even come close to answer for.
How would I bypass the ...
2
votes
2answers
678 views
Logout url in Facebook PHP SDK not working correct
I am trying to connect cake php with Facebook PHP SDK
In App_Controller beforeFilter function
$facebook = new Facebook(array(
'appId' => Configure::read("FB_APP_ID"),
'secret' ...
3
votes
1answer
550 views
Webtechnick CakePHP-Facebook-Plugin have to request twice to recognize logged user
i am using the CakePHP-Facebook-Plugin from webtechnick (https://github.com/webtechnick/CakePHP-Facebook-Plugin/) and i am having some trouble with recognizing if the user is already logged in on ...
0
votes
1answer
335 views
how to save users data though with cakephp v2.0 and webtechnich facebook plugin?
Im very new to cake and the plugin (facebook plugin from webtechnick).
what is the best way (easy, effective) to save the user data (facebook_id, token, etc), when (or after?) users logging in?
I ...
3
votes
2answers
385 views
conflicting between cakephp auth login function and facebook sdk
I'm beginner in cakephp and I'm trying to use the Facebook php sdk
but i get conflict between cakephp auth login function and facebook sdk calling
$facebook = new Facebook(array(
'appId' => ...
1
vote
1answer
868 views
Cakephp and Facebook authentication: Prevent to login automatically if users login facebook in browser
I am using WebTechNicks Facebook plugin for Cakephp.
This is my AppController
class AppController extends Controller {
var $helpers = array('Html', 'Form', 'Time', 'Number', ...
0
votes
1answer
774 views
Cakephp: variable data in appController is not consistent in Xcontroller child
I am using the Cakephp (2.X) framework.
I have created a facebook canvas app. I have my facebook object as a variable in appController. I instantiate it in the constructor. In my usersController I ...
1
vote
4answers
1k views
CakePHP facebook integration logout issue with CakePHP-Facebook-Plugin
I'm looking for a way with the CakePHP-Facebook-Plugin log users out of my app, but not log them out of their own facebook.
If I call my apps logout() function no matter what I do I just keep getting ...
0
votes
1answer
275 views
CakePHP 1.3: Video Plugin
I am trying to develop a small section in my site, where I can post videos to the site. At this point instead of worrying about uploads and processing every video that I upload, I wanted to opt for ...
1
vote
2answers
2k views
facebook php sdk server An error occurred. Please try again later
I'm asking you for help, because I can't understand what I'm doing wrong. I was trying to make secondary user authentication by Facebook for my application.
I had done everything according to this ...
0
votes
1answer
187 views
facebook connect pluggin in cakephp
I am using "webtechnick CakePHP-Facebook-Plugin" for my site for login and authentication. My site is in cakephp. I have placed the plugin in proper folder as guided in the video. But when I am ...
-1
votes
1answer
227 views
FB needs to reload couple times after login
I am using Cakephp Facebook Plugin and so far it all works except for the fact that I need to reload my page once or twice before the user is acutally logged in...
I checked the refresh part of the ...
1
vote
1answer
427 views
cakephp / webtechnick's : share button hides like button and comments
my issue might look a strange a little bit.
i'm working on a cakephp website in which i want to integrate facebook comments, like, and share functions. i'm using for that Webtechnick's Facebook ...
0
votes
1answer
403 views
How to integrate Facebook's OAuth 2.0 in CakePHP1.3?
How can I use Facebook's latest OAuth 2.0 API in CakePHP?

