http://www.translatum.gr/forum/index.php
Notice: Only variables should be assigned by reference in /home/translat/public_html/forum/Sources/Subs.php on line 232
2: session_start(): Cannot send session cache limiter - headers already sent (output started at /home/translat/public_html/forum/Sources/Subs.php:232)
Notice: Only variables should be assigned by reference in /home/translat/public_html/forum/Sources/Subs.php on line 232
Here are the lines:
$ret = &mysql_query($db_string, $db_connection);
if ($ret === false)
$ret = db_error($db_string, $file, $line);
Seems like a php 4 problem but not sure at all..
PHP 4.4.0 Compatibility (http://www.simplemachines.org/community/index.php?topic=41955.0)
Yep, that was it. Removed the ampersand and it worked!
Thanks a million for the quick reply, much appreciated.