Archive for the ‘Joomla’ Category

Warning: POST Content-Length of

Thursday, February 18th, 2010

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 in CMS

Wednesday, November 25th, 2009
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

JFolder::create: Infinite loop detected

Thursday, November 12th, 2009

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 ” ).

2] First create /tmp folder in your document root and set this path. The default path is “/home/username/public_html/tmp”  and set 777 permission to /tmp folder.

Done