Writing a simple Facebook application with the CodeIgniter PHP framework (Toby Beresford)
From PHP London wiki
(Redirected from Writing a simple Facebook application with the CodeIgniter PHP framework)
This talk was given by Toby Beresford on October 4th 2007
Contents |
[edit] Resources
[edit] Links
- Code Igniter Facebook skeleton ZIP archive (372 KB)
- Toby Beresford
- Facebook Developers portal
- Facebook Developers application
- Facebook Developer Garage London group page on Facebook
[edit] Notes
Bug in skeleton zip: configs are already in config.php instead of application_config.php. But the class still try to include application_config.php.
[edit] Skeleton Patches
- Change line 81 of config/autoload.php from:
$autoload['config'] = array('application_config');
to
$autoload['config'] = array();
- Change line 44 of config/config.php from:
$config['uri_protocol'] = "ORIG_PATH_INFO"
to
$config['uri_protocol'] = "AUTO"

