Re: perl5.6 (was: Shared variables, inner subs and our)

2001-03-19 Thread Bogomolnyi Constantin
support. 5.6.0 has a lot of bugs (witch were fixed in 5.7.0) Best Cb - Original Message - From: "Jauder Ho" [EMAIL PROTECTED] To: "Bogomolnyi Constantin" [EMAIL PROTECTED] Sent: Monday, March 19, 2001 8:44 AM Subject: Re: perl5.6 (was: Shared variables, inner subs

Re: perl5.6 (was: Shared variables, inner subs and our)

2001-03-17 Thread Bogomolnyi Constantin
Hi , You should probably try 5.7.0 witch is much more stable than 5.6.0 (you should not try unicode stuff , whitch is quite buggy) I use 5.7.0 on all my production servers without any problems . Best - Original Message - From: "Wim Kerkhoff" [EMAIL PROTECTED] To: "modperl" [EMAIL

Re: Changing REMOTE_ADDR passing to a request.

2000-11-12 Thread Bogomolnyi Constantin
Hello , If I understand well what you want , you want to spoof the real IP adress of server A to make server B think that he is speaking to A' . Lets see the apache.pm pod : =item $c-remote_ip The dotted decimal representation of the remote client's IP address. This is set by the server when the

Apache::Request CORE DUMPS

2000-10-01 Thread Bogomolnyi Constantin
Hi , I have few very strange coredumps when using Apache::Request here my script : The *strange thing is that It only coredump when i put any param like www.me.com?param=value =coredump but www.me.com =works fine Any ideas ?? Thanks ! use strict;use Apache::Request;my

Re: using mod_perl with SSI-run perl scripts

2000-08-18 Thread Bogomolnyi Constantin
Hello , mod_perl will never reduce your server load (in fact it will increase it ) and specialy SSI+Modperl will bring you realy huge httpd procs . I think that you should read http://perl.apache.org/guide/performance.html http://perl.apache.org/guide/scenario.html best Constantin -

Re: Adding values to Session file

2000-08-18 Thread Bogomolnyi Constantin
Hello , Your problem is an classic example of an incorrect implementation of tie function In fact the session acts like this : 1)You tie your hash (INDIRECTLY linket to the database) 2)You put your data in the hash but it still in memory because it is quite stupid and slow to put it

RE: Printing under MOD_Perl

2000-08-16 Thread Bogomolnyi Constantin
Did you think about http://perl.apache.org/guide/performance.html#Forking_and_Executing_Subproce ss I mean that if you detach an subproc witch deals with printings your main mod_perl server doesn't wait for the print Job complete . Best Constantin - Original Message - From: