Hi Fred,
The error occurs in core/pagemanager.inc.php. Check these lines:
$query = "SELECT location FROM $table_editors WHERE id = '".$_SESSION['editor']."'";
$result = mysql_query($query) or trigger_error(mysql_error().'"<br>Query : "' . $query . '".',E_USER_WARNING);
$editor_loc = mysql_result($result, 0);
In my situation:
$query = "SELECT location FROM syn_editors WHERE id = '0' ".
This query searchs in record 0 in the table syn_editors. But the first record is number 1.
This value zero is the result of the variabe $_SESSION['editor'];
Where is $_SESSION['editor'] changed and should this value be 1 ?
One more thing:
the version number is 2.8 and not 2.9 in starnet/index.php, syndeo_check, ....
Pieter