in reply to Change the method of checking off nodes

One possible solution is use Perlmonks Related Scripts. There is exist very nice Tk application Perl/Tk Newest Nodes Client which can remember for you nodes you have looked at.

--
Ilya Martynov (http://martynov.org/)

  • Comment on Re: Change the method of checking off nodes

Replies are listed 'Best First'.
(tye)Re: Change the method of checking off nodes
by tye (Sage) on Jan 05, 2002 at 05:11 UTC
      I had cookie trouble with the PerlMonks::* modules as well. It was a while ago, but I think these two changes fixed it for me.
      • BEGIN { # This dir needs to be writable by you (or perhaps your webserver). # Your cookie and cache of node information will be stored here # $ENV{HOME} = $ENV{PERLMONKS_RCDIR} = '/path/to/some/writable/dir'; }
      • Using $n->add_pm_cookies() specifically instead of the more general $n->add_cookies().
      If nothing else, tweaking the two environment variables -- HOME and PERLMONKS_RCDIR -- might fix the immediate problem.

      -Blake