CGI-FormMagick
view release on metacpan or search on metacpan
doc/FormMagick-FAQ.html view on Meta::CPAN
<PRE>
my $f = new CGI::FormMagick( DEBUG => 1 );</PRE>
<P>
<H2><A NAME="why isn't my data preserved from one page to the next">Why isn't my data preserved from one page to the next?</A></H2>
<P>You probably need to make your <CODE>session-tokens</CODE> directory writable and
executable by the web server. Either:</P>
<PRE>
chown www session-tokens
(assuming your webserver runs as the www user)
chmod 700 session-tokens</PRE>
<P>Or...</P>
<PRE>
chmod 777 session-tokens</PRE>
<P>Note that the latter allows anyone on the system to write to this
directory, and is a greater security risk than the former method.</P>
</BODY>
</HTML>
lib/CGI/FormMagick/FAQ.pod view on Meta::CPAN
This will print out general debugging messages to the web page.
=head2 Why isn't my data preserved from one page to the next?
You probably need to make your C<session-tokens> directory writable and
executable by the web server. Either:
chown www session-tokens
(assuming your webserver runs as the www user)
chmod 700 session-tokens
Or...
chmod 777 session-tokens
Note that the latter allows anyone on the system to write to this
directory, and is a greater security risk than the former method.
( run in 0.261 second using v1.01-cache-2.11-cpan-496ff517765 )