Re: Strange url session behaviour after upgrade to 4.3 [message #182730 is a reply to message #182706] |
Sat, 31 August 2013 18:47 |
Luuk
Messages: 329 Registered: September 2010
Karma:
|
Senior Member |
|
|
On 30-08-2013 22:33, Tobiah wrote:
> I have a page that needs to get another page on the fly, using
> the same session. I figured out how to stop my session and set
> the cookie on the CURL handler, and everything was cool. The
> curled page had my same session available as the calling page.
> Life was good.
>
> Now something has changed after upgrading from 5.2.4 to 5.3.10.
ok, when getting the changelog, and counting the occurrances of
'sesssion' between 'Version 5.2.4' and 'Version 5.3 10', i do get a
count of 28
<-- bash-script below, for those who are interested ;) -->
#!/bin/bash
wget "http://php.net/ChangeLog-5.php" -O /tmp/blaat.htm
awk '/Version 5.3.10/,/Version 5.2.4/{ print $0 }' blaat.htm | grep -i
session | wc -l
|
|
|