CodeIgniter + nginx : Facebook application

This is a basic tutorial on how to get CodeIgniter facebook application on nginx (with the gotchas). The nginx configuration would be like the following server { listen 80; server_name blah.com; location ~ /index.php/ { root /home/production/blah; index index.html index.htm index.php; include conf/fcgi.conf; fastcgi_param SCRIPT_FILENAME /home/production/fb_apps/quickdate/index.php; fastcgi_pass 127.0.0.1:9000; } access_log /usr/local/nginx/logs/blah.access_log; error_log /usr/local/nginx/logs/blah.error_log; } The critical line is the fastcgi_params parameter, that changes the whole game. In the code Igniter application you need to add the following file in [app]/system/application/libraries/FB_controller....

November 19, 2008 · 1 min · 202 words · Me

Kwippy facebook application

Hello all kwippers and people who want to archive their status application, we just released an application which lets you do just that and more if you are integrate the application with kwippy. here is the link http://www.new.facebook.com/apps/application.php?id=6806564434 We need more people ;) , feel free to invite your friends too ….

August 13, 2008 · 1 min · 52 words · Me