Page 2 of 2

Re: Ændringer gemmes ikke i cms indstillingerne

Posted: Tue Aug 04, 2015 6:46 pm
by Gert
Please try (./cmsimple/cms.php after comment block on top):

Code: Select all

ini_set('opcache.enable', 0);
ini_set('xcache.cacher', 'Off');
ini_set('xcache.size', 0);
ini_set('xcache.stat', 'Off'); 
... and take care for saving the cms.php in "utf-8 without BOM".

You also can try to extend the .htaccess file in the CMSimple Root folder:

Code: Select all

AddDefaultCharset UTF-8
php_flag xcache.cacher Off
php_flag xcache.size 0
php_flag xcache.stat Off
Gert

Re: Ændringer gemmes ikke i cms indstillingerne

Posted: Tue Aug 04, 2015 6:58 pm
by cmb
Gert wrote:... and take care for saving the cms.php in "utf-8 without BOM".
Good catch! :)
Gert wrote:

Code: Select all

ini_set('xcache.size', 0); 
This is likely to fail, because xcache.size is PHP_INI_SYSTEM.

Re: Ændringer gemmes ikke i cms indstillingerne

Posted: Tue Aug 04, 2015 11:53 pm
by cmb
I've moved the thread to the "Dansk forum" – seems to be more appriate.
Jeg har flyttet tråden til "Dansk Forum" - synes at være mere appriate.

Re: Ændringer gemmes ikke i cms indstillingerne

Posted: Wed Aug 05, 2015 7:51 am
by webby
Okay - tak :)