Hello
tested there on local network, page is retrieved (2-3 seconds) and then
- there is 3-4 seconds freeze in firefox
- and about 1-2 seconds in chrome
we have tested this delay is due the CHOSEN jQuery library loaded by Joomla, chosen JS lib is shaping the drop down select
Here description of the issue in Joomla CMS development forum
groups.google.com/forum/#!topic
... hfyM4biFHg
- FLEXIcontent has a large number for parameters, many of the are drop-down selects, will see if there is some CSS class to add to parameters in order to prevent CHOOSEN library from freezing the form
to make sure that chosen JS lib is the problem, test this, edit file:
administrator\components\com_config\views\application\tmpl\default.php
and change:
JHtml::_('formbehavior.chosen', 'select');
to be:
//JHtml::_('formbehavior.chosen', 'select');
1. please let the form finished loading ,
if parameters are not saved this is a different issue, your server has a low
configuration PHP limit on form parameters, FLEXIContent needs a form field parameter greater than 1000
you need this in your .htaccess files
Code:
php_value max_input_vars value 10000
(if you have suhosin patch on your server then add these too)
Code:
php_value suhosin.post.max_vars 10000
php_value suhosin.request.max_vars 10000
for full details please read this faq article:
Resolving failed installation, because of server limitations