1

Topic: How to take off "security check"?

Often, when its tooks longer time to make some post, there is security check when posting. It says that long time was between posts and so I need to push button "Post" one more time.

How to take it (and all others this kind security checks) off?

Re: How to take off "security check"?

This checking is needed to avoid CSRF, we are not recommended to you to take it off.
But if you want to do this, just add this line to config.php to skip security checking:

define('FORUM_DISABLE_CSRF_CONFIRM', 1);

3

Re: How to take off "security check"?

Slavok wrote:

This checking is needed to avoid CSRF, we are not recommended to you to take it off.
But if you want to do this, just add this line to config.php to skip security checking:

define('FORUM_DISABLE_CSRF_CONFIRM', 1);

Does not work:

Warning! The following errors must be corrected before your message can be posted:Unable to confirm security token. A likely cause for this is that some time passed between when you first entered the page and when you posted the form. Clicking "Submit" again should solve the problem.

Re: How to take off "security check"?

This method will work correctly for all pages, except for post.php. For this page, comment lines 163, 164  to skip CSRF checking.