EmbPerlObject setup for a virtual host

2000-06-14 Thread marcus
ect Options ExecCGI " I don't know much about configuring .htaccess and don't want to mess it up. Has anybody else solved this one? Thanks, Marcus Friedlaender - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: EmbPerlObject setup for a virtual host

2000-06-15 Thread marcus
to use plain html files, or they would be processed uneccessarily by EmbPerl. Thanks, Marcus Friedlander - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

hosts that do embperl

2000-06-21 Thread marcus
Can anyone recommend a friendly web hosting service that does embperl and is willing to take care of the needs of developers, meaning they'll install perl extensions you need etc...? (Preferably located in Germany, the UK, or the Benelux area of the globe) Thanks, Marcus Friedla

Problem with Embperl2.2.0 and httpd-2.0.59/mod_perl2.0.2

2006-11-13 Thread Marcus Mueller
I can't seem to get Embperl to run properly. I think I've followed all the right steps to compile it and get it working, I also compiled mod_perl2.0.2 statically into apache, and it seems to work. The symptom is that when I attempt to start apache 2.0.59, I get a nice little message and a fai

Compiling under Perl configured with 64 bit integers (use64bitint)

2006-11-14 Thread Marcus Doemling
line to: sprintf (sSubCode, " HTML::Embperl::ProcessSub (%ld, %d, %d)", (I32)r -> Buf.pFile, nSubPos, r -> Buf.nBlockNo) ; This fixed it. Hope this is useful info. Best, Marcus - To unsubscribe, e-mail: [EMAIL

Revitalizing Embperl

2007-09-17 Thread Marcus Doemling
it out. So how about Embperl joining forces with the mod_perl people. Is this a crazy idea or would it be possible. Imagine you just installed mod_(emb)perl and you're all set with Embperl - ready to create dynamic web pages. What a winner technology that would be - a PHP k

RE: Embperl BETA 2.4.0 is available

2010-04-13 Thread Marcus Doemling
I installed this on my iMac (Snow Leopard 10.6.3). Needed a minor fix to make it work. Here's some info: make test TESTARGS="-i" gives the following errors: #241 rtf/rtfmeta.asc... [-1][2455]ERR: 24: Error in Perl code: syntax error at /Users/marcus/Src/Embperl-2.4.0_

RE: Embperl BETA 2.4.0 is available

2010-04-18 Thread Marcus Doemling
Yes, the tests succeed. "All tests have been passed successfully!". Thanks, Marcus Subject: RE: Embperl BETA 2.4.0 is available From: gerald.rich...@ecos.de To: md7...@hotmail.com; embperl@perl.apache.org Date: Wed, 14 Apr 2010 05:46:39 +0200 Hi, thanks for th

RE: Embperl BETA 2.4.0 is available

2010-04-18 Thread Marcus Doemling
accessing a page I get the error: [Sun Apr 18 16:29:04 2010] [error] [3664]ERR: 404: : Not found '_base.epl', searched: [Sun Apr 18 16:29:04 2010] [error] Embperl::Object base _base.epl not found. Searched '/Users/marcus/web/test /Users/marcus/web' and ''

RE: Embperl BETA 2.4.0 is available

2010-04-19 Thread Marcus Doemling
Ok I found something and this is strange. If I replace LoadModule embperl_module libexec/apache2/Embperl.so with LoadModule embperl_module "/Users/marcus/src/Embperl-2.4.0_2/blib/arch/auto/Embperl/Embperl.bundle" then the embperl configuration settings are honored. To dig

Re: Embperl optKeepSpaces (patch)

2001-06-19 Thread Marcus Doemling
.c Embperl version 1.3.3   Marcus     1045,1046c1045,1066< /* output until next cmd */< owrite (r, r -> Buf.pCurrPos, p - r -> Buf.pCurrPos) ;---> /* output until next cmd */> /*

Re: optStripCR

2001-07-25 Thread Marcus Doemling
/embperl/2001-06/msg00089.html http://www.ecos.de/~mailarc/embperl/2001-06/msg00091.html Marcus - Original Message - From: "Ilia Lobsanov" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 20, 2001 4:12 PM Subject: Re: optStripCR > Here's a dem

Re: Performance numbers, HELP!

2002-04-19 Thread Marcus Doemling
What unit are your performance numbers? I was wondering what these numbers reflect and how they are measured. Thanks, Marcus - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Stop processing script upon die

2001-02-27 Thread Marcus R. Popetz
Hello all. I have been trying to get Embperl to stop further processing of my scripts when I detect an error. Anyone had any luck getting this to work? I've tried to: die "random error message here"; but Embperl just saves up the error messages to be delivered at a later date. What I'm trying

Re: Stop processing script upon die

2001-02-28 Thread Marcus R. Popetz
I originally responded to Neil saying that I was having buffering IO problems when trying this method but I must be working too much...because that was wrong. I wasn't seeing any output from Embperl which led me to believe that when I was exiting, the contents of http_headers_out were not get

Re: Stop processing script upon die

2001-02-28 Thread Marcus R. Popetz
As an additional comment: I poked around in the source and exit appears to be using structures from mod_perl, I'm unable to run under mod_perl due to memory constraints. /* from mod_perl's perl_util.c */ struct ufuncs umg; -mp At 10:01 AM 2/28/01, Marcus R. Popetz

Re: Stop processing script upon die

2001-02-28 Thread Marcus R. Popetz
Yep. That does it. Thanks. -mp ps. If the powers-that-be have a slightly less verbose way to stop processing from within a child script, if you could let the list know, that would be cool. At 10:25 AM 2/28/01, Neil Gunton wrote: > > My login testing occurs from within an .epl page that is

RE: problem with subroutines caching values of variables

2001-03-01 Thread Marcus R. Popetz
At 07:32 AM 3/1/01, Jonny Cavell wrote: >I thought that by being declared inside [- -], the subroutine would be >recompiled on every request, thus losing any reference to @fields. > >Jonny I don't think it recompiles anything unless mtime has changed. Turn on dbgShowCleanup to see for sure... -m

url escaping with $escmode = 2.

2001-03-05 Thread Marcus R. Popetz
$escmode = 2 (or 6) The result of a Perl expression is always URL-escaped (e.g., `&' becomes `%26'). Is what the docs say. My question is how to define 'perl expression': Should this result in $message being url escaped? [- local $escmode = 2; my $message = "A Message With Spaces"; $http_heade

Re: Using Lingua::Ispell in Embperl

2001-03-09 Thread Marcus R. Popetz
At 09:38 AM 3/9/01, Neil Gunton wrote: >And when I run this code, each time I get another zombie process: >(output from ps -aux) > >nobody2296 0.0 0.0 0 0 ? Z11:50 0:00 [aspell ] >nobody2351 1.8 0.0 0 0 ? Z12:32 0:00 [aspell ] I don't know about the code failing, b

Re: development?

2001-04-07 Thread Marcus R. Popetz
I believe, if your packages are included in @INC, when their mod times change, mod_perl will reload them. You probably need a perl script executed at apache startup that adds them into the parent processes copy of @INC. -mp At 12:52 PM 4/7/01, Kee Hinckley wrote: >-BEGIN PGP SIGNED MESSA

Re: problem solved, but still weird!

2001-04-07 Thread Marcus R. Popetz
At 01:29 PM 4/7/01, Steven D. Arnold wrote: >Hey folks, > >Well, my script seems to be running correctly now, but I don't understand why. > >I added 8192 to the debug value so I could get the in-browser links to the >debugging information. I also created an EMBPERL_VIRTLOG entry. I then >stopp