Welcome Guest, Not a member yet? Register   Sign In
IE Bug
#11

[eluser]domainsvault[/eluser]
how would I do that?
#12

[eluser]InsiteFX[/eluser]
Look through the source code for the set_cookie code.

Code:
// Wrong way to set the cookie see how the 900 is in qoutes.
setcookie("login_attempts", $attempts, '900', '/');

// Correct way to set the cookie.
setcookie("login_attempts", $attempts, 900, '/');

InsiteFX
#13

[eluser]domainsvault[/eluser]
I never did come back to this, and I appologize. I wanted to say that this ultimately ended up being a technical issue with the server settings itself. Turns out the way the virtual host settings of the server the subdomain for the domain was being servered as dev_name, so that in it of itself caused the issue for the cookies being tossed and destroied before them getting written. Once I got the Server Tech to repropergate the way the sub domains are handled, and we replaced the _ with an - everything started working out fine.

With that said things snowballed development wise and we have been busy, today I stopped to come back and let it be known what the issue was so no one would get stumpped like we we're with a similar issue.

If you have an underscore in your URL chances are you will run into this issue like we did, so to help others thats the cause. Or was for us.




Theme © iAndrew 2016 - Forum software by © MyBB