[Solved] Various Session problems |
[eluser]bretticus[/eluser]
[quote author="fchristant" date="1282319882"] I have not yet deployed this code to production because I have made other changes that I need to finish first, but I hope this solves the IP problem as well. Now that I think of it, I think it will, because I am figuring that it was the cronjob "sessions" which had an ip of 0.0.0.0, which makes sense, since they run on the same host.[/quote] It's worth noting that the ip_address() method of the input class checks for the typical web server headers. If none yield an IP, the ip is set to '0.0.0.0'. So, yes, if you are executing PHP directly (cron or bash, etc.) those headers will not be found and CI will return '0.0.0.0' You might try adding some logic to disable sessions when '0.0.0.0' is encountered. Or you can go a bit further and use the php_sapi_name function to detect CLI usage and disable sessions somehow (I'll leave that thought exercise to you.) |
Messages In This Thread |
[Solved] Various Session problems - by El Forum - 08-19-2010, 10:46 AM
[Solved] Various Session problems - by El Forum - 08-19-2010, 11:48 AM
[Solved] Various Session problems - by El Forum - 08-19-2010, 12:02 PM
[Solved] Various Session problems - by El Forum - 08-19-2010, 12:03 PM
[Solved] Various Session problems - by El Forum - 08-19-2010, 01:01 PM
[Solved] Various Session problems - by El Forum - 08-19-2010, 01:12 PM
[Solved] Various Session problems - by El Forum - 08-19-2010, 01:14 PM
[Solved] Various Session problems - by El Forum - 08-19-2010, 01:57 PM
[Solved] Various Session problems - by El Forum - 08-20-2010, 04:58 AM
[Solved] Various Session problems - by El Forum - 08-20-2010, 05:25 AM
[Solved] Various Session problems - by El Forum - 08-20-2010, 06:19 AM
[Solved] Various Session problems - by El Forum - 08-20-2010, 06:50 AM
[Solved] Various Session problems - by El Forum - 08-20-2010, 06:56 AM
[Solved] Various Session problems - by El Forum - 08-20-2010, 10:03 AM
[Solved] Various Session problems - by El Forum - 08-20-2010, 10:16 AM
[Solved] Various Session problems - by El Forum - 08-20-2010, 10:31 AM
[Solved] Various Session problems - by El Forum - 08-20-2010, 12:13 PM
[Solved] Various Session problems - by El Forum - 08-20-2010, 12:53 PM
[Solved] Various Session problems - by El Forum - 08-20-2010, 08:13 PM
[Solved] Various Session problems - by El Forum - 08-21-2010, 01:51 AM
[Solved] Various Session problems - by El Forum - 09-01-2010, 08:50 AM
[Solved] Various Session problems - by El Forum - 09-22-2010, 05:21 PM
[Solved] Various Session problems - by El Forum - 09-22-2010, 08:39 PM
|