Quote:
Originally Posted by nickels376
Are you sure you manually ran this query on your database?
Code:
INSERT INTO datastore (title, data) VALUES ('todaymaxonline', 'a:2:{s:14:\"todaymaxonline\";i:1;s:18:\"todaymaxonlinedate\";i:1070000000;}')
If you didn't, it won't store it.
-Dom
|
Here's the output from my database. "240" is the number of visitors today. So it's going in the database, but not being retained overnight.
mysql> select * from datastore where title like '%online%';
+----------------+----------------------------------------------------------------------------+
| title | data |
+----------------+----------------------------------------------------------------------------+
| todaymaxonline | a:2:{s:14:"todaymaxonline";i:240;s:18:"todaymaxonl inedate";i:1086044400;}
|
+----------------+----------------------------------------------------------------------------+
1 row in set (0.00 sec)
mysql>