RE: Uploading File writes zero bytes

2006-03-21 Thread Gerald Richter
Hi, > > I am using version CGI 3.17 and embperl 1.3.6. > If I remember right Embperl 1.3.6 needs CGI < 3 (while Embperl 2, when running with mod_perl 2 needs CGI >= 3.10) Note that Embperl 1.3.x is not longer maintained anymore, so I suggest to upgrade to Embperl 2 if possible Gerald **

RE: Intermittent Segfaults

2006-03-21 Thread Gerald Richter
Hi, Could you please give the attached patch a try and let me know if it fixes the segfaults. Gerald --- Gerald Richterecos electronic communication services gmbh IT-Securitylösungen * Webapplikationen mit Apach

Re: Intermittent Segfaults

2006-03-21 Thread BeeThere Admin
I don't know the details, it seems to be a pretty general problem. Gerald seems to be on it though. He even said that he was working through the weekend (bless his heart :-) The symptom on the user side, at least for me is a completely blank page. It looks like the server sends back a 200 OK,

Re: Uploading File writes zero bytes

2006-03-21 Thread Keven Murphy
Gavin, I am using version CGI 3.17 and embperl 1.3.6. Keven Murphy Murphy's Law ((U+C+I)x(10-S))/20xAx1/(1-sin(F/10)) U = UrgencyC = Complexity I = Importance S = Skill F = Frequency A = Aggravation On Tue, 21 Mar 2006, Gavin Carr wrote: > On Mon, Mar 20, 2006 at 06:09:30PM -0500, Keven M

Re: Uploading File writes zero bytes

2006-03-21 Thread Keven Murphy
I gave that a try too. I am still uploading zero byte files. Thanks, Keven Murphy [EMAIL PROTECTED] Murphy's Law ((U+C+I)x(10-S))/20xAx1/(1-sin(F/10)) U = UrgencyC = Complexity I = Importance S = Skill F = Frequency A = Aggravation On Tue, 21 Mar 2006, Torsten Luettgert wrote: > On Mo, 20

Config-File in it's own modules

2006-03-21 Thread Florian 'cit' Adamsky
Hi list, I've a simple config-file and I'm using it with "$cfg = shift;" on the top of my template. Is there any elegant way I could use this config-file in my own modules? thanks in advance greets cit config.pl [- my $req = shift; $req->{version} = '2.0.1'; -] -

Re: Uploading File writes zero bytes

2006-03-21 Thread Torsten Luettgert
On Mo, 2006-03-20 at 18:09 -0500, Keven Murphy wrote: > [- > use DBI; > use CGI; > > $req = shift; > my $upload = CGI->new(); Remove the line above. $upload is never used anyway, and there have been some issues in the past about CGI clashing Embperl's reading of the request parameters. I just du