2016-04-05 9 views
1

Ich habe ein Problem mit Formularanforderung in (nur) Intent Explorer 11 (alt keine Überprüfung). Chrome und Firefox ist gut.Die Aktion, die Sie angefordert haben, ist nicht erlaubt - CI 3.0 Internet Explorer 11

Quelle HTML-Formular:

... 
<form action="http://192.168.0.53/users/products/show/41" enctype="multipart/form-data" method="post" accept-charset="utf-8"> 
<input type="hidden" name="csrf_token_name" value="5ab6faa347ddf882ff50882c9835cfab" style="display:none;" /> 
... 

Config CI 3.0:

$config['csrf_protection'] = true; 
$config['csrf_token_name'] = 'csrf_token_name'; 
$config['csrf_cookie_name'] = 'csrf_cookie_name'; 
$config['csrf_expire'] = 7200; 

Codeginiter automatische genere Eingang mit csrf Schlüssel versteckt.

Warum passiert das?

ps. sorry für mein Englisch:/Ich versuche

Antwort

0

Ich habe Lösung:

in Meta-Tags (Header):

<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/> 

Änderung:

<meta http-equiv="x-ua-compatible" content="IE=9" > 

Und Arbeit :)