This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
README.md
LG FirePHP
LG FirePHP is an ExpressionEngine extension that implements the FirePHP debugging framework.
FirePHP enables you to log to your Firebug console using a simple PHP method call. All data is sent via response headers and will not interfere with the content on your page. FirePHP is ideally suited for AJAX development where clean JSON and XML responses are required.
LG FirePHP was written by Leevi Graham, Technical Director of Newcastle based web design and development company Newism.
Requirements
Installation
- Install Firefox
- Install Firebug
- Install FirePHP
- Enable Firebug and the console
- Add your site to the allowed site in the FirePHP (firebug extension) settings.
- Copy
system/extensions/ext.lg_fire_ext.phpto yoursystem/extensionsdirectory - Copy
system/extensions/lg_firephp_extto yoursystem/extensionsdirectory - Copy
system/language/english/lang.lg_firephp_ext.phpto yoursystem/language/englishdirectory - Enable the extension
If enabled correctly you should see some sample FirePHP output in the Firebug console.
For developers
LG FirePHP implements the FirePHP Object Oriented API.
Examples:
FB::log('Log message');
FB::info('Info message');
FB::warn('Warn message');
FB::error('Error message');
Outputs:

There's also
FB::dump("Email data", $email_data);
More information: FirePHP HQ







