ERR_CACHE_MISS & PHP

Most likely the error ERR_CACHE_MISS has do do with PHP sessions. To get rid of it add few lines of code before your session start.

header('Cache-Control: no cache'); //no cache
session_cache_limiter('private_no_expire'); // works
//session_cache_limiter('public'); // works too
session_start();

Source: Stackoverflow

Aircraft & Fleet page released

I’ve released my aircraft & fleet pages to public where you can find information about operational aircraft across the globe. The data is gathered from various sources e.g. ADS-B. It’s still under development and might change over time…

MySQL UTC timestamp

You can insert the UTC timestamp manually as follows…

INSERT INTO table_name (utc_timestamp)
VALUES (UTC_TIMESTAMP())

Alternatively you can set the timestamp per session using…

SET @@session.time_zone='+00:00';

..or per server (my.cnf)…

[mysqld]
default_time_zone='+00:00'

Back to Top