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 [ Read More ]
Posted by Rishikesh Vispute
Categories: Joomla
When joomla admin section shows the all files unwritable in ” System Info” Then you need to correct the permission by using following steps. I am able to solve this issue with the following steps. cd /var/www/vhosts/[domain.com] chown -R [username]:psacln httpdocs chmod -R g+w httpdocs find httpdocs -type d -exec chmod g+s {} \; Add [ Read More ]
Posted by Rishikesh Vispute
Categories: Joomla
How to set the custom 404 page in joomla? or Change default “Joomla 404 component not found” page Ans : Create 404.shtml file under the document root then open the error.php file vi /home/username/public_html/templates/system/error.php then add the following code below the line “defined( ‘_JEXEC’ ) or die( ‘Restricted access’ );” ======================================= if (($this->error->code) == ’404′) [ Read More ]
Error : Warning: POST Content-Length of 9897293 bytes exceeds the limit of 8388608 bytes in Unknown on line 0 Solution: If you are facing same error in joomla then you need to increase the “post_max_size” in php.ini file post_max_size =8M Replaced with post_max_size = 12 M Done
Location of configuration files on number of CMS WordPress: /home/username/public_html/wp-config.php CommercePro: /home/username/public_html/catalog/includes/configure.php and /catalog/admin/includes/configure.php Picture Pro: /home/username/public_html/include/config.inc.php phpBB: /home/username/public_html/config.php Joomla: /home/username/public_html/configuration.php MediaWiki: /home/username/public_html/LocalSettings.php
Posted by Rishikesh Vispute
Categories: Joomla
Error : When try to install template or component then it shows the error * JFolder::create: Infinite loop detected * Warning! Failed to move file. Solution : The problem is an incorrectly set /tmp file. 1] Check the entry of ” Path of Temp folder” in admin section of joomla ( “Global Configuration<< server ” [ Read More ]