On 01/18/2012 05:43 PM, David E. Ross wrote:
> On 1/18/12 2:47 PM, NoOp wrote:
...
>> Instead while on a browser page: Tools|SQLite Manager
>> Open cookies.sqlite & modify the date there. For example I allowed a
>> cookie to be set (I normally delete when closing the session) and the
>> expiry (INTEGER) is: 1390075201
>> That decodes as:
>> Sat Jan 18 12:00:01 PST 2014
>> 
>> $ date -d @1390075201
>> Sat Jan 18 12:00:01 PST 2014
>> 
>> If you wish to modify that to 2100 then you'll need to work out the
>> seconds (seconds since 1970-01-01 00:00:00 UTC). However, you'll find
>> that 2100 gives:
>> $ date +%s -d 2100-01-18t12:00
>> date: invalid date `2100-01-18t12:00'
>> 
>> so change to something reasonable, like 2030:
>> $ date +%s -d "2030-01-18 12:00Z"
>> 1894968000
>> $ date -d @1894968000
>> Fri Jan 18 04:00:00 PST 2030
>> 
>> So now change the expiry 1390075201 to 1894968000 and the cookie won't
>> expire until Jan 18, 2030.
>> 
> 
> When I select Tools on the SeaMonkey menu bar, I do not see any SQLite
> Manager, not even on any of the submenus.  Did you install SQLite
> Manager on your system?  If so, what version?
> 

It must have been installed some time ago as I can't remember when.
SQLite Manager 0.7.7
https://addons.mozilla.org/en-US/seamonkey/addon/sqlite-manager/
_______________________________________________
support-seamonkey mailing list
[email protected]
https://lists.mozilla.org/listinfo/support-seamonkey

Reply via email to