View Single Post
Pythong
SourceMod Donor
Join Date: Dec 2008
Old 12-06-2013 , 10:43   Re: [ANY] Player Analytics
Reply With Quote #21

FYI I got some errors from the dev. web panel.

For starts, i'm running PH 5.3.10

The config.php had to be edited to include quotes or i received errors
<?php
define('PA_DATABASE_SERVER', 'localhost');
define('PA_DATABASE_USER', 'user');
define('PA_DATABASE_PASSWORD', 'password');
define('PA_DATABASE_NAME', 'player_analytics');
?>

And on the main page i'm getting:
Quote:
Notice: Undefined property: UserSessions::$mTimeAvg in /path/to/data/users.php on line 44


EDIT: I had to add at line 25:
Quote:
private $mTimeAvg;
That fixed the error above.

Last edited by Pythong; 12-06-2013 at 10:58.
Pythong is offline