Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: Re: Re: XML::Simple oddness

by chipmunk (Parson)
on May 16, 2001 at 07:35 UTC ( [id://80797]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: XML::Simple oddness
in thread XML::Simple oddness

Woops... Not sure why I focused on $r, which shouldn't be related to the problem here. Sorry. :)

All of your variables are declared with my... Are any of the variables declared outside of a subroutine, and then used inside a subroutine?

my $var = rand; sub do_something { print "$var\n"; }
That will lead to the 'Variable "$var" will not stay shared' error, and $var in do_something will keep the same value it had the first time do_something was called, including previous calls from earlier executions of the script in the same mod_perl fork.

Since the behavior is different under mod_perl, my first thought is to check on the differences between running normally and running under mod_perl... If that's not it, I'll work on thinking of other possible causes for this odd behavior. Although at that point you may want someone with more experience with the XML modules. :)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://80797]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (7)
As of 2024-04-23 07:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found