Thread Was sind das für Daten? (12 answers)
Opened by bianca at 2014-05-29 13:10

bianca
 2014-06-05 07:55
#175917 #175917
User since
2009-09-13
6977 Artikel
BenutzerIn

user image
Jetzt weiß ich auch, was ich gestern falsch gemacht hab:

Mein Versuch war:
Code (perl): (dl )
1
2
3
4
my $mech2 = WWW::Mechanize->new(
    cookie_jar  => {},
        SSL_ca_file => Mozilla::CA::SSL_ca_file(),
);


Richtig ist:
Code (perl): (dl )
1
2
3
4
5
6
my $mech = WWW::Mechanize->new(
    cookie_jar  => {},
        ssl_opts        => { 
                SSL_ca_file => Mozilla::CA::SSL_ca_file(), 
        },
);


*manchmal......*

Nochmal vielen Dank GwenDragon!!
10 print "Hallo"
20 goto 10

View full thread Was sind das für Daten?