Apache::UploadMeter configuration problem

2003-02-13 Thread Konstantin Yotov
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

Shared memory

2002-12-09 Thread Konstantin Yotov
Hello! :) After moving to RedHat 7.3 with kernel 2.4.18-3smp system can't use shared memory: --- CPU0 states: 26.1% user, 13.0% system, 0.0% nice, 59.0% idle CPU1 states: 24.0% user, 10.1% system, 0.0% nice, 64.0% idle Mem: 1030724K av, 953088K used, 77636K free, 0K shrd, 27856K

mod_perl and mod_cgi

2002-05-17 Thread Konstantin Yotov
Hello! Here some details of my httpd.conf PerlTaintcheck On Alias /perl/ /home/httpd/perl/ PerlModule Apache::Registry Location /perl SetHandler perl-script PerlHandler Apache::Registry Options ExecCGI allow from all PerlSendHeader On /Location

mod_perl and mod_cgi

2002-05-15 Thread Konstantin Yotov
Hello! :) I'm webmaster for a small site about /3000 hits and 4 host daily/. I rewrote my cgi scripts for mod_perl/made all global variables local and etc/ following the instructions of mod_perl guide. On my development machine everything was ok, but when I move to productional server the

CGI::param,arg,content

2002-05-01 Thread Konstantin Yotov
Hello! :) I read in the mod_perl, that arg is more fast than CGI::param, but when I try to use it I can get form date only when use method GET. I try this: %param = $r-method eq 'post' ? $r-content : $r-args; But without a success. Please give me some advice. Thank you.