2018年12月26日 星期三

Unauthorized access!! E107

e107 uses various security methods to keep your site protected from abuse. However, some server configurations are incompatible with these methods, usually due to these servers employing similar security methods.
In order to disable only the parts which may cause you problems, we recommend you add the following code on a new line in your e107_config.php file, and see if that helps. If not, please submit an Issue on Github - we'll do our best to find a solution for you.
define('e_SECURITY_LEVEL', 0);

沒有留言:

張貼留言

如何判斷現在FORM是在 insert mode? 還是 update mode?

只要用  if (empty({primary_key})) 就可以知道是否為新增模式了。 如果 {promary_key} 是空白的,那麼就是在新增模式;反之,就是更新模式。 以上。