Error: Warning: Parameter 1 to modMainMenuHelper::buildXML() expected to be a reference.
Solution :
This error is occurred due the php version 5.3 and joomla is not certified to work with PHP 5.3.0.
You need to change some code in your files.
open the file
vi /home/username/public/modules/mod_mainmenu/helper.php
You can change this :
Form
function buildXML(&$params)
to
function buildXML($params)
Save the file try to access your site.









Thanks for You!!!
man the fix did not work i still see the same problem
Thanks a lot man.. you rock <3
i have the same problem for Just a few minutes ago. And my solution is for this problem;
You must change this :
Form
function buildXML(&$params)
to
function buildXML($params)
AND
open the
/public_html/libraries/joomla/html/html.php
and find the (line 87)
return call_user_func_array( array( $className, $func ), $args );
put & sign before the $args
finally
return call_user_func_array( array( $className, $func ), &$args );
@Venave: Thanks man it works great !
@Venave: You are a saviour! Thanks for the detailed instructions mate!
Thanks man are u crazy !
Thanks Rishikesh Vispute. You rock.
Thanks man, it works!
Thank very much mwa
Thanks so much! really appreciate the assistance
Thanks Alot All..my problem is solved