Following errors are common in TikiWiki or Moodle
Notice: Only variable references should be returned by reference in
/home/username/public_html/lib/adodb/adodb.inc.php on line 2689
Warning: Cannot modify header information - headers already sent by
(output started at
/home/username/public_html/lib/adodb/adodb.inc.php:2689) in
/home/username/public_html/lib/setup.php on line 305
Warning: Cannot modify header information - headers already sent by
(output started at
/home/username/public_html/lib/adodb/adodb.inc.php:2689) in
/home/username/public_html/lib/moodlelib.php on line 2135
Warning: Cannot modify header information - headers already sent by
(output started at
/home/username/public_html/lib/adodb/adodb.inc.php:2689) in
/home/username/public_html/cms/lib/moodlelib.php on line 2136
If you see this error, this is because the server you are on has been
upgraded to PHP 4.4.1, and there is outdated code in Moodle and TikiWiki
that needs to be changed. For Moodle in the file
~public_html/lib/adodb/adodb.inc.php line 2689:
return $results;
change to:
$result = &$results;
return $result;
This will correct the problem within Moodle's Coding. If you are unsure
about how to do this, let me know and we can make the change for
you.
No comments:
Post a Comment