You said:
In my system, it works if I have fewer variables set in the 'images.lib' file (which normally contains +/- 100 variables set to the HTML IMG tag) yet my client's system was working as of last week. Now, not having made any changes to that system at all, 2 of the 2nd-level menu actions have the same problem.
So, does this mean you have two systems running, and both are showing the same (or basically similar) behavior? And both are running on the same server?

When you say "not having made any changes..." do you mean just the code is unchanged, or that both code and (quantity of) data are unchanged?

Some possible strategies for diagnosis might depend on what type of server it is (windows or unix, with some minor details that might depend on what type of unix) -- though tachyon's advice would apply equally on all systems.

If the server is unix, you could try supplementing the simple "Got to here" messages with some "ps" output -- e.g. with a bsd-style of "ps", the following would give you information on your process size, what memory limits are in effect, and what percentage of memory you're using:

my $ps = `ps -p $$ -o vsz,rsz,lim,%mem`;
Write $ps to a log file together with some indicator of where you are in the script, and do this at strategic points. (You'll want to consult the appropriate "ps" man page for correct options and meanings of reported values -- these vary with the unix flavor.) I don't know what sort of method would be available on a windows server to do the same thing, unless a GNU/cygwin/other port of "ps" is available...

In reply to Re: Possible Server Resources problem by graff
in thread Possible Server Resources problem by Anonymous Monk

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.