Making changes to variables, colors in Webapp doesn’t always save the progress, causing user frustration when changes are not saved.
example video here
Is coreframework not saving in LocalWP or a live site?
This post showed up when searching google for the issue so I’m posting what fixed it in LocalWP. If it’s a live site, the problem may be similar.
I dont know if I can post links but in the LocalWP Community this is the slug for the topic and can be searched in google:
/add-configuration-options-for-apache-php-in-local-app/32922
I was getting this error: mod_fcgid: HTTP request length 134700 (so far) exceeds MaxRequestLen (131072),
Resolution 2 worked for me:
Edit (SITE_FOLDER)\conf\apache\modules.conf.hbs and add/edit the following. The value is bytes. It should be equal to or lesser than the upload_max_size from php.ini. I added it to the end of my config.
<IfModule mod_fcgid.c>
FcgidMaxRequestLen 51200000
</IfModule>