XF 2.1 Getting the cookie with Perl. How has this changed from 1.5? Thanks for any info or help.

Rom

Active member
My perl script no longer reading user as logged in. Was there a change from 1.5 to 2.0? Thanks for any info or help.
 
Last edited:
this is what I have:

Code:
use strict;
use CGI;

my ($query) = new CGI();
print $query->header();

foreach ($query->cookie())
{
   printf "Cookie: [%s]=[%s]<BR>\n", $, $query->cookie($);
}
 
Top Bottom