Re: PerlSetEnv off and EMBPERL_OPTIONS

1999-10-06 Thread Doug MacEachern
On Wed, 6 Oct 1999, randyboy wrote: > Hi, > > According to the guide, one of the performance optimizations available > to me include using PerlSetEnv Off to avoid populating %ENV. However, I'm > currently using PerlSetEnv to set EMBPERL_OPTIONS to 16 and > EMBPERL_ESCMODE to 0. So if I were

RE: Parse::ePerl::Execute

1999-10-06 Thread Doug MacEachern
On Mon, 4 Oct 1999, Gerald Richter wrote: > > > > BTW, what's the future of ePerl? Development has been quiet for over a > > year. Is Ralph Engelschall still the maintainer? And it's sad to see > > that perl.apache.org doesn't mention ePerl anymore, while it mentions > > HTML::Embperl. > > > Ralf

Re: cannot start apache

1999-10-06 Thread Doug MacEachern
On Mon, 4 Oct 1999, Jearanai Vongsaard wrote: > I cannot run "apachectl start" which I got errors as belows: > I use apache1.3.9 and mod_perl1.21 which run in Origin200 IRIX6.4 with > perl 5.00502. I ever run the start before I installed perl5.00502(my > previous perl is perl5.004.4). Somebody he

Re: Mandrake 6.1 and Apache::Util loadproblem..

1999-10-06 Thread Doug MacEachern
On Mon, 4 Oct 1999, Morten Bøgeskov wrote: > > Hello... and Help... > > I've been trying to install mod_perl and Apache_1.3.9 on my mandrake > distribution, but thinga are not alle that well.. > Compiled apache and mod_perl (dso) with no problem... however.. > If I use the ``use Apache::Util q

Re: Too many aguments for ....

1999-10-06 Thread Doug MacEachern
On Sun, 3 Oct 1999, Nick Bauman wrote: > > I'm getting an intermittant error with an > Apache::Registry-based script. Every few invokations I > get an error message in my error log file that looks > like: > > Error: Too many arguments for > Apache::ROOT::myscript::mysubroutine ... > > I've not

Re: mandrake 6.1 apache 1.3.9 , modperl 1.21

1999-10-06 Thread Doug MacEachern
please try linking mod_perl static -Doug On Sun, 3 Oct 1999, Benjamin KRIEF wrote: > I've got perl 5.00503 > > i got evrything in RPM's, and i've got a "Out of memory" and "child exiting" > in my errorlog each > time i load some perl script with modperl. > basic scripts are workin, but I thi

RE: HTML::Embperl and 'undefined symbol: perl_eval_sv'

1999-10-06 Thread Doug MacEachern
On Sun, 3 Oct 1999, Gerald Richter wrote: > > > > When I use HTML::Embperl for instance like: > > > > perl -MHTML::Embperl -e 'HTML::Embperl::Execute(some_embperl.epl)' > > > > I got: perl: error in loading shared libraries: > > /usr/local/lib/site_perl/5.00561/i686-linux/auto/HTML/Embperl/Embper

Re: relative redirect (was RE: Chaining and redirection)

1999-10-06 Thread Doug MacEachern
On Sat, 2 Oct 1999, David Harris wrote: > > Dirk Lutzebaeck wrote: > > ie. > > > > > > Options ExecCGI > > SetHandler perl-script > > PerlHandler Apache::OutputChain Apache::GzipChain Apache::Registry > > > > > > and /PERL/x.pl > > > > use Apache; > > use Apache::Constants qw(REDIRECT); > > $r

Re: IPC::ShareLite? [was Re: MOD_PERL question]

1999-10-06 Thread Doug MacEachern
On Sat, 2 Oct 1999, Gerd Knops wrote: > > Doug MacEachern wrote: > > > > I have the feeling IPC::Shareable is no longer supported. have you tried > > swaping it for IPC::ShareLite? > > > I checked CPAN and can't find IPC::ShareLite. Where is it hiding? right where it should be: http://www.cpan

ANNOUNCE: HTML-Embperl 1.2b10 (pre 1.2)

1999-10-06 Thread Gerald Richter
The URL ftp://ftp.dev.ecos.de/pub/perl/embperl/HTML-Embperl-1.2b10.tar.gz has entered CPAN as file: $CPAN/authors/id/GRICHTER/HTML-Embperl-1.2b10.tar.gz size: 251896 bytes md5: b2f0eb3cace188fded36fdd1020b092e Embperl is a module for embedding Perl code in HTML pages. See http://per

Re: modules to be left enabled in a mod_perl back-end server?

1999-10-06 Thread Doug MacEachern
On 1 Oct 1999, Stephen Zander wrote: > > "Stephen" == Stephen Zander <[EMAIL PROTECTED]> writes: > Stephen> Is the SetHandler functionaity of mod_mime available from > Stephen> within mod_perl somehow? This was the one ovbious > Stephen> problem I could see with removing everythi

Re: child segmentation faults

1999-10-06 Thread Doug MacEachern
is mod_perl configured as a dso or static? if dso, try static. otherwise, see the SUPPORT doc for hints on getting a stack trace. -Doug On Fri, 1 Oct 1999, Wim Kerkhoff wrote: > Hi, > > Every once in a while I see lines like these in the error log: > > [Fri Oct 1 16:05:42 1999] [notice] chi

Re: external module and mod_perl

1999-10-06 Thread Doug MacEachern
On Fri, 1 Oct 1999, Dustin Tenney wrote: > > mod_perl ties the Perl STDOUT filehandle to Apache i/o, but this is > > different from C stdout, which cannot easily hooked to Apache i/o without > > a subprocess pipe (as mod_cgi does). I don't know of a decent workaround. > > do you have access to

Re: Passing environment variables back for logging

1999-10-06 Thread Doug MacEachern
On Sun, 26 Sep 1999, Clinton Gormley wrote: > I would like to set a session ID in a module, and then record that ID in > my access log. > > I am setting the environment variable in a PerlAccess Handler by doing > this : > $r->subprocess_env('TICKET'=>$SID); > > and I try to log it using > .

Re: performance difference between apache/perl modules and registry scripts question

1999-10-06 Thread Joshua Chamas
Greg Cope wrote: > > Dear All > > I have been asked to code several apache / perl modules. > > these module accept a "post" consisting of a long string - do a few database > things and return a long string to the browser. > > What are the advantages of using apache / mod_perl modules vs using

RE: PerlSetEnv off and EMBPERL_OPTIONS

1999-10-06 Thread Gerald Richter
Hi, > > According to the guide, one of the performance optimizations available > to me include using PerlSetEnv Off to avoid populating %ENV. However, I'm > currently using PerlSetEnv to set EMBPERL_OPTIONS to 16 and > EMBPERL_ESCMODE to 0. So if I were to go for this optimization is there > s

Re: Apache::ASP, Sessions and content handlers

1999-10-06 Thread Joshua Chamas
Dmitry Beransky wrote: > > Hi, > > I'm not sure what exactly it is that I'm trying to ask, so please bear with > me... :) > > I have a handler invoked with PerlHandler and a set of related ASP > files. The ASP files store state data in a $Session object. I need the > perl handler to choose an

Re: File Uploads via Browser Using Apache::ASP ?

1999-10-06 Thread Joshua Chamas
[EMAIL PROTECTED] wrote: > > I have found numerous scripts that will allow you to upload a file to a UNIX > server via your web browser, but cannot seem to figure out how to translate > these scripts into Apache::ASP or find example scripts in Apache::ASP. Can > anyone help? Thanks. In general

Apache::ASP, Sessions and content handlers

1999-10-06 Thread Dmitry Beransky
Hi, I'm not sure what exactly it is that I'm trying to ask, so please bear with me... :) I have a handler invoked with PerlHandler and a set of related ASP files. The ASP files store state data in a $Session object. I need the perl handler to choose an ASP file and issue an internal_redirec

PerlSetEnv off and EMBPERL_OPTIONS

1999-10-06 Thread randyboy
Hi, According to the guide, one of the performance optimizations available to me include using PerlSetEnv Off to avoid populating %ENV. However, I'm currently using PerlSetEnv to set EMBPERL_OPTIONS to 16 and EMBPERL_ESCMODE to 0. So if I were to go for this optimization is there some other w

Re: Dynamic page stats (was: Server Stats)

1999-10-06 Thread Rasmus Lerdorf
> While we're on the subject of dynamic pages and > stats, I'm in the process of writing a press > release database which is shared by hundreds > of clients. I haven't given too much though > to how to handle the stats, but as I finish the > back end design, I'm becoming more concerned that > trad

FAQ Regarding FastCGI/Mod_Perl

1999-10-06 Thread Viren Jain
Is there a FAQ regarding the differences between FastCGI and mod_perl, and where one or the other should be used? If not, I'd appreciate if someone could highlight the major points. In no way do I want to incite some sort of war thread, if this happens to be a touchy subject on

Re: New mod_perl RPM really needed? (was: sourcegarden plug)

1999-10-06 Thread Stephen Peters
Stas Bekman <[EMAIL PROTECTED]> writes: > I think it would help. If you succeed to build a good SRPM for a general > purpose usage, we ether can ask RH to put it in, or can put it on > sourcegarden or perl.apache.org - it's not an issue. Thanks! I found one, actually. On my RH6.0 box at home, I

Re: Hi! (fwd)

1999-10-06 Thread Ece P
Hi! I found this mailing when looking up things about perl. I'm hoping that this e-mail gets to you all who might be able to help me. > I'm trying to test a perl file on my own personal computer that will be > used for a website. I downloaded apache 1.3.6 software but didn't do any > configu

Re: encrypting source code

1999-10-06 Thread Mark Bainter
Nedim Cholich [[EMAIL PROTECTED]] wrote: > Tom, don't make it religious. Open Source is great paradigm, but some things > in life are not open source. Giving back to the community is noble, but we > have to make a living, and we can't all be Perl instructors, or write books I think that was a lit

Re: Server Stats

1999-10-06 Thread Tom Mornini
On Thu, 7 Oct 1999, Pascal Eeftinck wrote: > MySQL is quick, it's by far the fastest you can get at most operations. On the > other hand, you can't easily spread the load over multiple servers, you can > forget about commit/rollback, you won't have stored procedures (yet) - and > there's probably

Re: Compiling modperl on unixware

1999-10-06 Thread Tom Hughes
In message <[EMAIL PROTECTED]> "Feldman, Leonid" <[EMAIL PROTECTED]> wrote: > REGEX -DUSE_EXPAT -I../lib/expat-lite `../apaci` http_vhost.c > /bin/cc -c -I.. -I/usr/local/lib/perl5/5.00503/i386-svr4/CORE -I../os/unix > -I../include -DUW=200 -DMOD_PERL -DUSE_PERL_SSI -I/usr/include

Re: Server Stats

1999-10-06 Thread Pascal Eeftinck
At 13:38 6-10-99 -0500, Frank Livaudais wrote: >Our issue comes from the fact we will have tables with millions and >millions of records and >thousands of simultaneous users. So we need to power that Oracle brings, >we are just >looking for ways to tweak the performance I don't think (never tr

Re: sybase / mod_perl / linux question?

1999-10-06 Thread Michael Peppler
Jesse Kanner writes: > > Be careful here. Last I heard, the 'free' version of sybase ported to > linux was 'last year's model' and wasn't really that great. It's not the > same sybase that you'd get if you bought it new. True - but it's a version that a *lot* of people are still using in pr

Re: performance difference between apache/perl modules and registry scripts question

1999-10-06 Thread Perrin Harkins
This has been discussed on the list before. Please have a look at the archive and see if it answers your question. - Perrin On Wed, 6 Oct 1999, Greg Cope wrote: > Dear All > > I have been asked to code several apache / perl modules. > > these module accept a "post" consisting of a long string

Re: sybase / mod_perl / linux question?

1999-10-06 Thread Jesse Kanner
Be careful here. Last I heard, the 'free' version of sybase ported to linux was 'last year's model' and wasn't really that great. It's not the same sybase that you'd get if you bought it new. -j- On Wed, 6 Oct 1999, Greg Cope wrote: >Dear All > > >I was interested to read that sybase off a "

Re: sybase / mod_perl / linux question?

1999-10-06 Thread Michael Peppler
Greg Cope writes: > Dear All > > > I was interested to read that sybase off a "free licence" to linux > > The poeple I am working for are about to spend alot of money on a Sun / > Sybase combo as a backend for a mod_perl webserver. > > If sybase is "free" for linux what comments would

Re: New mod_perl RPM really needed? (was: sourcegarden plug)

1999-10-06 Thread Jauder Ho
If anyone really cares, I have a mod_perl rpm built at http://www.carumba.com/rpms/. It really is not that hard to do. Solaris packaging is much more of a pain in the butt. --Jauder On Wed, 6 Oct 1999, David Harris wrote: > > Young, Geoffrey S wrote: > > Thus, it might be worth mentioning

sybase / mod_perl / linux question?

1999-10-06 Thread Greg Cope
Dear All I was interested to read that sybase off a "free licence" to linux The poeple I am working for are about to spend alot of money on a Sun / Sybase combo as a backend for a mod_perl webserver. If sybase is "free" for linux what comments would people have of replacing the sun / sybase wi

File Uploads via Browser Using Apache::ASP ?

1999-10-06 Thread wrl
I have found numerous scripts that will allow you to upload a file to a UNIX server via your web browser, but cannot seem to figure out how to translate these scripts into Apache::ASP or find example scripts in Apache::ASP. Can anyone help? Thanks.

performance difference between apache/perl modules and registry scripts question

1999-10-06 Thread Greg Cope
Dear All I have been asked to code several apache / perl modules. these module accept a "post" consisting of a long string - do a few database things and return a long string to the browser. What are the advantages of using apache / mod_perl modules vs using a registry / mod_perl style CGI scri

Re: Server Stats

1999-10-06 Thread Rex Staples
I read the RDBMS versus article and was interested in the AOLserver solution. Assuming that I don't mind programming Tcl versus Perl, what are the pro's and cons of Apache and mod_perl versus AOLserver? Rex Matt Sergeant wrote: > > Sadly Phillip Greenspun, while a great writer, isn't that fabu

Re: Server Stats

1999-10-06 Thread Frank Livaudais
Our issue comes from the fact we will have tables with millions and millions of records and thousands of simultaneous users. So we need to power that Oracle brings, we are just looking for ways to tweak the performance

Re: Server Stats

1999-10-06 Thread Michael Peppler
Matt Sergeant writes: > On Wed, 06 Oct 1999, Perrin Harkins wrote: > > Matt Sergeant wrote: > > > > > > On Tue, 05 Oct 1999, Frank Livaudais wrote: > > > > > Check out slashdot: http://slashdot.org> which serves up about half a > > > > > million hits a day (all dynamic) from a single dual x

Re: Server Stats

1999-10-06 Thread Matt Sergeant
On Wed, 06 Oct 1999, Perrin Harkins wrote: > Matt Sergeant wrote: > > > > On Tue, 05 Oct 1999, Frank Livaudais wrote: > > > > Check out slashdot: http://slashdot.org> which serves up about half a > > > > million hits a day (all dynamic) from a single dual xeon box running > > > > mod_perl. > > >

Re: Server Stats

1999-10-06 Thread Perrin Harkins
Matt Sergeant wrote: > > On Tue, 05 Oct 1999, Frank Livaudais wrote: > > > Check out slashdot: http://slashdot.org> which serves up about half a > > > million hits a day (all dynamic) from a single dual xeon box running > > > mod_perl. > > > > What database is this running? Does anyone know? We

Re: Dynamic page stats (was: Server Stats)

1999-10-06 Thread Elizabeth Mattijsen
At 10:29 10/6/99 -0700, Jim Serio wrote: >How do those of you who run dynamic Web sites >deal with stats. I'm particularily interested >in those of you who use 1 or 2 scripts to >generate the whole site and how to differentiate >between what sections were viewed since a single >script generated th

Re: Apache segfaulting upon perl module load

1999-10-06 Thread Stas Bekman
> If anyone is interested in the deb, let me know. If there is a good > common place to post it, let me know that, too. Otherwise, I can stick > it up on my web site. > > I'd like to make a source deb, too, with the extra stuff needed for > static mod_perl, but I'm not too sure about how to go

Dynamic page stats (was: Server Stats)

1999-10-06 Thread Jim Serio
While we're on the subject of dynamic pages and stats, I'm in the process of writing a press release database which is shared by hundreds of clients. I haven't given too much though to how to handle the stats, but as I finish the back end design, I'm becoming more concerned that traditional stats

Re: Apache segfaulting upon perl module load

1999-10-06 Thread Keith G. Murphy
Thank you, Doug. This turned out to be the solution. A complicating factor was that I was building from .deb files, since I run Debian, and the mod_perl source .deb blows up. I wanted to do things in such a way that I ended up with good .debs, to make it easier to deinstall, replace, etc. I di

Re: New mod_perl RPM really needed? (was: sourcegarden plug)

1999-10-06 Thread Jim Winstead
On Oct 06, David Harris wrote: > Young, Geoffrey S wrote: > > Thus, it might be worth mentioning that RPMs are a _bad_ idea for > > those just getting into mod_perl. That is, unless others have been more > > successful that I... > > I've got mod_perl running just fine with my own Apache pack

mod_perl building methods

1999-10-06 Thread James G Smith
This is a slight tangent on the previous ``New mod_perl RPM really needed?'' thread. In some ways, this gets back to the sourcegarden.org origins of the thread. Maybe we need a general page mentioning all the different ways one can install Apache with mod_perl. I know there are RPMs, debian pa

Re: Can't get a requested page

1999-10-06 Thread Spidaman The Defenestrator
I won't look at this to closely, the first glance raises enough questions. So, a few points, do you really intend an exit with every file served? Do you really want your handler to fetch a URL, as a proxy, or should you instead redirect to the URL with the query string attached? Consider the fol

a summary was: RE: New mod_perl RPM really needed? (was: sourcegarden plug)

1999-10-06 Thread Stas Bekman
> On Wed, 06 Oct 1999, Stas Bekman wrote: > > I guess that the real problem is a DSO and all the required configuration. > > Why don't we roll a static mod_perl with apache: apache-mod_perl.rpm > > and let all the troubles go. Just install this rpm, fire the server and > > you are all set! > > Be

RE: New mod_perl RPM really needed? (was: sourcegarden plug)

1999-10-06 Thread David Harris
Stephen Peters [mailto:[EMAIL PROTECTED]] wrote: > I found one, actually. On my RH6.0 box at home, I installed an > apache+mod_perl SRPM that seemed to work fine. Mod_perl was > statically linked in, so I don't have the chaining difficulties. > Unfortunately, I had to compile from the SRPM vers

Re: Server Stats

1999-10-06 Thread Vivek Khera
> "FL" == Frank Livaudais <[EMAIL PROTECTED]> writes: >> Check out slashdot: http://slashdot.org> which serves up about half a >> million hits a day (all dynamic) from a single dual xeon box running >> mod_perl. FL> What database is this running? Does anyone know? We are looking FL> to run

[Job] London UK

1999-10-06 Thread Matt Sergeant
Saw this on jobserve if anyone's interested - I'm no longer down south so I can't do it. http://www.jobserve.com/database/data/instants/1999100610595904801.html -- Details: FastNet Software Ltd - XML, Perl, Databases. Tagline: High Performance Web Solutions Web Sites: http://come.to/fastnet ht

RE: New mod_perl RPM really needed? (was: sourcegarden plug)

1999-10-06 Thread Matt Sergeant
On Wed, 06 Oct 1999, Stas Bekman wrote: > I guess that the real problem is a DSO and all the required configuration. > Why don't we roll a static mod_perl with apache: apache-mod_perl.rpm > and let all the troubles go. Just install this rpm, fire the server and > you are all set! Because most peo

RE: New mod_perl RPM really needed? (was: sourcegarden plug)

1999-10-06 Thread Young, Geoffrey S.
sure thing. I'll do some searching of the archives so I can add the troubles of others to my own. Hold me to it :) until David's last note, I didn't realize that the mod_perl RPM was a DSO (now that I think of it, it makes sense, but since I wasn't able to get it working...) Having a static a

RE: New mod_perl RPM really needed? (was: sourcegarden plug)

1999-10-06 Thread Stas Bekman
You have nailed me down, I'll start the RPM problems section, but you will have to help me to report the known issues, since I use rpms for everything but apache/perl. And yes I would mention that in order to compile you need a compiler :) > well, I think that maybe we are getting a bit off topi

Re: XML::Parser not to convert attributes to unicode

1999-10-06 Thread Matt Sergeant
On Wed, 06 Oct 1999, Radovan Semancik wrote: > Hi! > > XML::Parser converts everything to Unicode. I have read in FAQ, that > using thing abou original_string. But, tag attributes are coverted > anyway. How to prevent that? You can't. Use Unicode::String to convert back to whatever encoding you

RE: New mod_perl RPM really needed? (was: sourcegarden plug)

1999-10-06 Thread Stas Bekman
I guess that the real problem is a DSO and all the required configuration. Why don't we roll a static mod_perl with apache: apache-mod_perl.rpm and let all the troubles go. Just install this rpm, fire the server and you are all set! > Stas Bekman wrote: > > When you install gcc*.rpm, do you comp

Compiling modperl on unixware

1999-10-06 Thread Feldman, Leonid
Hi, I am having trouble compiling mod_perl 1.21 on unixware 2.1.3 with Apache 1.3.9. perl Makefile.PL EVERYTHING=1 USE_APACI=1 APACHE_PREFIX=/usr/local/apache It breaks on the following: make REGEX -DUSE_EXPAT -I../lib/expat-lite `../apaci` htt

RE: New mod_perl RPM really needed? (was: sourcegarden plug)

1999-10-06 Thread Young, Geoffrey S.
Now, that's a good idea... > -Original Message- > From: David Harris [SMTP:[EMAIL PROTECTED]] > Sent: Wednesday, October 06, 1999 9:01 AM > To: Stas Bekman > Cc: Young, Geoffrey S.; mod_perl list > Subject: RE: New mod_perl RPM really needed? (was: sourcegarden plug) > > > How

RE: New mod_perl RPM really needed? (was: sourcegarden plug)

1999-10-06 Thread David Harris
Stas Bekman wrote: > When you install gcc*.rpm, do you complain about it? mostly not. Why? > because it's something that use without special needs. It's easy to make a > mod_perl RPM to handle some basic stuff. But if you are a real user of > mod_perl you want to discover many of its not so strig

RE: New mod_perl RPM really needed? (was: sourcegarden plug)

1999-10-06 Thread Young, Geoffrey S.
well, I think that maybe we are getting a bit off topic now... however, for those who wish to continue... I wasn't suggesting that RPMs in general were bad (as I said, I am RPM impaired). To the contrary, I think that in order for Linux to succeed, it needs an InstallShield type of tool - RPMs

Re: New mod_perl RPM really needed? (was: sourcegarden plug)

1999-10-06 Thread Stas Bekman
> > Thus, it might be worth mentioning that RPMs are a _bad_ idea for > > those just getting into mod_perl. That is, unless others have been more > > successful that I... RPMs aren't bad. You should understand something. RPMs and other packaging systems were developed to enable distributing

New mod_perl RPM really needed? (was: sourcegarden plug)

1999-10-06 Thread David Harris
Young, Geoffrey S wrote: > Thus, it might be worth mentioning that RPMs are a _bad_ idea for > those just getting into mod_perl. That is, unless others have been more > successful that I... I've got mod_perl running just fine with my own Apache package and RedHat's mod_perl RPM. I underst

RE: ANNOUNCE: Guide => Book

1999-10-06 Thread jreid
On 6 Oct, Young, Geoffrey S. wrote: > well, I spent a coupla days trying to recall my first days in mod_perl and I > remembered a few pitfalls not in the Guide. Since I have seen other users > on this list encounter the same questions, I thought I'd bring them up... > > 1) getting mod_perl RPMs

Can't get a requested page

1999-10-06 Thread Luis Calero Munnoz
Hi, I need a script that gets a url, and if it doesn't have a query_string, adds one to the url and requests it again. Then, when it comes with a query, reads the file, print it and exit. The matter is that the script enters a loop as it is requesting pages that trigger the script again. But

RE: ANNOUNCE: Guide => Book

1999-10-06 Thread Young, Geoffrey S.
well, I spent a coupla days trying to recall my first days in mod_perl and I remembered a few pitfalls not in the Guide. Since I have seen other users on this list encounter the same questions, I thought I'd bring them up... 1) getting mod_perl RPMs to work under Linux 2) figuring out exactly wh

XML::Parser not to convert attributes to unicode

1999-10-06 Thread Radovan Semancik
Hi! XML::Parser converts everything to Unicode. I have read in FAQ, that using thing abou original_string. But, tag attributes are coverted anyway. How to prevent that? -- Radovan Semancik ([EMAIL PROTECTED]) System Engineer, Business Global

RE: Re: Performance problems

1999-10-06 Thread ricarDo oliveiRa
thank you guys for replying. I won't have all the details until the end of the week, so I can't really tell you more right now. It probably has something to do with database access. thank you! ./Ricardo Oliveira --Original Message-- From: Leslie Mikesell <[EMAIL PROTECTED]> To: ricarDo

Re: Server Stats

1999-10-06 Thread Matt Sergeant
On Tue, 05 Oct 1999, Frank Livaudais wrote: > > Check out slashdot: http://slashdot.org> which serves up about half a > > million hits a day (all dynamic) from a single dual xeon box running > > mod_perl. > > What database is this running? Does anyone know? We are looking to run Oracle 8i > on

Re: new for embperl...

1999-10-06 Thread G.Richter
> I checked in the error log file and I found : > > [Wed Oct 6 00:09:25 1999] Embperl.pm: Constant subroutine rcCGIError > redefined > at /usr/freeware/lib/perl5/5.00502/constant.pm line 161. > > Then, I went to the constant.pm at line 161 and I found the line below: > > *{"${pkg}::$n