That is possible. One method of fixing this would be to use the POST method rather then the GET.

mod_cgi has the docs for the module that executes your cgi. I havent seen anything on my server behave the way you described.

Apache::Reload is a mod_perl thing, so i dont for see it working in your environment. If you see a " LoadModule mod_perl " in your httpd.conf then it is a good sign you are in mod perl but it doesnt sound like that

The reason mod_perl would make a difference versus just the regular mod_cgi is that mod_perl constantly runs your script. Hence the modules are always stored in memory. Should you refresh the modules the state of the program restarts. With mod_cgi it starts a new instance of the script on each call. So theoretically it loads whatever state the modules are when they are called.


In reply to Re^2: Module updates require webserver restart? by zer
in thread Module updates require webserver restart? by Calm

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.