Tuesday, November 20, 2012

Joomla error Parameter 1 to modMainMenuHelper::buildXML() expected to be a reference, value given in

Warning: Parameter 1 to modMainMenuHelper::buildXML() expected to be a reference, value given in /var/www/vhosts/YYYY/httpdocs/libraries/joomla/cache/handler/callback.php on line 99




To avoid this error on joomla CMS 1.5.x try to upgrade your joomla version to 1.5.26
i've juste wrote that coz i didn't find a solution on any forum just i've tried that

--> unpack joomla 1.5.26 copy it as it is (expect configuration.php at the root) and upload it on the server
Eh don't forget to remove installation folder!

Thursday, November 15, 2012

htaccess redirection .html to .php

un .htaccess pour redirection tous les .html vers. php, ça peut servir surtout lorsqu'on passe d'un site statique vers un site dynamique:


#start here
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^(.+)\.html$ http://your-website/$1.php [R=permanent,NC]
#end here