internet explorer - Kohana 3 Auth in IE -


i'm finding can't log in kohana site through ie. (just ie, works fine everywhere else)

it's validating, as, knows if username , password wrong, not creating session.

i've added to: application/config/session.php

<?php  return array(   'cookie' => array(       'name' => 'session_cookie',       'encrypted' => true,       'lifetime' => 43200,   ),   'native' => array(       'name' => 'session_native',       'encrypted' => true,       'lifetime' => 43200,   ),   'database' => array(       'name' => 'session_database',       'group' => 'default',       'table' => 'sessions',   ), ); 

but wouldn't expect on own.

does have helpful pointers?

i want re-instate question not answered in way helpful others: kohana 3 auth in ie

ok, fact there underscore in url!!..
who'd have thought!. ie can't handle cookies , sessions if there underscore in url.

don't love ie!! :)


Comments

Popular posts from this blog

linux - Using a Cron Job to check if my mod_wsgi / apache server is running and restart -

actionscript 3 - TweenLite does not work with object -

jQuery Ajax Render Fragments OR Whole Page -