GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
HTTP::Cookies::Mozilla(3) User Contributed Perl Documentation HTTP::Cookies::Mozilla(3)

HTTP::Cookies::Mozilla - Cookie storage and management for Mozilla

        use HTTP::Cookies::Mozilla;

        my $file = ...; # Firefox profile dir / cookies.sqlite
        my $cookie_jar = HTTP::Cookies::Mozilla->new( file => $file );

        # otherwise same as HTTP::Cookies

This package overrides the "load()" and "save()" methods of HTTP::Cookies so it can work with Mozilla cookie files. These might be stored in the user profile directory as cookies. On macOS,for instance, that's ~/Application Support/Firefox/*/cookies.sqlite.

This module should be able to work with all Mozilla derived browsers (FireBird, Camino, et alia).

Note that as of FireFox, version 3, the cookie file format changed from plain text files to SQLite databases, so you will need to have either DBI/DBD::SQLite, or the sqlite3 executable somewhere in the path. Neither one has been put as explicit dependency, anyway, so you'll get an exception if you try to use this module with a new style file but without having any of them:

   neither DBI nor pipe to sqlite3 worked (%s), install either one

If your command-line sqlite3 is not in the $ENV{PATH}, you can set $HTTP::Cookies::Mozilla::SQLITE to point to the actual program to be used, e.g.:

   use HTTP::Cookies::Mozilla;
   $HTTP::Cookies::Mozilla::SQLITE = '/path/to/sqlite3';

Usage of the external program is supported under perl 5.8 onwards only, because previous perl versions do not support "open" in perlfunc with more than three arguments, which are safer. If you are still sticking to perl 5.6, you'll have to install DBI/DBD::SQLite to make FireFox 3 cookies work.

See HTTP::Cookies.

The source is in GitHub:

        https://github.com/briandfoy/http-cookies-mozilla

Derived from Gisle Aas's HTTP::Cookies::Netscape package with very few material changes.

Flavio Poletti added the SQLite support.

Maintained by brian d foy, "<bdfoy@cpan.org>"

Parts Copyright 1997-1999 Gisle Aas.

Other parts Copyright 2018-2019 by brian d foy, "<bdfoy@cpan.org>"

This library is free software; you can redistribute it and/or modify it under the terms of the Artistic License 2.0.

2019-07-23 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.