WANTED: mod_perl consulting work

2000-11-30 Thread jbodnar
While my new company is busy acquiring investment money so we can develop or real product I'm looking for some short term mod_perl consulting work to help fund the company. Preferably the work will be telecommuting or in the Austin, TX area. A brief synopsis of my qualifications: 5 years of Perl

Re: Tallyman

2000-09-06 Thread jbodnar
I believe the company that made Tallyman bought the IP to minivend and hired the developers. The two products are supposed to merge with the minivend model dominating the code. You may want to avoiad Tallyman because of this. That also may exchange the domain name issue. On 06-Sep-2000 Gerald Ric

RE: [HELP]: Error message

2000-08-21 Thread jbodnar
Make sure all your brackets ('[' and ']') match up. It sounds like you may have an extra ']' which is causing to Embperl to pop the stack when there's nothing left on it. On 21-Aug-2000 Alexei V. Alexandrov wrote: > Hello everyone, > > I have a problem with execute function in embperl. My pag

Re: Can't build Embperl 1.3b4 with threaded perl5.6.0

2000-08-17 Thread jbodnar
On 17-Aug-2000 Gerald Richter wrote: >> #3 0x401f474a in ?? () from >> /usr/src/HTML-Embperl-1.3b4/blib/arch/auto/HTML/Embperl/Embperl.so > > This ?? would be the interesting point. For some reason GDB doesn't show the > symbol name. Does it change anything if you type "share" before you type th

Re: Can't build Embperl 1.3b4 with threaded perl5.6.0

2000-08-17 Thread jbodnar
here's the debug session: $ make testgdb PERL_DL_NONLAZY=0 gdb -x dbinitembperl /usr/local/bin/perl GNU gdb 4.18 Copyright 1998 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under

Re: Can't build Embperl 1.3b4 with threaded perl5.6.0

2000-08-17 Thread jbodnar
Okay I added dTHX to the following subs in epeval.c: EvalDirect() EvalAll() EvalAllNoCache() CallCV() Everything builds just fine now but when I run make test it blows up: $ make test PERL_DL_NONLAZY=0 /usr/local/bin/perl -Iblib/arch -Iblib/lib -I/usr/local/lib/perl5/5.6.0/i686-linux-thread -I

Can't build Embperl 1.3b4 with threaded perl5.6.0

2000-08-16 Thread jbodnar
I'm trying to build Embperl with a threaded perl5.6.0. I get the following error while running make: epeval.c: In function `EMBPERL_EvalDirect': epeval.c:45: `thr' undeclared (first use in this function) epeval.c:45: (Each undeclared identifier is reported only once epeval.c:45: for each function

RE: Help debugging Embperl crash

2000-07-07 Thread jbodnar
Okay, it seems to be some kind of conflict between mod_perl/Embperl and PHP and perhaps Apache::DBI. My Embperl stuff works if there's no database access. It also works if I don't load libphp4.so. I guess the best solution is to either build everything statically or run seperate servers for PHP an

RE: Help debugging Embperl crash

2000-07-07 Thread jbodnar
I'm not sure if I understand the FAQ (http://perl.apache.org/embperl/Faq.pod.1.html#make_test_fails_with_a_SIG_). If this is in a page how do I set the args for perl? Or am I looking at the wrong FAQ entry? On 07-Jul-2000 Gerald Richter wrote: >> >> I'm using Embperl 1.3b3 and mod_perl 1.24

Help debugging Embperl crash

2000-07-07 Thread jbodnar
I'm using Embperl 1.3b3 and mod_perl 1.24. I'm trying to use Class::DBI in my templates and when I hit a certain line in the page the child segfaults. This definitely seems to be some kind of problem between Embperl and Class::DBI. I'm able to run the same code from a plain old perl script and it

RE: BEGIN{} and END{}

2000-06-28 Thread jbodnar
> You can define a sub named CLEANUP in every Embperl page. That will be call > after the request is finish and the connection to the browser has been > closed. As the name suggest, a good place for cleaning up (like closing > database handles). How long has CLEANUP been around? I remember asking

RE: Why can't I use print?

2000-06-27 Thread jbodnar
First, you should really use: [+ "Hello" +] If, for some reason, you really need to use print then take a look at the embperl options. I think the one you want to set in your httpd.conf is OPT_REDIRECT_STDOUT or something like that. On 27-Jun-2000 Nicolas Parody wrote: > Hi, I don't understand w

Re: Beginner's question

2000-06-14 Thread jbodnar
$escmode has nothing to do with being able to use print() inside [- -]. In order to do that you have to turn on optRedirectStdout as part of your EMBPERL_OPTIONS in your conf file. On 14-Jun-2000 Erich L. Markert wrote: > Try: > > [- > open(FILE," $escmode = 0; # needed for the subsequent print

RE: Beginner's question

2000-06-14 Thread jbodnar
On 14-Jun-2000 Ryszard Lach wrote: > Hi! > > I've read docs about using embperl and HTML escaping, I tried to display e.g. > forms data (it works fine), but I still don't know, how to embedd such a > simple > code in html page: > > open(FILE," while() { > print; > } > > Could anybody hel