Welcome Guest, Not a member yet? Register   Sign In
IE8 session/cookie problem - SOLVED
#11

[eluser]Maglok[/eluser]
Bargainph is right, IE8 is much stricter with cookies. Timestamp is very important.

You say it randomly shows a message, computers are by definition not really random so there has to be a pattern there.

You could try to set your cookie to last for, lets say, several years and see if it appears as well. If it doesn't it must be some kind of de-sync of servertime and localtime. If it does, then its interesting. Smile
#12

[eluser]Vitthal[/eluser]
Thank you Simon,
But my Session management is cookie less.
I done it like -
<sessionState cookieless="false" mode="StateServer" stateConnectionString="tcpip=127.0.0.1:42424" timeout="500">

Please tell me how and where to make it in web.config or somewhere else.
Please help me.

Thank you.
#13

[eluser]Maglok[/eluser]
What do you mean Session management is cookie less?

CI's sessions are in fact cookies and by pass the entire PHP session system.
#14

[eluser]GlennJ[/eluser]
Vitthal - you need to make the change in the application/config/config.php file.

But if you don't know this I would suggest having a full and proper read of the CI user manual.

Cheers
#15

[eluser]Vitthal[/eluser]
Thank you Simon and Glenn,
But my Session management is cookie less.
I done it like -
<sessionState cookieless=“false” mode=“StateServer” stateConnectionString=“tcpip=127.0.0.1:42424” timeout=“500”>

Please tell me how and where to make it in web.config or somewhere else.
Please help me.

Thank you.
#16

[eluser]GlennJ[/eluser]
That's ASP.Net mate.. nothing to do with CI. CI doesn't use ASP.Net session's, it has it's own version which is completely seperate.

web.config files are not really used with CI.
#17

[eluser]Vitthal[/eluser]
I am speaking about .Net Only and i have mentioned it in my previous post
#18

[eluser]Maglok[/eluser]
You mean the bit about using .Net framework? Yeah found that odd. Smile Sorry can't help ya there, no experience with that.
#19

[eluser]Vitthal[/eluser]
No problem thank u ya Smile[removed]void(0)
#20

[eluser]dgriffis[/eluser]
To make a long story short CI session library doesn’t work with IE8 so I’m using PHP native session calls.

I tried a myriad of 3rd party libraries (that use native sessions and not) with no avail.

I put the ‘session_id(‘cisession’); session_start;’ in the constructor. If I assign a value to the $_SESSION I do a ‘session_write_close’ or you won’t be able to add anything else.




Theme © iAndrew 2016 - Forum software by © MyBB