So I just discovered a crazy bug that has been keeping visitors of the Opera web browser from using DaniWeb.
Apparently there's a problem with CodeIgniter's CSRF protection that makes it not work with Opera, and I'm unsure of why. It works perfectly fine with IE, Firefox, Chrome, etc.
I am using form_open() to create my forms, so it is creating the csrf hidden input tag automatically.
I have the following configuration settings set in /application/config/config.php:
$config['sess_encrypt_cookie'] = TRUE;
$config['sess_use_database'] = FALSE;
$config['sess_match_ip'] = FALSE;
$config['sess_match_useragent'] = FALSE;
Can anyone help?