Re: 0x444ba45b in prof_mark () from /usr/lib/perl5/5.6.1/i686-linux/auto/Devel/DProf/DProf.so

2002-12-08 Thread Ged Haywood
Hi there, On Sat, 7 Dec 2002, Richard Clarke wrote: I seem to have hit a slight stumbling block in my mod_perl development. [snip] As you can see from the topic, the segv happens in the DProf library. Yup, that'll do it. Try upgrading to Perl 5.7.2 at least. It worked for me. There are

Re: Can't find Apache::ModuleConfig

2002-12-08 Thread Stas Bekman
Tom Schindl wrote: Hi, I've installed perl-5.8.0, Apache2.0.43 and mod_perl-1.99_07. Now I want to use Apache::ModuleConfig but I can't find it anywhere. I've installed everything like it was shown on perl.apache.org. What have I done wrong? Any ideas? When looking at my old perl-5.6.1

Re: 0x444ba45b in prof_mark () from /usr/lib/perl5/5.6.1/i686-linux/auto/Devel/DProf/DProf.so

2002-12-08 Thread Stas Bekman
Ged Haywood wrote: [...] Try upgrading to Perl 5.7.2 at least. It worked for me. There are those who would recommend 5.8.0 minimum, but I'm not one. (Yet:). Eh? 5.8.0 is almost the same as 5.7.2, with mucho bugs fixed. I don't understand why do you suggest to install an unstable developers

Re: [mp2] Warnings not showing in Apache log?

2002-12-08 Thread Stas Bekman
Andrzej Jan Taramina wrote: Later on you have reported that some problems went away. Does it include this one? I'm now seeing warningsbut they are flagged as [error] instead of [warning] in the Apache log. Any idea why? Does this happen when you run 'make test' as well? e.g. when you

Re: All tests fail with Apache/2.0.43 (Unix) mod_perl/1.99_07-dev

2002-12-08 Thread Stas Bekman
Richard Curtis wrote: OK, after following the instructions requested by Stas Bekman, it still doesnt work... Below is a list of everything I have type. I dont claim to be a major expert or anything, so I have included all the commands in full to help catch if I missed something :) [...] I

Re: 0x444ba45b in prof_mark () from /usr/lib/perl5/5.6.1/i686-linux/auto/Devel/DProf/DProf.so

2002-12-08 Thread Ged Haywood
Hi Stas, On Sun, 8 Dec 2002, Stas Bekman wrote: Ged Haywood wrote: [...] Try upgrading to Perl 5.7.2 at least. It worked for me. There are those who would recommend 5.8.0 minimum, but I'm not one. (Yet:). Eh? 5.8.0 is almost the same as 5.7.2, with mucho bugs fixed. I don't

[mp2]Kow do I find dovumention on...

2002-12-08 Thread Beau E. Cox
Hi folks - I'm updating my LogHandler from 1 = 2. I am trying to find documention on members and methods of, for example: use Apache::RequestRec (); use Apache::Connection (); For example, looking thru my installed 'tree', the only thing if find for 'RequestRec' is RequestRec.pod which only

Re: 0x444ba45b in prof_mark () from /usr/lib/perl5/5.6.1/i686-linux/auto/Devel/DProf/DProf.so

2002-12-08 Thread Stas Bekman
Ged Haywood wrote: Hi Stas, On Sun, 8 Dec 2002, Stas Bekman wrote: Ged Haywood wrote: [...] Try upgrading to Perl 5.7.2 at least. It worked for me. There are those who would recommend 5.8.0 minimum, but I'm not one. (Yet:). Eh? 5.8.0 is almost the same as 5.7.2, with mucho bugs fixed. I

Re: [mp2]Kow do I find dovumention on...

2002-12-08 Thread Stas Bekman
There are many methods in 2.0, most directly glued from apache and apr methods. We want to re-use their docs as is, where possible. Meaning that we need a tool to extract these. Lyle and Gerald are working on this tool, please help them to get it out asap. See the threads on the docs-dev list:

Re: Can't find Apache::ModuleConfig

2002-12-08 Thread Tom Schindl
Thanks Stas. The documentation on perl.apache.org pointed me in a wrong direction (e.g. Apache::DBIPool (http://perl.apache.org/docs/2.0/user/overview/overview.html#Apache__DBIPool)) --cut- use strict; use Apache::TIPool (); use Apache::ModuleConfig

modperl ttssh and port forwarding

2002-12-08 Thread Martin Moss
All, I have a configuration issue, and I was wondering if anybody has had the same problem? I have an adsl gateway (192.168.0.1 external IP) and a seperate webserver (192.168.0.10) on my home network. I want to allow a user on the internet access to my webserver. I have once before configured

Re: modperl ttssh and port forwarding - SOLVED

2002-12-08 Thread Martin Moss
All, sorry for the trouble, I finally worked out the problem, I didn't have libproxy.so loaded on my 192.168.0.10 machine and the directive ProxyRequests On set. Now that I do it works fine, Regards Marty - Original Message - From: Martin Moss [EMAIL PROTECTED] To: [EMAIL PROTECTED]

Problems with Apache::compat and german special chars

2002-12-08 Thread Tom Schindl
Problems with Apache::compat CGI-PARAM-STRING: header=%DC%DC%DC%DCbody=%D6%D6%D6%D6type=save_thread cut-- [Sun Dec 08 21:39:09 2002] [error] [client 127.0.0.1] Character in c format wrapped at

Re: Problems with Apache::compat and german special chars

2002-12-08 Thread Tom Schindl
I've found a work around for the problem, i would call it a patch because i don't know yet which side affects this replacement has. I have replaced cut--- return map { s/%([0-9a-fA-F]{2})/pack(c,hex($1))/ge; $_; } split /[=;]/, $string, -1;

Re: Problems with Apache::compat and german special chars

2002-12-08 Thread Tom Schindl
Sorry here's the diff which includes one more thing: When SUBMITING-Forms a whitespace(\s+) is replaced by +. We have to retransform this. tom Am Son, 2002-12-08 um 22.39 schrieb Tom Schindl: I've found a work around for the problem, i would call it a patch because i don't know yet which side

Re: Can't find Apache::ModuleConfig

2002-12-08 Thread Stas Bekman
Tom Schindl wrote: Thanks Stas. The documentation on perl.apache.org pointed me in a wrong direction (e.g. Apache::DBIPool (http://perl.apache.org/docs/2.0/user/overview/overview.html#Apache__DBIPool)) --cut- use strict; use Apache::TIPool (); use