Recommend this page to a friend! |
Download .zip |
Info | View files (6) | Download .zip | Reputation | Support forum | Blog | Links |
Last Updated | Ratings | Unique User Downloads | Download Rankings | |||||
2003-04-29 (13 years ago) | Not enough user ratings | Total: 1,731 This week: 2 | All time: 2,193 This week: 591 |
Version | License | Categories | ||||
dlog 1.0 | GNU Lesser Genera... | Logging |
Description | Author | |||||||||||||
Simple logging class that allows to log the events calling the class directly or as an error handler. For each error type, you may specify how to log the information. |
|
DLog version 1.0 Description: ---------------------- Simple logging class. It allow to log the event calling it directly or as an error handler. For each error type, you may specify how to log the information. The class may: - send an e-mail - write a logging file - register into database (Mysql or MSSql supported, but you may want to extend the class to support other database) - display the error or the message - do nothing... you may set to take no action in some situation. Installation: ---------------------- PHP => 4.3.0 - I've test the class using PHP 4.3.0 and PHP 4.3.1. I think the class should work with PHP 4.2.x, except the function 'register_error_handler'; Configure the [mail function] section in php.ini if you plan to send the e-mail If you plan to log the event into some database, define a table as follow (example taken from Mysql): CREATE TABLE dlog ( id int(10) unsigned NOT NULL auto_increment, DEvent varchar(14) DEFAULT '0' , Errno int(3) DEFAULT '0' , Text varchar(250) DEFAULT '0' , FileName varchar(250) DEFAULT '0' , Line int(3) DEFAULT '0' , RemAddr varchar(20) NOT NULL DEFAULT '' , Browser varchar(100) NOT NULL DEFAULT '' , PRIMARY KEY (id) ); That's all. I hope it be useful. Darvin (darvina at libero dot it) |
Files |
File | Role | Description |
---|---|---|
dlog.php | Class | Main class source |
dlog_cfg.inc | Conf. | Class configuration |
dlog_mssql.php | Class | MSSQL extensions |
dlog_test.php | Example | Example of use |
dlog_test2.php | Example | Another example |
readme.txt | Doc. | Documentation |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
0% |
|
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.