Facebook Connect (Graph API) in cake php

We have 0 comments on this post.

To implement Facebook  connect using graph API  you need to follow the steps 1) Extract the  facebook_core_files.zip file and put all of them in vendors folder of cake php 2)  In your apps controller include this code at the top of the file App::import(‘Vendor’, ‘facebook’, array(‘file’ => ‘facebook.php’)); 3)  in your apps controller  add this [...]

 

Cakephp not working on Ubuntu – Error 404 not found

We have 0 comments on this post.

If you are facing problems with Cakephp not working on Ubuntu after all googling and doing all other things, please try this one: Open Places->Computer->File System->etc->apache2->sites-available In this folder open file name ‘default‘ In this file search for <Directory /var/www/> Options Indexes FollowSymLinks MultiViews AllowOverride none Order allow,deny allow from all </Directory> and replace it [...]

 

Cakephp – Logable behaviour

We have 0 comments on this post.

This behavior is created to easily let you (the developer) log users activities that relates to database modifications (ie, add, edit and delete). If you just want to see what your users are doing or need to be able to say “That is not a bug, I can see from my log that you deleted the post yesterday.” and don’t want to spend more time that it takes to do “var $actsAs = array(‘Logable’);” then this behavior is for you.

Tags: , , , ,

bottombar