Re: web-based email

1999-11-10 Thread Jochen Wiedmann
Rudy wrote: I run a small ISP (www.monkeybrains.net) and would like to provide web-based email. I plan on using POP3Client.pm. Is there any code out there which already utilizes POP3Client for web-based email (I'd hate to reinvent the wheel for the n_th time)? Yes, there is. HTML::EP

Re: Win32 mod_perl binary (Embperl detail)

1999-11-10 Thread Robert
Randy Kobes wrote: I've placed a self-extracting archive at ftp://theoryx5.uwinnipeg.ca/pub/other/perl-win32-bin-0.2.exe which contains an updated Win32 binary of perl5.005_03, mod_perl-1.21, and apache_1.3.9. This was built using ... Please let me know of any problems you encounter.

Re: web-based email

1999-11-10 Thread Stas Bekman
I run a small ISP (www.monkeybrains.net) and would like to provide web-based email. I plan on using POP3Client.pm. Is there any code out there which already utilizes POP3Client for web-based email (I'd hate to reinvent the wheel for the n_th time)? I'd like to check it see common email

Re: Win32 mod_perl binary (Embperl detail)

1999-11-10 Thread G.Richter
Randy Kobes wrote: I've placed a self-extracting archive at ftp://theoryx5.uwinnipeg.ca/pub/other/perl-win32-bin-0.2.exe which contains an updated Win32 binary of perl5.005_03, mod_perl-1.21, and apache_1.3.9. This was built using ... Please let me know of any problems you

Squid+mod_perl IE 4,5 problem

1999-11-10 Thread Emmanuel PIERRE
Hi, I have a squid accelerator installed in front of apache+mod_perl with several virtual hosts, and I have a problem with IE 4 5: they have the wrong page, Netscape no problem. here is what I see in the logs: IE 4: SQUID access.log 942232766.059 16 195.36.241.209

Re: still having errors on 'make test'

1999-11-10 Thread Steve Reppucci
I've seen this problem too. There's a 'sleep 5' in the test harness, apparently to wait for the server to start. On a heavily loaded system, this is too short. Whenever I've encountered this, I change the sleep to 10 seconds and it works fine... HTH, Steve On Mon, 8 Nov 1999, Scott R. Every

EMBPERL: Possible bug

1999-11-10 Thread Ruben I Safir
We are running a lot of embperl stuff and are running into a rather unsual problem when data is entered into a form with 00 (zero-zero) endings including 300, 400, etc. Has anyone seen a bug of this sort? We store our EMBPERL HTML pages in mysql databases and then call them. -- Ruben I Safir

Result Pagination w/ mod_perl MySQL

1999-11-10 Thread William R. Lorenz
ModPerl List, Forgive me if this is offtopic, but I am attempting to paginate a set of returned SQL records using mod_perl connecting to a MySQL server (through DBI/DBD::mysql). I believe this can be accomplished using the RANGE() SQL function, but to my knowledge it is not supported by MySQL.

Re: Result Pagination w/ mod_perl MySQL

1999-11-10 Thread tacho
On Wed, Nov 10, 1999 at 09:37:31AM -0500, William R. Lorenz wrote: SNIP Does anyone have a proved method of separating results (1-10, 10-20, etc. - think of AltaVista returning search results and separating them into pages), using as little resources on the webserver as possible (would like

RE: Result Pagination w/ mod_perl MySQL

1999-11-10 Thread William R. Lorenz
Thanks, everyone, for your quick help with this. :) -Original Message- You might want to try the dbi-users mailing list at http://www.isc.org/dbi-lists.html Otherwise I believe the correct word to use is LIMIT, read

Re: Win32 mod_perl binary (Embperl detail)

1999-11-10 Thread Randy Kobes
On Wed, 10 Nov 1999, G.Richter wrote: Randy Kobes wrote: I've placed a self-extracting archive at ftp://theoryx5.uwinnipeg.ca/pub/other/perl-win32-bin-0.2.exe which contains an updated Win32 binary of perl5.005_03, mod_perl-1.21, and apache_1.3.9. This was built using ...

Trying not to re-invent the wheel

1999-11-10 Thread Ian Mahuron
Hi guys gals. I'm writing a mod_perl handler for a ColdFusion'esque embedded scripting language... I was wondering what the quickest (performance wise) way to parse through the HTML is. Embperl documents show that it requires HTML::Parser, though I can't seem to find where it uses this module

Re: Trying not to re-invent the wheel

1999-11-10 Thread Sam Tregar
On Wed, 10 Nov 1999, Ian Mahuron wrote: The code in HTML::Template may work.. though it seems that it would be very slow. Actually, I like to think it's some pretty fast code... Of course, that's because it's only looking for TMPL_* tags, and it's allowing them to break all kinds of HTML

RE: Trying not to re-invent the wheel

1999-11-10 Thread Ian Mahuron
As per someone's suggestion I'll ellaborate on what's in the HTML... Insert code for advertisment (there's 1,000's of different ads on the site.): ADVERTISMENT id=252 Insert news scroller: NEWS_ITEM id=92834 bgcolor="#0066FF" There will be at least 50 similar tags.. so I'm not parsing for

Re: Win32 mod_perl binary (Embperl detail)

1999-11-10 Thread Robert
Randy Kobes wrote: if there's any other things that look strange or don't work, ... please let me know. Had no time to look at it closely, but some perfectly working Embperl page now is empty and during load a dos window briefly flashes and closes... There's probably some problem with glob,

RE: Trying not to re-invent the wheel

1999-11-10 Thread Christian Gilmore
I found that writing my own parser to fit my specific need was far and away the fastest thing I could do. It really depends upon your specific application. HTML::Parser is nice if you want to see the structure of the document your parsing but is just too slow to use for wresting particular tags

Re: Trying not to re-invent the wheel

1999-11-10 Thread Eric L. Brine
There will be at least 50 similar tags.. so I'm not parsing for just couple of tags like HTML::Template.. I may implement IF/LOOPS/etc.. but not until I see the need. It might be too late to do this, but what if you convert everything to one tag. I can better explain by example: Instead of

Apache::SpeedLimit and problems with IPC::Shareable

1999-11-10 Thread Christian Gilmore
I inserted Apache::SpeedLimit into one of our servers the other day. It works as advertised, but I'm now seeing errors in the error_log that are coming from Apache::SpeedLimit/IPC::Shareable. I wonder if anyone else has had this problem. From the error_log: [Wed Nov 10 13:28:55 1999] [notice]

RE: Trying not to re-invent the wheel

1999-11-10 Thread Tobias Hoellrich
I don't know, if you have to stick to the tags as described below, but if you don't have to you may want to take a look at a custom Apache::SSI subclass which can do all this stuff for you and no perl-based HTML parsing is involved: !--#ADVERTISMENT id=252 -- Tobias At 10:10 AM

RE: Trying not to re-invent the wheel

1999-11-10 Thread Jason Bodnar
I believe there are a couple of HTML parsers out there. In the Perl News email sent out a couple of days ago there was one that caught my eye. I believe it was an XS implementation so it should be very fast. I'm not an XML expert but you might want to try the XML parser. It's also a perl

Re: Trying not to re-invent the wheel

1999-11-10 Thread Gisle Aas
"Christian Gilmore" [EMAIL PROTECTED] writes: I found that writing my own parser to fit my specific need was far and away the fastest thing I could do. It really depends upon your specific application. HTML::Parser is nice if you want to see the structure of the document your parsing but is

Re: DBD make error

1999-11-10 Thread Pascal Eeftinck
At 16:38 10-11-99 -0500, Jearanai Vongsaard wrote: My machine is Origin200 run IRIX6.5 with perl 5.00502. What should I do when I got an error from make in DBD-1.13 : ... Running Mkbootstrap for DBD::Oracle () chmod 644 Oracle.bs

Seeking volunteer to providing mailing list summaries

1999-11-10 Thread Tom Christiansen
Is there anyone on this mailing list who would be willing to volunteer to provide the world with a periodic summary of what major topics were discussed on this mailing list? The idea is to follow in the footsteps of Mark-Jason Dominus's excellent p5p weekly summaries at

Re: Seeking volunteer to providing mailing list summaries

1999-11-10 Thread Nick Tonkin
Harrumph, I wouldn't even bring this up since not only is it off topic and not only is it a silly argument to debate the relative merits of banner ads, but I must point out that the perl.org mailing lists, ftp.perl.org *and* ftp.cpan.org are all hosted -- free of charge -- by ValueClick. Perl

RE: Win32 mod_perl binary (Embperl detail)

1999-11-10 Thread Gerald Richter
if there's any other things that look strange or don't work, ... please let me know. Had no time to look at it closely, but some perfectly working Embperl page now is empty and during load a dos window briefly flashes and closes... There's probably some problem with glob, because page

$r-run with no headers

1999-11-10 Thread Rick Myers
Quite simply, I can't set headers on a -run. I've tried before the fact, as well as within the object itself. Anybody have any pointers? Rick Myers[EMAIL PROTECTED] The Feynman Problem 1) Write down the