Quoting Konstantin Yotov <[EMAIL PROTECTED]>: > Hello! :) > I install Apache::UploadMeter, but when I when I add > this in startup.pl > use Apache::UploadMeter; > > $Apache::UploadMeter::UploadForm='/form.html'; > $Apache::UploadMeter::UploadScript='/perl/upload'; > $Apache::UploadMeter::UploadMeter='/perl/meter'; > > Apache::UploadMeter::configure; > > following instruction from this modul help, Apache > starts with error > Use of uninitialized value in numeric gt (>) at > /usr/lib/perl5/site_perl/5.6.1/Apache/UploadMem line > 300. > /usr/sbin/apachectl: line 211: 5235 Segmentation > fault $HTTPD -t
You are getting a segfault, and need to provide a backtrace if anyone is going to be able help you. If you read the SUPPORT document that comes with mod_perl, it will explain what information you should include, including instructions on how to get a backtrace. Also note that Apache::UploadMeter requires StackedHandlers support to be built into mod_perl (you should be able to look in Apache::MyConfig to see if you have StackedHandlers support). I suspect that your problem doesn't have anything to do with Apache::UploadMeter directly though. The message Apache provides about Apache::UploadMeter is just a warning, not a fatal error. Cees