 |
Online
Aktuell 10 Gäste und 0 registrierte Benutzer online.
Anmeldung
|
|
 |
FAQ
:: What is the reason that new records are not displayed? ::
(6447 Aufrufe)
Verfasst von
therget
am Montag, 15. August 2005, 20:46 Uhr
|
Currently we know one circumstance why phpLogCon does not show all/new data:
The time used in phpLogCon is by default set to UTC-time. For example, New York, USA is 5 hours behind UTC. So if you log data to your database at 1pm in New York, the UTC time is 6pm. phpLogCon's timefilter "today" takes all data since the begin of the day (12am) until now (in our sample its 1pm). But the UTC time format of the logged data is 6pm, so it wont be displayed yet. To fix this, open up the config.php, search for:
// Use UTC time
define('_UTCtime', 1);
and replace it with (or change it to):
// Use UTC time
define('_UTCtime', 0);
Now phpLogCon uses local time and your data should be displayed now.
|
|
|
|
|