Topic: News Generator PostgreSQL incompatibility
At line 96 in AP_News_Generator.php I suggest a change of the query to the following:
$time = mktime(0, 0, 0, 1, $month_start, $year_start);
$result = $db->query('SELECT id, subject FROM '.$db->prefix.'topics WHERE forum_id='.$forum_id.' AND posted>='.$time.' AND posted<'.$time.' ORDER BY posted DESC') or error('Unable to fetch topic list', __FILE__, __LINE__, $db->error());
The reason is that UNX_TIMESTAMP() does not exist in PostgreSQL