mod_perl guide is full of lots of goodies that are worth reading...
HTH
--Geoff
> -Original Message-
> From: Rob Egan [mailto:[EMAIL PROTECTED]]
> Sent: Friday, June 30, 2000 8:01 PM
> To: [EMAIL PROTECTED]
> Subject: RE: can't properly append to file from mod_perl scr
Hi,
I sent an earlier post with a script that was appending garbage along with
user email addresses that were submitted through a form. After seeing all
the suggestions about improvement, I went ahead and rewrote the script from
scratch (it's much shorter now!). My version actually prevents garba
> On Thu, 29 Jun 2000, Stas Bekman wrote:
>
> > When using file locking one must make sure, that if the script has been
> > stopped before the close() was called, to use an END block under Registry
> > or $r->register_cleanup() anywhere. See:
> > http://perl.apache.org/guide/debug.html#Handling_t
On Thu, 29 Jun 2000, Stas Bekman wrote:
> When using file locking one must make sure, that if the script has been
> stopped before the close() was called, to use an END block under Registry
> or $r->register_cleanup() anywhere. See:
> http://perl.apache.org/guide/debug.html#Handling_the_User_pres
On 29 Jun 2000, Frank D. Cringle wrote:
> Vivek Khera <[EMAIL PROTECTED]> writes:
> > > "RE" == Rob Egan <[EMAIL PROTECTED]> writes:
> >
> > RE> CGI scripts to behave in mod_perl. All it does is capture e-mail addresses,
> > RE> and place them in a text file so we can gather them up later an
Vivek Khera <[EMAIL PROTECTED]> writes:
> > "RE" == Rob Egan <[EMAIL PROTECTED]> writes:
>
> RE> CGI scripts to behave in mod_perl. All it does is capture e-mail addresses,
> RE> and place them in a text file so we can gather them up later and drop them
> RE> into a database. If you run the s
> "RE" == Rob Egan <[EMAIL PROTECTED]> writes:
RE> CGI scripts to behave in mod_perl. All it does is capture e-mail addresses,
RE> and place them in a text file so we can gather them up later and drop them
RE> into a database. If you run the script as a regular CGI (without mod_perl
RE> enabl
you might want to 'use strict' and see what pops up :)
additionally, you might want to read up on mod_perl_traps.pod and
http://perl.apache.org/guide/porting.html
specifically
http://perl.apache.org/guide/porting.html#Exposing_Apache_Registry_secret
HTH
--Geoff
> -Original Message-