http://qs1969.pair.com?node_id=190744


in reply to Re: Re: XML::Simple and use lib
in thread XML::Simple and use lib

if you don't have access to your error logs and XMLin() seems to be where it's dieing, maybe try something like:

print $q->header(); my $xml; eval { $xml = XMLin("$name.xml", searchpath => ['users']); }; if($@) { print "the error was: <pre>$@</pre>"; } else { print "no error was generated."; }

anders pearson