I can not save settings in theme panel, please help me
Hello,
Please check your cache and the hosting side cache as well as your cdn sever. THere is something preventing the changes to apply correctly.
It could also be a plugin causing this so Please disable all plugins except the page builder, clear cache and reset cdn files if you use it. Please also check any custom code you might have added to the theme panel or the theme files. If you use a child theme, please switch to the main theme to make sure it does not affect the proper functionality of the theme.
Thank you!
Reason Can not save settings in theme panel. This is because I’m restricted to php in the .htaccess file.
I fix it by adding the following code:
php_value upload_max_filesize 128M
php_value post_max_size 128M
php_value max_execution_time 300
php_value max_input_time 300
php_value memory_limit 256M
I have successfully debugged, thank you very much!
Glad you solved the issue. System status parameters are very important for the proper functionality of the theme. This guide provides the needed memory allocation:
https://forum.tagdiv.com/system-status-parameters-guide/
Thank you!
You use File Manager located in hosting or FTP client such as FileZilla. Then go to the public_html () => directory and look for the .htaccess file and edit it. You add the following code to the end of the .htaccess file
php_value upload_max_filesize 128M
php_value post_max_size 128M
php_value max_execution_time 300
php_value max_input_time 300
php_value memory_limit 256M