Requirements : The only requirements need for this program is MySQL and PHP
Install :
- 1. First decompress your file into it's default location.
(C:\LiveStats_1.0)
- 2. Find and Edit connect.inc to your server's requirement. After editing connect.inc.php than either upload db.sql or create the tables and fields yourself. Structure of them can be found in sql/db.sql - If you have any trouble with MySQL, check out PhpMyAdmin.
CREATE TABLE webstats (
id int(11) NOT NULL auto_increment,
browser varchar(255) NOT NULL default '',
ip varchar(15) NOT NULL default '',
received date NOT NULL default '0000-00-00',
PRIMARY KEY (id)
) TYPE=MyISAM;
- 3. Then Upload it's contents onto the root of your html server.
(http://www.yourdomain.com/~right-here)
- 4. Insert include ('livestats/livestats_counter.php'); ?>
Insert that text code and any document you want LiveStats to count. But remember all web files that want tracked, LiveStats must be in the directory to do so.
- 5. Visit http://www.yourdomain.com/~right-here and your all set
|