Welcome Guest, Not a member yet? Register   Sign In
CodeIgniter Session cookies and Apache mod_security not compatible?
#2

[eluser]TheFuzzy0ne[/eluser]
To disable mod_security, placing the following in your .htaccess file (before any routing), should work.

Code:
<IfModule mod_security.c>
    SecFilterEngine Off
    SecFilterScanPOST Off
</IfModule>

Alternatively, encrypting the cookie might work. In ./application/config/config.php:

Code:
$config['sess_encrypt_cookie'] = TRUE;


Messages In This Thread
CodeIgniter Session cookies and Apache mod_security not compatible? - by El Forum - 05-03-2013, 10:56 AM



Theme © iAndrew 2016 - Forum software by © MyBB