Re: your mail

2000-01-31 Thread Andre Landwehr
On Fri, Jan 28, 2000 at 08:20:32PM +, [EMAIL PROTECTED] wrote: Check this :") http://www.fenrus.demon.nl/ Is someone trying to beat M$ at the Mindcraft benchmark after all with this? ;-) Andre

RE: Novel technique for dynamic web page generation

2000-01-31 Thread Matt Sergeant
On Mon, 31 Jan 2000, Paul J. Lucas wrote: Yes. You simply put in dummy content: INPUT TYPE=text NAME="CustomerFName" CLASS="value::customer_name" VALUE="Joe Blow" where "customer_name" is a key into the page's object hash, i.e.: $this-{

Embperl stranges with [$ $] and [* *]

2000-01-31 Thread Vladimir Ivaschenko
Hi. I've noticed strange behavior when I mix the [$ $] and [* *] operators in Embperl code. I had the following code: -- [$ if ($#$dat = 0) $] hr bLinks: [+ $#$dat +]/bbr table cellspacing=5 [* foreach $row (@$dat) { *] tr td a href="[+ $page_url +]?shownode=[+ $row-[4] +]"[+

Embperl and images on the same page

2000-01-31 Thread Jasper Wong
Hi guys, I've just installed embperl on my system and configured apache to use HTML::Embperl handler on the main page (index.html contains embperl code). The problem is images referenced by index.html fail to show up on both IE5 and NS4.6 (PC version). Netscape would tell me that I don't have

Apache::URI troubles

2000-01-31 Thread Geoffrey Young
hi all... I found the below discussion in the archives... while Doug's suggestion helps fill in some of the missing uri info, I still am having trouble isolating $uri-user and $uri-password, and $uri-hostinfo in a PerlTransHandler... that is, given: http://foo:[EMAIL PROTECTED] I can't

RE: Embperl: my-variables in [$sub ...$][$endsub$] blocks?

2000-01-31 Thread Gerald Richter
Hi, I'd like to use subroutines within my Embperl documents which use parameters. The usage proposed in the manual [$ sub foo $] [- $p = shift -] p parameter: [+ $p +]/p [$ endsub $] works but defines $p globally, which is quite inconvenient. However, adding "my" to get

RE: Output in real time [Emberl 1.2.0]

2000-01-31 Thread Gerald Richter
I want that the browser show the output perl code in real time to see the progress whithout a time out. If I use [+ "The output" +] or [- print "The output" -] , the entire page is shown in one time ( when all is finished ) ie no real time If I use [- print STDOUT "The

RE: Embperl stranges with [$ $] and [* *]

2000-01-31 Thread Gerald Richter
Hi. I've noticed strange behavior when I mix the [$ $] and [* *] operators in Embperl code. I had the following code: -- [$ if ($#$dat = 0) $] hr bLinks: [+ $#$dat +]/bbr table cellspacing=5 [* foreach $row (@$dat) { *] tr td a href="[+ $page_url +]?shownode=[+ $row-[4]

RE: Embperl and images on the same page

2000-01-31 Thread Gerald Richter
Location / SetHandler perl-script PerlHandler HTML::Embperl Options +ExecCGI AllowOverride None Order allow,deny Allow from all /Location

mod_ssl in fronend-backend Apache configuration

2000-01-31 Thread BeerBong
Hello all! I need encrypted access to some directories on some virtual hosts. I have lightweight proxy apache server and backend mod_perl server. mod_ssl is not a light thing, and I need encrypt mod_perl'd script results only, therefore I think that mod_ssl should be in back-end server. Am I

RE: Novel technique for dynamic web page generation

2000-01-31 Thread Paul J. Lucas
On Mon, 31 Jan 2000, Matt Sergeant wrote: What about designers wanting to use CSS? Classes not in the class map are ignored, so CSS still works. - Paul

Re: Embperl and images on the same page

2000-01-31 Thread Andre Landwehr
On Mon, Jan 31, 2000 at 04:12:02PM +0100, Gerald Richter wrote: PerlSetEnv EMBPERL_FILESMATCH "\.html" btw: Instead of EMBPERL_FILESMATCH I use a normal apache Files *.epl section for this (with PerlHandler HTML::Embperl of course), which works perfectly for me. Is there any reason to do

Japanese text parsing

2000-01-31 Thread Hiroshi Hasebe
Is anyone running mod_perl 1.x built with JPerl, not with Java Perl :-), but with a version of Perl which can parse Japanese-language text? It seems that JPerl 5 doesn't exist (yet). All I need is Japanese-aware transliterations, so probably I can home-brew Perl 5 code, but if things happen to

Embperl 1.2.1: multipart/form-data processing and nested pages

2000-01-31 Thread Enno Ewers
Hi, I am trying to process a file upload with multipart/form-data in a nested page that is called with Execute(). I know that multipart/form-data can't be processed twice, so I tried a call like this: Execute( { inputfile = 'process_form.epl', param = [$whatever,\%fdat],

RE: Embperl and images on the same page

2000-01-31 Thread Jason Bodnar
You images are served by Embperl with this configuration. Embperl most time will corrupt your images, also it doesn't makes any sens to do so and waste performance. You should add a PerlSetEnv EMBPERL_FILESMATCH "\.html" Performance-wise, which is better? The above or FilesMatch? ---

Re: Compiling mod_perl as a DSO?

2000-01-31 Thread Bill Jones
After much fighting - 2/3 success :/ Better than nothing :] Server Version: Apache/1.3.12-dev (Unix) mod_perl/1.21_01-dev Server Built: Jan 31 2000 10:55:04 API Version: 19990320:6 Run Mode: standalone User/Group: sneex(69)/69 Hostname/port: insecurity.org:80 Daemons: start: 5    min

Re: Japanese text parsing

2000-01-31 Thread Matt Sergeant
On Mon, 31 Jan 2000, Hiroshi Hasebe wrote: Is anyone running mod_perl 1.x built with JPerl, not with Java Perl :-), but with a version of Perl which can parse Japanese-language text? It seems that JPerl 5 doesn't exist (yet). All I need is Japanese-aware transliterations, so probably I can

Apache/1.3.12-dev (Unix) mod_perl/1.21_01-dev Was [Re: Compilingmod_perl as a DSO?]

2000-01-31 Thread Bill Jones
Tested successfully with: # Mod_perl testing... # Send Webmaster ([EMAIL PROTECTED]) e-mail when 'events' occur... Location / PerlLogHandler Apache::LogMail PerlSetVar LogMailto [EMAIL PROTECTED] PerlSetVar LogPattern \.(cgi|htm?|shtm?|txt)$ /Location using

Re: Compiling mod_perl as a DSO?

2000-01-31 Thread Matt Sergeant
I'm not sure why people are struggling with this so much this week. Here's what to do in a nutshell: download and untar apache download and untar modperl - at the same directory level. cd modperl perl Makefile.PL \ EVERYTHING=1 \ APACHE_PREFIX=/usr/apache \

Re: Compiling mod_perl as a DSO?

2000-01-31 Thread Bill Jones
Thanks for responding :) Question: ADD_MODULE=log_referer,rewrite,proxy,so,vhost_alias,mime_magic,expires Is this required? Why can't I just use APACI_ARGS to get 'all' ? Bill Jones * Systems Programmer *

403 Custom Response?

2000-01-31 Thread Aaron Ross
Hi! I can't get Apache::AuthCookie to work without causing a login box to popup. I'm hoping someone else has had this problem and can help me clean up my configuration. can anyone point me to configuration directives that might be causing this problem? Here is my .htaccess file: # Protect

Re: mod_ssl in fronend-backend Apache configuration

2000-01-31 Thread Tom Brown
On Mon, 31 Jan 2000, BeerBong wrote: Hello all! I need encrypted access to some directories on some virtual hosts. I have lightweight proxy apache server and backend mod_perl server. mod_ssl is not a light thing, and I need encrypt mod_perl'd script results only, therefore I think

Re: Compiling mod_perl as a DSO?

2000-01-31 Thread Bill Jones
Question: ADD_MODULE=log_referer,rewrite,proxy,so,vhost_alias,mime_magic,expires Is this required? Why can't I just use APACI_ARGS to get 'all' ? While I don't build apache very often, I don't see what configure option that corresponds to. You'd have to have:

Using network appliance Filer with modperl

2000-01-31 Thread siberian
Hi All- I am building a pretty in depth architecture for our new service using ModPerl. I've done a lot of large scale/high traffic apps in modperl before but never in conjunction with a network attached file server. I am thinking that it would really make my life easy to have one central

Re: RegistryLoader

2000-01-31 Thread William Deegan
Stas Bekman wrote: If I user RegistryLoader to preload a script, should it show up in /perl-status?rgysubs (Apache::Status)?? Yes. Make sure that RegistryLoader didn't fail. (hint: watch the log) O.K. It doesn't show up in the error_log. === cat

Re: Using network appliance Filer with modperl

2000-01-31 Thread Perrin Harkins
On Mon, 31 Jan 2000, siberian wrote: My question is : Has anyone experienced any 'gotchas' in putting perl code that modperl handlers use on a Network Attached file server like a network appliance box ( www.netapp.com )? Just make sure you have time synchronized between your servers and the

Re: Using network appliance Filer with modperl

2000-01-31 Thread James G Smith
siberian [EMAIL PROTECTED] wrote: My question is : Has anyone experienced any 'gotchas' in putting perl code that modperl handlers use on a Network Attached file server like a network appliance box ( www.netapp.com )? I am assuming that there are no real issues but before i go blow a ton of cash

Re: RegistryLoader

2000-01-31 Thread Stas Bekman
Stas Bekman wrote: If I user RegistryLoader to preload a script, should it show up in /perl-status?rgysubs (Apache::Status)?? Yes. Make sure that RegistryLoader didn't fail. (hint: watch the log) O.K. It doesn't show up in the error_log.

RE: Embperl and images on the same page

2000-01-31 Thread Gerald Richter
On Mon, Jan 31, 2000 at 04:12:02PM +0100, Gerald Richter wrote: PerlSetEnv EMBPERL_FILESMATCH "\.html" btw: Instead of EMBPERL_FILESMATCH I use a normal apache Files *.epl section for this (with PerlHandler HTML::Embperl of course), which works perfectly for me. Is there any reason

Re: RegistryLoader

2000-01-31 Thread William Deegan
Stas Bekman wrote: Before the server is started STDERR is not tied to error_log, all the log messages go to the console you start the httpd from. O.K. I get no messages. Here's the snippet from the startup.pl file: # # Preload certain

Re: RegistryLoader

2000-01-31 Thread Stas Bekman
Stas Bekman wrote: Before the server is started STDERR is not tied to error_log, all the log messages go to the console you start the httpd from. O.K. I get no messages. Here's the snippet from the startup.pl file: # # Preload

Re: Using network appliance Filer with modperl

2000-01-31 Thread brian moseley
On Mon, 31 Jan 2000, Perrin Harkins wrote: On Mon, 31 Jan 2000, siberian wrote: My question is : Has anyone experienced any 'gotchas' in putting perl code that modperl handlers use on a Network Attached file server like a network appliance box ( www.netapp.com )? Just make sure you

RE: EMBPERL_INPUT_FUNC for SSI + Embperl?

2000-01-31 Thread Gerald Richter
Before I get too far into this, is it a reasonable solution to use the EMBPERL_INPUT_FUNC feature for combining SSI and Embperl code in the same page? I probably want to migrate away from SSI and do everything within the Embperl framework, but for initiating the site and using my current

RE: 403 Custom Response?

2000-01-31 Thread Gerald Richter
Hi! I can't get Apache::AuthCookie to work without causing a login box to popup. I'm hoping someone else has had this problem and can help me clean up my configuration. can anyone point me to configuration directives that might be causing this problem? I recently run into this problem.

Re: 403 Custom Response?

2000-01-31 Thread Aaron Ross
hi Gerald! you rock thanks, aaron Hi! I can't get Apache::AuthCookie to work without causing a login box to popup. I'm hoping someone else has had this problem and can help me clean up my configuration. can anyone point me to configuration directives that might be

CGI test fails

2000-01-31 Thread Gil Vidals
Hi, I installed Apache 1.3.11 and mod_perl 1.21 and received the errors during the make test phase. I went ahead and installed anyway because the error doesn't seem to be significant. I've never had an error occur during the build of a mod_perl enabled httpd and am wondering how to eliminate

Re: Using network appliance Filer with modperl

2000-01-31 Thread Tim Bunce
On Mon, Jan 31, 2000 at 11:16:23AM -0800, siberian wrote: Hi All- I am building a pretty in depth architecture for our new service using ModPerl. I've done a lot of large scale/high traffic apps in modperl before but never in conjunction with a network attached file server. I am

Re: overriding document root dynamically?

2000-01-31 Thread Jonathan Swartz
At 02:09 PM 1/28/00 -0800, you wrote: Uh, why not? No module after the Trans phase looks at document root, that I'm aware of. index.html is handled by mod_autoindex during the content phase upon noticing that it's a MAGIC_DIR_TYPE, causing an internal (or external, if no slash) redirect. And

Re: Using network appliance Filer with modperl

2000-01-31 Thread Tim Bunce
On Mon, Jan 31, 2000 at 02:15:37PM -0800, Ian Struble wrote: On Mon, 31 Jan 2000, Tim Bunce wrote: On Mon, Jan 31, 2000 at 11:16:23AM -0800, siberian wrote: Hi All- I am building a pretty in depth architecture for our new service using ModPerl. I've done a lot of large scale/high

Re: Using network appliance Filer with modperl

2000-01-31 Thread Jeffrey W. Baker
siberian wrote: Hi All- I am building a pretty in depth architecture for our new service using ModPerl. I've done a lot of large scale/high traffic apps in modperl before but never in conjunction with a network attached file server. I am thinking that it would really make my life

UK based modperl agency required for Virgin

2000-01-31 Thread Clinton Gormley
Title: UK based modperl agency required for Virgin You have all supported me tremendously through building my first mod_perl web site : http://www.orgasmicwines.com - many thanks. Now Orgasmic Wines has raised its first round of capital from Richard Branson, and we are becoming Virgin Wines

Re: Problems with custom config directives in user written modules

2000-01-31 Thread Dave Hayes
Following up to myself I am. Firstly, that was Directive3 (not Directive4). Directive3 returns OK. $ bin/apachectl configtest works just fine, no problems. $ bin/apachectl start is where it fails to find the command, looks like in some related child process. It seems to be that the

Re: www.modperl.com

2000-01-31 Thread Doug Kyle
"Paul J. Lucas" wrote: On Sun, 30 Jan 2000, Gunther Birznieks wrote: Another question is why www.modperl.com at all? Why not store the material as part of the main mod_perl site? Or off of the apache site? I guess I am just not sure why the site which seems to be centered around the

Re: www.modperl.com

2000-01-31 Thread Fabrice Scemama
Come on, folks! www.modperl.com is a nice open source initiative. There's no specific rule about what should and what should not be put in a open source web site. We'll enjoy modperl.com just as we already enjoy perl.apache.org ! "Paul J. Lucas" wrote: On Sun, 30 Jan 2000, Gunther Birznieks

'Out of memory during large request for 134221824 bytes' ???

2000-01-31 Thread Ofer Inbar
I'm developing a web'n'database app using Apache::Registry and DBI. The app has been in use for about six months, and I continue to make incremental improvements (on a separate server that is only used for development purposes) to the code. At some point late last week, one afternoon while I was

Re: Using network appliance Filer with modperl

2000-01-31 Thread Leslie Mikesell
According to Tim Bunce: And, just to be balanced, has anyone _not_ found any 'gotchas' and is enjoying life with a netapp or similar NFS file serving appliance? I haven't really had any gotchas in terms of performance. But you do have to plan things out if you are going to be

Ahhh! Too many Cookie modules ...

2000-01-31 Thread Bruce W. Hoylman
There are three CPAN modules that seem to want to compete for my Cookie module attention: Apache-Cookie-0.1: installs: site_perl/5.005/Apache/Cookie.pm site_perl/5.005/CGI/Cookie.pm unlinks: perl5/5.00503/CGI/Cookie.pm

How can I get on the mod_perl mailing list!

2000-01-31 Thread Tri D. Hoang
Hi, Could anyone tell me how to get on mod_perl mailing list. Thanx. Tri [EMAIL PROTECTED]

RE: Embperl and images on the same page

2000-01-31 Thread Jasper Wong
Thanks guys! The setup is working fine now :) Jasper On Mon, Jan 31, 2000 at 04:12:02PM +0100, Gerald Richter wrote: PerlSetEnv EMBPERL_FILESMATCH "\.html" btw: Instead of EMBPERL_FILESMATCH I use a normal apache Files *.epl section for this (with PerlHandler HTML::Embperl of

Re: Can't upload binary file (Apache::ASP sample)

2000-01-31 Thread Joshua Chamas
Greg wrote: I'm using Apache::ASP-script that was taken from http://www.nodeworks.com/asp/eg/file_upload.asp to upload an image to the server. the server configured as front-end (mod_proxy) + backend (mod_perl) server, Uploader script is processed on backend server. here is the code:

Re: mod_ssl in fronend-backend Apache configuration

2000-01-31 Thread Ilya Obshadko
Hello BeerBong, ÐÏÎÅÄÅÌØÎÉË, 31 ÑÎ×ÁÒÑ 2000 Ç., you wrote: B mod_ssl is not a light thing, and I need encrypt mod_perl'd script results B only, therefore I think that mod_ssl should be in back-end server. Am I B right ? Does mod_proxy pass ssl encrypted data? mod_proxy allows CONNECT method