Writing a simple Facebook application with the CodeIgniter PHP framework (Toby Beresford)

From PHP London wiki

Jump to: navigation, search

This talk was given by Toby Beresford on October 4th 2007

Contents

[edit] Resources

[edit] Links


[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"

Personal tools