Blog Sections Open
Fixing KCFinder Safe Mode Errors on Shared Hosting
Many older projects hit the KCFinder error: The "safe_mode" PHP ini setting is turned on! You cannot run KCFinder in safe mode. The first instinct was often to add something like php_value safe_mode off in .htaccess . On
Many older projects hit the KCFinder error:
The "safe_mode" PHP ini setting is turned on! You cannot run KCFinder in safe mode.
The first instinct was often to add something like php_value safe_mode off in .htaccess. On shared hosting that frequently changed nothing at all.
Why
Safe mode was a PHP-level host configuration. If the provider enforced it at the server level, an application-side override might be ignored completely.
Practical Response
- confirm whether the host allows local PHP overrides
- check whether the project can move to a newer configuration or host plan
- treat it as an environment limitation first, not a CMS bug first
This is a good example of a failure that looks like an addon bug but is really a hosting constraint.
Fixing the xmail Redeclare Error in Legacy eForm Setups
How to understand and fix the classic “Cannot redeclare xmail()” fatal error in older Evolution CMS and eForm combinations.
Making eForm Work with AjaxSubmit Reliably
What to check when eForm and AjaxSubmit do not cooperate cleanly and the form works only in normal postback mode.