Notice: Only variable references should be returned by reference
The issue is with Moodle using an old adodb set that uses "references" which resulted in memory curruption which was addressed in PHP 4.4.0.
To correct perform the following:
Open up the adodb.inc.php file.
The error is around line 2660 of the 4.64 version of the adodb system. Look for the following section:
Change this line:
function &GetAssoc($force_array = false $first2cols = false)
To this:
function GetAssoc($force_array = false $first2cols = false )
Once complete upload this update over the existing adodb.inc.php in your account.
You can also download the latest available version of adodb here.
- 509 Users Found This Useful
Related Articles
How to turn off magic quotes gpc for Joomla 3
Add the line "php_flag magic_quotes_gpc off" to the .htaccess file. If one does not exist create...
Best WP Plugins
The best wp plugins we believe at this time are W3Total Cache, WordFence, Yoast SEO and iThemes...
PHPList Email Throttling
As we are primarily a website hosting provider we limit email sending to 150 emails per hour. If...
Joomla Warning: Parameter 2 to frontpage()
The error: Joomla Warning: Parameter 2 to frontpage() can occur when you use an out-dated install...
phpBB: Switching template to default theme
To change your phpBB theme back to the default which may be necessary when upgrading, log into...
