Slowing Robots

2025-06-14 Thread Ruben Safir
Hello I am sure this has been solved before. I have a mailing list that is about 30 years old that is archived in mysql and displayed through embperl. Lately I have had a series of robots and cralers, mostly from google cloud ips and AWS ips that hammer the site with no reard for the network

Slowing Robots

2025-06-14 Thread Ruben Safir
Hello I am sure this has been solved before. I have a mailing list that is ab out 30 years old that is archived in mysql and displayed through embperl. Lately I have had a series of robots and wralers, mostly from google cloud ips and AWS ips that hammer the site with no reard for the network

Re: Image::Imlib2 error

2025-03-28 Thread Ruben Safir
On Fri, Mar 28, 2025 at 03:14:11PM +, Ian B wrote: > For what it's worth, we got a bit tired with interfacing Perl with > ImageMagik as it was always precarious, and just ended up calling the > command line via Perl to save/convert files. > > On Fri, Mar 28, 2025 at

Re: Image::Imlib2 error

2025-03-28 Thread Ruben Safir
On 3/28/25 10:42 AM, Ian B wrote: > Now, was Imlib2 custom compiled or installed as part of your o.s packages ? > I'm guessing it's definitely installed, but worth checking... It might have been either.. :( I instaled a custom apache set up on top of a normal Artix (Arch without systemd) build t

Image::Imlib2 error

2025-03-28 Thread Ruben Safir
I have an old image gallery that uses this libary in apache2 and modperl I made a small test program is it behaves like the server code #!/usr/bin/perl use warnings; use Image::Imlib2; my $image; #my $pic = qq(/usr/local/apache2/htdocs/images/2025_purim_amsterdam/DSC03652.JPG); my $pic = qq(/hom

Re: Embperl 3.0.0 memory leak fix

2025-01-03 Thread Ruben Safir
thank you On Fri, Jan 03, 2025 at 10:56:44AM +, Michael Stevens wrote: > Hi, > > This change hopefully fixes a memory leak in Embperl 3.0.0: > > Output of valgrind running test suite without change: > > ==912727== > ==912727== HEAP SUMMARY: > ==912727== in use at exit: 25,119,424 bytes

Re: Embperl 3.0.0-rc.1 is released

2023-11-19 Thread Ruben Safir
On Mon, Nov 13, 2023 at 07:35:30PM +0100, embp...@actevy.io wrote: > Hi Neil, > > were you able to verify that Embperl rc.2 fixes this test issue? > > Would be great to get some feedback, so I can prepare the final release of > Embperl 3.0.0 and upload it to CPAN. > > Thanks & Regards > > Gera

Re: Embperl 3.0.0-rc.1 is released

2023-10-07 Thread Ruben Safir
why > the different address that I've never seen before. > > Thanks, > > Neil > > On 10/7/23 06:23, Ruben Safir wrote: > >That is very cool > > > > > >On Thu, Oct 05, 2023 at 08:51:30AM +0200, embp...@actevy.io wrote: > >>I am happy to a

Re: Embperl 3.0.0-rc.1 is released

2023-10-07 Thread Ruben Safir
That is very cool On Thu, Oct 05, 2023 at 08:51:30AM +0200, embp...@actevy.io wrote: > I am happy to anounnce Embperl 3.0.0. It is the first release after 8 years > and it brings Embperl up to date with current linux distributions and > software. > > This is the first release candidate. Please

Re: AW: Embperl and threaded mpm?

2022-01-02 Thread Ruben Safir
Is it a good idea to adopt this package and update it? It wil likely die otherwise On Mon, Jun 26, 2017 at 11:21:14PM -0700, Neil Gunton wrote: > Ruben Safir wrote: > >On 06/26/2017 07:51 PM, Neil Gunton wrote: > >>rich...@ecos.de wrote: > >>>Hi Neil, > >

Re: Embperl and threaded mpm?

2021-11-08 Thread Ruben Safir
There is a new modperl release? On Sun, Jun 25, 2017 at 12:08:10PM -0700, Neil Gunton wrote: > Hi all, just wondering if Embperl was ever made threadsafe so it > could work under Apache's event or worker apache mpm's. > > The prefork does seem to limit somewhat the number of clients I can > have

Re: Apache 2.4

2021-10-26 Thread Ruben Safir
On Mon, Oct 25, 2021 at 02:14:00PM -0700, Jim Tappe wrote: > I didn't realize Embperl could be installed with cpanm. I will try that > next time. Thanks! > When was that posted? I missed this and it is not in my email archive Ruben Safir (Jewboy/Yo/Hey/Spaz) > On Mon, Oct

Re: New to Embperl. How do I work with a large convoluted file?

2021-07-23 Thread Ruben Safir
I used to do most of the actual coding in packages outside the html code and just drop the active html into the page with [+ mypack->html +] that made things pretty straight forward and easy On Tue, Jul 13, 2021 at 09:47:17PM +, Chris Brown wrote: > Thank you to everyone for your support. >

Re: New to Embperl. How do I work with a large convoluted file?

2021-07-05 Thread Ruben Safir
It is very straight forward if you understand Perl HTML and Javascript there is nothing to deconstruct. On Mon, Jul 05, 2021 at 07:32:43AM +, Chris Brown wrote: > Hi, > > I need to work on several files that are probably 10+ years old. Apart from > minor changes, they haven't been touched f

Re: HTML5 Multiple File Upload?

2020-03-03 Thread Ruben Safir
On Tue, Mar 03, 2020 at 09:56:50AM -0800, Neil Gunton wrote: > On 3/3/20 9:55 AM, Ruben Safir wrote: > >On Tue, Mar 03, 2020 at 09:52:31AM -0800, Neil Gunton wrote: > >>I use Dropzone.js to achieve the client side multiple file selection: > >> > >>https://www.d

Re: HTML5 Multiple File Upload?

2020-03-03 Thread Ruben Safir
that it requires no changes or special processing on the server > side. > > Hope that helps, > > Neil > > On 3/3/20 9:45 AM, Ruben Safir wrote: > >how did you solve this > > > >On Sat, Oct 15, 2016 at 08:20:38AM -0700, Neil Gunton wrote: > >>Does

Re: HTML5 Multiple File Upload?

2020-03-03 Thread Ruben Safir
how did you solve this On Sat, Oct 15, 2016 at 08:20:38AM -0700, Neil Gunton wrote: > Does anyone know if Embperl can handle multiple file uploads from > HTML5? If so, how do you process the different files on the server > side? > > This works in many browsers now, so it would be nice to be able

Re: AW: Embperl and threaded mpm?

2020-02-03 Thread Ruben Safir
On Mon, Jun 26, 2017 at 11:21:14PM -0700, Neil Gunton wrote: > Ruben Safir wrote: > >On 06/26/2017 07:51 PM, Neil Gunton wrote: > >>rich...@ecos.de wrote: > >>>Hi Neil, > >>> > >>>Embperl is not working with threaded mpm. > >>> &g

Re: Apache 2.4?

2020-01-07 Thread Ruben Safir
dules/mod_mpm_prefork.so #LoadModule dbd_module modules/mod_dbd.so Why? I don't know. I would love an explanation. Ruben On 1/6/20 10:06 PM, Jim Tappe wrote: > Ok, thanks for the clarification. > > On Mon, Jan 6, 2020 at 6:43 PM Ruben Safir wrote: > >> >> >> Right

Re: Fwd: undefined value in Emperl/Util.pm

2020-01-07 Thread Ruben Safir
On Tue, Jan 07, 2020 at 03:51:39AM -0500, Ruben Safir wrote: > On Wed, May 17, 2017 at 02:53:03PM +0200, Benni Bärmann wrote: > > found it: you have to enable mpm_prefork module in apache. > > When I do this, I get an error AH00534: httpd: Configuration error: More than one MPM

Re: Fwd: undefined value in Emperl/Util.pm

2020-01-07 Thread Ruben Safir
On Wed, May 17, 2017 at 02:53:03PM +0200, Benni Bärmann wrote: > found it: you have to enable mpm_prefork module in apache. > > thanks for the help anyway :) > > 2017-05-17 12:09 GMT+02:00 Benni Bärmann : > > > > > 2017-05-17 9:48 GMT+02:00 Ruben Safir : > >

embperl bug

2020-01-07 Thread Ruben Safir
Hello I've been trying to compile embperl and I had it working at one point and then I tried to all an ssl certificate with openssl and I can not get it to work again. I can't get around this error message Error in Perl code: Can't call method "app" on an undefined value at /usr/local/lib/perl5/

Re: Apache 2.4?

2020-01-06 Thread Ruben Safir
Perl 5 source kit. > > Complete documentation for Perl, including FAQ lists, should be found on > this system using "man perl" or "perldoc perl". If you have access to the > Internet, point your browser at http://www.perl.org/, the Perl Home Page. > > On Mon,

Re: compile issues

2020-01-06 Thread Ruben Safir
sorry Can't call method "app" on an undefined value at /usr/local/lib/perl5/site_perl/5.30.0/x86_64-linux/Embperl/Util.pm line 108. obviously udat is not being defined I can fix it but checking for udat? On Mon, Jan 06, 2020 at 09:19:22PM -0500, Ruben Safir wrote: > I keep f

Re: Apache 2.4?

2020-01-06 Thread Ruben Safir
's compiling and apache starts. That's as far as I am. > > On Mon, Jan 6, 2020 at 3:26 PM Ruben Safir wrote: > > > On Sun, Jan 05, 2020 at 05:55:45PM -0800, Jim Tappe wrote: > > > Thanks. I recompiled again with apache and mod_perl source and apache is > &

Re: Apache 2.4?

2020-01-06 Thread Ruben Safir
> Use /usr/include/httpd as Apache source(y/n) [y]y > > make > make install > > Software versions. > Embperl-2.5.0_4 > Apache/2.4.6 (CentOS) > mod_perl-2.0.11 > > It's compiling and apache starts. That's as far as I am. > > On Mon, Jan 6, 2020

Re: compile issues

2020-01-06 Thread Ruben Safir
people's > advice. I agree it would be nice if the "official" tarball from Gerald > could be updated, but he seems a bit unresponsive these days. Not sure > what he's up to, but it would be great if the current Embperl could be > brought up to date, yes. Meanwhile we ha

Re: Apache 2.4?

2020-01-06 Thread Ruben Safir
On Sun, Jan 05, 2020 at 05:55:45PM -0800, Jim Tappe wrote: > Thanks. I recompiled again with apache and mod_perl source and apache is > starting now. :) I must have messed up when I did the last compile. > > On Thu, Jan 2, 2020 at 9:26 PM Jim Tappe wrote: Honestly, I have no idea what your

Re: Apache 2.4?

2020-01-05 Thread Ruben Safir
On Thu, Jan 02, 2020 at 11:11:54PM -0800, Dirk Jagdmann wrote: > I use Embperl on Gentoo Linux with Apache 2.4, mod_perl 2 and > whatever perl version Gentoo Linux uses (was 5.24-5.30 in recent > years). > I've always had to manually build my Embperl, but recently started > to set up the Embperl so

Re: Apache 2.4?

2020-01-05 Thread Ruben Safir
Well, I will have the joy of trying this again in a few days. I am working on a healthcare system on embperl and modperl and I'll need to produce and virtual image with the code On Thu, Jan 02, 2020 at 09:26:00PM -0800, Jim Tappe wrote: > Hi all, > > I checked the Embperl README file and it see

Re: Cannot load modules/Embperl.so into server: /etc/httpd/modules/Embperl.so: undefined symbol: PL_thr_key

2020-01-02 Thread Ruben Safir
nope - didn't work On Wed, Dec 18, 2019 at 09:23:10AM -0800, Jim Tappe wrote: > fyi, I found previous thread on this problem; it seems this was fixed in > 2.5.0_3 > > http://www.embperl.org/downloads/Embperl-2.5.0_3.tar.gz > > > On Tue, Dec 17, 2019 at 4:45 PM Jim Tappe wrote: > > > Hi all

embperl tabmode is broken

2019-11-07 Thread Ruben Safir
Can someone confirm that the tabmode doesn't work anymore. I am trying to display a tablet that has undefined values and no tabmode alterations seem to work to move it past the undef values without it killing the -- So many immigrant groups have swept through our town that Brooklyn, like Atlan

Re: compile issues with embperl

2019-11-01 Thread Ruben Safir
checking dependencies checking whether to enable mod_lbmethod_heartbeat... shared checking which MPM to use by default... yes configure: error: MPM yes is not supported on this platform. On Fri, Nov 01, 2019 at 05:33:02AM -0400, Ruben Safir wrote: > > Yeah even the svn fails to work. > >

Re: compile issues with embperl

2019-11-01 Thread Ruben Safir
Yeah even the svn fails to work. On Fri, Nov 01, 2019 at 04:58:49AM -0400, Ruben Safir wrote: > Hello > > I think this was partly covered a few months back but embperl is not > compiling. Evidently Perl removed a variable tht the vode was depending > on. > > cc -c

compile issues

2019-11-01 Thread Ruben Safir
Hello I think this was partly covered a few months back but embperl is not compiling. Evidently Perl removed a variable tht the vode was depending on. cc -c -I/usr/local/apache2/include -I/usr/local/apache2/regex -I/usr/local/apache2/os/unix -I/usr/include/apr-1 -I/home/ruben/src/Embperl-2.5.0

sv_objcount is out of perl and needs to be removed from embperl

2017-09-28 Thread Ruben Safir
On Thu, Sep 28, 2017 at 05:59:09PM -0400, Ruben Safir wrote: > FWIW: > > https://groups.google.com/forum/?_escaped_fragment_=topic/linux.debian.bugs.rc/_fA_FKv97H0#!topic/linux.debian.bugs.rc/_fA_FKv97H0 > > > > 12/2/15 8:10 AM > Source: libembperl-perl >

Re: build problems

2017-09-28 Thread Ruben Safir
. Unfortunately the test suite fails afterwards. Anyways, here's the patch to make the upstream code build again: On Thu, Sep 28, 2017 at 05:37:45PM -0400, Ruben Safir wrote: > On Thu, Sep 28, 2017 at 04:00:15PM -0400, Ruben Safir wrote: > > Any clue how I might build this out:? >

Re: build problems

2017-09-28 Thread Ruben Safir
On Thu, Sep 28, 2017 at 04:00:15PM -0400, Ruben Safir wrote: > Any clue how I might build this out:? > > cc -c -I/usr/local/apache2/include -I/usr/local/apache2/regex > -I/usr/local/apache2/os/unix -I/usr/include/apr-1 > -I/home/ruben/src/Embperl-2.5.0/xs -D_REENTRANT -D_GNU

build problems

2017-09-28 Thread Ruben Safir
Any clue how I might build this out:? cc -c -I/usr/local/apache2/include -I/usr/local/apache2/regex -I/usr/local/apache2/os/unix -I/usr/include/apr-1 -I/home/ruben/src/Embperl-2.5.0/xs -D_REENTRANT -D_GNU_SOURCE -fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/local/include -D_L

Re: AW: Embperl and threaded mpm?

2017-06-27 Thread Ruben Safir
On 06/27/2017 02:21 AM, Neil Gunton wrote: > Ok, but I'm wondering if there is something else I should be doing to > execute the actual preload. It seems that all I do here is give Embperl > an array, but when I enable the preload, it just goes through everything > suspiciously quickly. I don't thi

Re: AW: Embperl and threaded mpm?

2017-06-26 Thread Ruben Safir
On 06/26/2017 07:51 PM, Neil Gunton wrote: > rich...@ecos.de wrote: >> Hi Neil, >> >> Embperl is not working with threaded mpm. >> >> Preloading all your perl code saves a lot of memory due to code sharing. >> >> The main issue is, that you have to make sure, not to open any file or >> database con

Re: Fwd: undefined value in Emperl/Util.pm

2017-05-17 Thread Ruben Safir
On 05/17/2017 08:53 AM, Benni Bärmann wrote: > found it: you have to enable mpm_prefork module in apache. > > thanks for the help anyway :) what, I wasn't helpful :) We figured out it wasn't likely the pearl and the trouble was in Apache >>blink<< -- So many immigrant groups have swept throu

Re: Fwd: undefined value in Emperl/Util.pm

2017-05-17 Thread Ruben Safir
On 05/17/2017 03:45 AM, Benni Bärmann wrote: > $sess = $Embperl::req -> app -> udat ; off hand, it seems like an installation problem that is the request object, I believe. -- So many immigrant groups have swept through our town that Brooklyn, like Atlantis, reaches mythological proportions in t

Re: Fwd: undefined value in Emperl/Util.pm

2017-05-17 Thread Ruben Safir
On 05/17/2017 03:45 AM, Benni Bärmann wrote: > $sess = $Embperl::req -> app -> udat ; there has to be udat look up the req module -- So many immigrant groups have swept through our town that Brooklyn, like Atlantis, reaches mythological proportions in the mind of the world - RI Safir 1998 http

Re: Fwd: undefined value in Emperl/Util.pm

2017-05-16 Thread Ruben Safir
On Wed, May 17, 2017 at 07:55:31AM +0200, Benni Bärmann wrote: > Hello everybody, > > i try to give some new life to an old emperl aplication, but there is this > error (shown in the browser): > > Error in Perl code: Can't call method "app" on an undefined value at > /usr/lib/x86_64-linux-gnu/per

Re: EMBPERL: accepting json

2016-09-08 Thread Ruben Safir
On 09/08/2016 01:21 PM, Neil Gunton wrote: > I also generate application/xml responses using Embperl, Embperl can use perl modules to spit out anything that is a string of bits. -- So many immigrant groups have swept through our town that Brooklyn, like Atlantis, reaches mythological proportio

Re: EMBPERL: accepting json

2016-09-08 Thread Ruben Safir
On 09/08/2016 01:04 PM, Donavon wrote: > I agree with all of the responses that Embed perl was made to mainly use > CGI.pm and multipart/form-data and really shouldn't be used outside of that. > > BUT As long as there is possibility that it might be able to receive > application/json data I have t

Re: EMBPERL: Calling Execute() multiple time per a page.

2016-09-01 Thread Ruben Safir
On 08/25/2016 06:36 PM, Ed Grimm wrote: > What you have is a slow version of an Embperl subroutine. Use an actual > Embperl subroutine instead. Use Execute at most once to load it. > > It's my understanding that generally, templates are done in > Embperl::Object. But when doing it that way, y

Re: ANNOUNCE: Embperl 2.5.0

2016-07-09 Thread Ruben Safir
This seems to be a missing dir now on embperl.org I pulled it from svc What is the current max versions for mod_perl and apache? On Mon, Apr 21, 2014 at 10:11:48AM +0200, rich...@ecos.de wrote: > The URL > > http://www.embperl.org/downloads/Embperl-2.5.0.tar.gz > > has entered CPAN > >

Re: turning off a directory

2015-02-08 Thread Ruben Safir
ut in modperl? Thank you Ruben > Gerald > > > > -Ursprüngliche Nachricht- > > Von: Ruben Safir [mailto:ru...@mrbrklyn.com] > > Gesendet: Montag, 5. Januar 2015 02:53 > > An: Gerald Richter - ECOS Technology; embperl@perl.apache.org > > Betreff: turning off a director

turning off a directory

2015-01-04 Thread Ruben Safir
Gerald, whatever insight you have, I'm trying to turn off embperl on a subdirecty specifically http://www.mrbrklyn.com/resources/ and docs And I just can't seem to find a combination that will allow for an exemption by location NameVirtualHost *:80 ServerAdmin ru...@mrbrklyn.com Doc

Re: lost directory indexes

2014-09-18 Thread Ruben Safir
ck Myers wrote: > On Wed, Sep 17, 2014 at 09:18:38PM -0400, Ruben Safir wrote: > > On 09/17/2014 03:08 PM, Rick Myers wrote: > > > o, just declining from the perl response simply drops you off > > > into the void since there are no other responses even set u

Re: AddHandle perl-script *

2014-09-16 Thread Ruben Safir
On Mon, Sep 15, 2014 at 09:14:19PM -0400, Ruben Safir wrote: > Bare with me a momement here because it has taken me two days to figure > even this much out. Should mod_index run BEFORE embperl or after it? ~ Subject:RE: mod_perl/embperl com

AddHandle perl-script *

2014-09-15 Thread Ruben Safir
Bare with me a momement here because it has taken me two days to figure even this much out. I wanted to create a mod_perl module to forbid certain noxious urls patterns and in it worked by when I needed a directory URL then the server failed to make the translation to index.html. Embperl had alw

Update Apache2.0 configuration

2009-03-06 Thread Ruben Safir
I decided to update my apache configuration to include modssl which I left out of the original installation in 2005. Evidently I don't have openssl headers on the server so I guess it is time to reinstall everything. The problem is that this is a substantial site with a lot of use and I don't

Update Apache2.0 configuration

2009-02-28 Thread Ruben Safir
I decided to update my apache configuration to include modssl which I left out of the original installation in 2005. Evidently I don't have openssl headers on the server so I guess it is time to reinstall everything. The problem is that this is a substantial site with a lot of use and I don't

Re: [NYLXS - HANGOUT] Re: Embperl Abandoned: Next Steps?

2008-11-17 Thread Ruben Safir
On Sun, Nov 09, 2008 at 03:03:57AM +0100, Gerald Richter wrote: > Hi, > > > > > Evidently, as it was later posted on the thread, someone > > called him and he said that he's been busy and still using it > > for his own business but hasn't had time for the list of > > late, but that a new versi

Re: Problems with Apache and SessionX hanging

2008-10-09 Thread Ruben Safir
OK you win. Now Get over it go skateboard in front of the Lincoln tunnel or something. /dev/null Ruben -Original Message----- From: Ruben Safir [mailto:[EMAIL PROTECTED] Sent: Thursday, October 09, 2008 1:08 AM To: Hartmaier Alexander Cc: embperl@perl.apache.org Subject: Re: Pro

Re: [NYLXS - HANGOUT] Re: Embperl Abandoned: Next Steps?

2008-10-08 Thread Ruben Safir
for almost a decade, I'd take the poster at his word. Ruben > On Oct 8, 2008, at 7:04 PM, "Ruben Safir" <[EMAIL PROTECTED]> wrote: > > >On Wed, Oct 08, 2008 at 03:37:36PM -0700, Elfen Magix wrote: > >>I use Perl-CGI instead of EmbedPerl, but I can see where

Re: Problems with Apache and SessionX hanging

2008-10-08 Thread Ruben Safir
On Wed, Oct 08, 2008 at 12:15:27PM +0200, Hartmaier Alexander wrote: > We've had a similar problem with Catalyst on the mailing list and MyISAM > caused the problem because it's not transaction safe. > Maybe the sessionid holding column isn't long enough too. > I advice to switch to a real db like

Re: [NYLXS - HANGOUT] Re: Embperl Abandoned: Next Steps?

2008-10-08 Thread Ruben Safir
ules to help use a CGI interface. Embperl is like CGI (but faster and easier to use). Ruben > --- On Wed, 10/8/08, Ruben Safir <[EMAIL PROTECTED]> wrote: > From: Ruben Safir <[EMAIL PROTECTED]> > Subject: [NYLXS - HANGOUT] Re: Embperl Abandoned: Next Steps? > To: &quo

Re: Embperl Abandoned: Next Steps?

2008-10-07 Thread Ruben Safir
Williams, David G. (HQ-JF000)[INDUS] wrote: It now seems abundantly clear that Embperl development/discussion has become very dormant. Perhaps it has been abandoned. I don't wish to criticize Gerald for abandoning this project, rather, I would like to thank him for his fine work. I have been u

Re: Any good and cheap embperl host

2008-01-19 Thread Ruben Safir
I can do that for you. Ruben On Wed, Jan 16, 2008 at 09:47:19PM +, abhishek jain wrote: > Hi friends, > Looking for a good embperl host which is cheap , > Also it should has the facility to install CPAN modules, > > Or if i get a shell account provider can i install embperl on that shell a/

Re: Debugging behavior

2007-05-28 Thread Ruben Safir
On Mon, May 28, 2007 at 09:56:24PM -0400, Ruben Safir wrote: > > I'm not getting excepted behavior from the debugging in the embperl site I > have built with > > Embperl/2.0rc4 Apache/2.0.54 (Unix) mod_perl/2.0.0 Perl/v5.8.5 > > I used to get STDERR to print

Debugging behavior

2007-05-28 Thread Ruben Safir
I'm not getting excepted behavior from the debugging in the embperl site I have built with Embperl/2.0rc4 Apache/2.0.54 (Unix) mod_perl/2.0.0 Perl/v5.8.5 I used to get STDERR to print to /usr/local/apache/logs/error_logs and a breakdown of EMBPERLS steps in /tmp/embperl.log I've tried numer

Re: EMBPERL_OPTIONS

2005-06-26 Thread Ruben Safir
Actually that is escmode The options are in the httpd.conf file Ruben - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: EMBPERL_OPTIONS

2005-06-26 Thread Ruben Safir
> > My own problem is that my code is litered with escmode=0 because an > array of strings with #anchor links is declared in one file and printed > in another, and I am creating a site in 3 languages where all the utf-8 > strings get destroyed by the escmode. As there is no public user input > I

RE: mod_perl/embperl compiling

2005-06-20 Thread Ruben Safir
How is that happening. Where is mod_index loaded? Ruben On Mon, 2005-06-20 at 23:48, Gerald Richter wrote: > > > > I'm getting this from the debugging now > > > > www2:/usr/local/apache2/conf # tail -f /tmp/embperl.log > > [27861]toString: Node=5(5) RepeatLevel=0 type=4 flags=1 > > text=><=

Re: mod_perl/embperl compiling

2005-06-20 Thread Ruben Safir
On Tue, Jun 21, 2005 at 05:48:00AM +0200, Gerald Richter wrote: > > > > I'm getting this from the debugging now > > > > www2:/usr/local/apache2/conf # tail -f /tmp/embperl.log > > [27861]toString: Node=5(5) RepeatLevel=0 type=4 flags=1 > > text=><= (#1) SVs=13610 > > [27861]CACHE: Free content

Getting index.html on a directory

2005-06-20 Thread Ruben Safir
Does anyone know why I can't get the index.html to translate from a directory under Embperl. I think I've had this discussion before, but can't find the email. The httpd.conf file looks like this ServerAdmin [EMAIL PROTECTED] DocumentRoot "/usr/local/apache/htdocs/nylxs" ServerNam

RE: mod_perl/embperl compiling

2005-06-20 Thread Ruben Safir
I see this in the strace 16229 stat64("/usr/local/apache2/lib/perl", 0xb0dc) = -1 ENOENT (No such file or directory) 16229 stat64("/usr/lib/perl5/5.8.5/i586-linux-thread-multi/Embperl.pmc", 0xbfffee60) = -1 ENOENT (No such file or directory) 16229 open("/usr/lib/perl5/5.8.5/i586-linux-thread-

RE: mod_perl/embperl compiling

2005-06-20 Thread Ruben Safir
I'm doing an strace now But here is the whole file Thanks for the help ServerRoot "/usr/local/apache2" # # The accept serialization lock file MUST BE STORED ON A LOCAL DISK. # #LockFile logs/accept.lock # # ScoreBoardFile: File used to store internal server process information. # If unspeci

RE: mod_perl/embperl compiling

2005-06-20 Thread Ruben Safir
That just seems to have the same behavior under the new x directory. and without the x there, I look the forward to index.html with the URI of http://www.nylxs.com Does embperl require that I make an alias for its locations? Ruben On Mon, 2005-06-20 at 02:55, Gerald Richter wrote: > > > > N

RE: mod_perl/embperl compiling

2005-06-20 Thread Ruben Safir
I'm getting this from the debugging now www2:/usr/local/apache2/conf # tail -f /tmp/embperl.log [27861]toString: Node=5(5) RepeatLevel=0 type=4 flags=1 text=><= (#1) SVs=13610 [27861]CACHE: Free content for *file:/usr/local/apache/htdocs/nylxs/*epparse:Embperl*epcompile:*eprun: [27861]Delete: Do

Re: mod_perl/embperl compiling

2005-06-20 Thread Ruben Safir
On Mon, Jun 20, 2005 at 04:46:40PM +0200, Gerald Richter wrote: > > > > > > > > > > > ServerAdmin [EMAIL PROTECTED] > > > DocumentRoot "/usr/local/apache/htdocs/nylxs" > > > DirectoryIndex index.html index.html.var > > > ServerName www.nylxs.com > > > PerlModule Embperl > > >

Re: mod_perl/embperl compiling

2005-06-20 Thread Ruben Safir
> > > ServerAdmin [EMAIL PROTECTED] > DocumentRoot "/usr/local/apache/htdocs/nylxs" > DirectoryIndex index.html index.html.var > ServerName www.nylxs.com > PerlModule Embperl > Embperl_UseEnvon > ErrorLog logs/nylxs_error_log > CustomLog logs/nylxs_access_l

Re: CVS CO command

2005-06-20 Thread Ruben Safir
l > > Then: > > perl xsbuilder/source_scan.pl > perl xsbuilder/xs_generate.pl > > (this generates a lot of messages like 'Can not determinate method name for > ...'; these appear to be normal.) > > -Allen > > On Tue, Jun 07, 2005 at 05:22:33PM -0400, R

RE: mod_perl/embperl compiling

2005-06-20 Thread Ruben Safir
Oh I thought /x meant everything under the directory "/". Let me try that. Thanks. Ruben On Mon, 2005-06-20 at 02:55, Gerald Richter wrote: > > > > Nothing works > > > > Yes, of course... > > You have > > > see http://www.nylxs.com/test.html > > > > And > > > > > SetHandl

RE: mod_perl/embperl compiling

2005-06-20 Thread Ruben Safir
> The log file is opened on the first request, so it is ok that it isn't open > at this time > It was never made > Also your httpd.conf seems to be ok, could you just add a line > I'll do this > Embperl_UseEnvon > > Does Apache still start? If yes, Embperl is correctly compiled and >

RE: mod_perl/embperl compiling

2005-06-19 Thread Ruben Safir
It looks like a CGI without ScriptAlias Ruben On Mon, 2005-06-20 at 01:31, Gerald Richter wrote: > > > > Actually it does seem to be open with lsof, but no log file. > > Should I open one in /tmp ? > > > > The log file is opened on the first request, so it is ok that it isn't open > at this

Re: mod_perl/embperl compiling

2005-06-19 Thread Ruben Safir
> > Could you more in detail describe what you try to do and what works and what > doesn't? > > Gerald > Maybe you'll see something I'm missing. Heres the whole httpd.conf file version 112233 > > - > To unsubscribe, e-

Re: mod_perl/embperl compiling

2005-06-19 Thread Ruben Safir
I out of ideas. I've never had problems installing this before with Apache 1.3 Something is fundementally not correct either on the compile or the configuration. Ruben On Mon, Jun 20, 2005 at 07:31:56AM +0200, Gerald Richter wrote: > > > > Actually it does seem to be open with lsof, but no log

RE: mod_perl/embperl compiling

2005-06-19 Thread Ruben Safir
I got that line DocumentRoot "/usr/local/apache/htdocs" PerlModule Embperl and in the virtual host section On Mon, 2005-06-20 at 00:22, Gerald Richter wrote: > > > > Relavent sections of httpd.conf in Apache 2 is as follows > > > > LoadModule perl_module modules/mod_perl.so LoadModule

Re: mod_perl/embperl compiling

2005-06-19 Thread Ruben Safir
Actually it does seem to be open with lsof, but no log file. Should I open one in /tmp ? Ruben lsof |grep Emb httpd 14707root mem REG8,3 593794 13680589 /usr/lib/perl5/site_perl/5.8.5/i586-linux-thread-multi/auto/Embperl/Embperl.so httpd 14708 nobody

Re: mod_perl/embperl compiling

2005-06-19 Thread Ruben Safir
On Sun, Jun 19, 2005 at 07:19:00PM -0700, allen haim wrote: > I had the same problem -- the problem is that CGI.pm is still using the old > Apache namespace. > > I'm not at work so I don't remember exactly, but I believe you have to get > the latest CGI.pm, which has been updated for Apache2. >

Re: mod_perl/embperl compiling

2005-06-19 Thread Ruben Safir
, but only works with Apache 1.3x Ruben On Sun, Jun 19, 2005 at 05:25:13PM -0400, Ruben Safir wrote: > Well > > The server seems to say that embperl and mod_perl is there but NOTHING > I seem to do makes to work. > > lsof is not even showing the embperl log file is open >

Re: mod_perl/embperl compiling

2005-06-19 Thread Ruben Safir
SetHandler perl‐script PerlHandler Embperl Options ExecCGI On Sun, Jun 12, 2005 at 02:57:22PM -0400, Ruben Safir wrote: > > I finished with the embperl compiling for apache2 and I'm a little > bewildered, being this is my first look at apa

mod_perl/embperl compiling

2005-06-12 Thread Ruben Safir
I finished with the embperl compiling for apache2 and I'm a little bewildered, being this is my first look at apach2. Does it not take anymore, the need to compile mod_perl into apache2 and with embperl explicitley, like I used to have to do? Or is this now all done through and conf system? Rub

XML XSLT

2005-06-08 Thread Ruben Safir
Sorry sent with the wrong subject :( Ruben On Wed, Jun 08, 2005 at 06:51:27PM -0400, Ruben Safir wrote: > Where do i get this now? I saw this in the INSTALL POD > > Ruben > XML and XSLT support > >Starting with Embperl 2.0b4 it has a build in XSL

Re: Problem with GetSession (was: Syntax=perl problem)

2005-06-08 Thread Ruben Safir
Where do i get this now? I saw this in the INSTALL POD Ruben XML and XSLT support Starting with Embperl 2.0b4 it has a build in XSLT support. You can either use the Apache Xercesâ Xalan 1.2 and libxslt 1.0.4. To install Xalan, download the Xalan archive for your OS f

Re: CVS CO command

2005-06-08 Thread Ruben Safir
What about this http://xml.apache.org/dist/xalanâ This doesn't even come up in w3m Ruben On Wed, Jun 08, 2005 at 06:45:45PM -0400, Ruben Safir wrote: > Yeah I just did. You get so into following directions, you forget to follow > your common sense > > Ruben > >

Re: CVS CO command

2005-06-08 Thread Ruben Safir
ill return many lines including the line: > > Distribution id = G/GR/GRICHTER/ExtUtils-XSBuilder-0.27.tar.gz > > then do > > % install G/GR/GRICHTER/ExtUtils-XSBuilder-0.27.tar.gz > > If you don't have cpan, just install it the ordinary way. > > Allen > >

Re: CVS CO command

2005-06-08 Thread Ruben Safir
t; Then: > > perl xsbuilder/source_scan.pl > perl xsbuilder/xs_generate.pl > > (this generates a lot of messages like 'Can not determinate method name for > ...'; these appear to be normal.) > > -Allen > > On Tue, Jun 07, 2005 at 05:22:33PM -0400, Ruben

CVS CO command

2005-06-07 Thread Ruben Safir
Can someone tell me the CVS checkout command. I tried to install what I thought was the newest version of EmbPerl with Apach2 and Mod_perl 2, but it says it can't find Apache/src.pm A web search on this showed a response from Gerald to download the newest version, so I guess I need to do that.

Re: Perl,Embperl,mod_perl,Apache on windows XP

2004-02-11 Thread Ruben Safir Secretary NYLXS
Use GNU/Linux On Wed, Feb 11, 2004 at 09:16:45AM -, [EMAIL PROTECTED] wrote: > Is there a recommended combination of versions for > > Perl,Embperl,mod_perl,Apache > > for running on a windows XP O/S? > > Any help/advice is gratefully recieved > > Gavin Williams > > -Original Me

Re: apache shutdown errors

2003-11-16 Thread Ruben Safir Secretary NYLXS
Is modperl built now for apache 2.0? Ruben On Sun, Nov 16, 2003 at 01:57:10PM +0100, Gerald Richter wrote: > Hi, > > > > > When stopping Apache (via apachectl stop), the following line appears > > about 30 times in the error log: > > > > This is a problem of global destruction of Embperl's app

Re: DBIx::Recordset status

2003-10-02 Thread Ruben Safir Secretary NYLXS
Isn't there such a thing as - Hey it just works and is good enough Ruben On Thu, Oct 02, 2003 at 05:41:36PM -0700, Terrence Brannon wrote: > The Perl object-oriented Persistence group ([EMAIL PROTECTED]), has > stated that their list of reviewed modules will drop DBIx::Recordset within > six mont

Re: What's going on with Embperl???

2003-09-24 Thread Ruben Safir Secretary NYLXS
Embperl is written in C or mod_perl? I will run this past NYLXS and see if we can get some people interested in helping with maintence and debugging, or even doc updates if you want Ruben On Thu, Sep 25, 2003 at 06:36:23AM +0200, Gerald Richter wrote: > Hi all together, > > first of all I wan

Re: Announcement: planned open source billing system demonstration now available

2003-09-23 Thread Ruben Safir Secretary NYLXS
And what is the licensing? On Tue, Sep 23, 2003 at 06:06:00PM -0700, Richard Schilling wrote: > Just wanted to drop you all a quick note that CogBilling, an online billing system > which integrates with GnuCash, is now available for review at > http://www.rsmba.biz/download. CogBilling is an

Re: What's going on with Embperl???

2003-09-17 Thread Ruben Safir Secretary NYLXS
> I also have used Embperl for some very intensive applications and under > load the performance does degrade (as does anything) and I personally > looked forward to Embperl 2.x due to performance increase. I also do > most of my code in modules, even when it isn't the best fit, simply due > t

  1   2   >