in reply to Re^3: XML::Simple Issues
in thread XML::Simple Issues

When I run the perl script you gave me I get the message /etc/perl/XML/Simple.pm the first 20 lines of the file are as follows

package LWP::Simple; use strict; use vars qw($ua %loop_check $FULL_LWP @EXPORT @EXPORT_OK $VERSION); require Exporter; @EXPORT = qw(get head getprint getstore mirror); @EXPORT_OK = qw($ua); # I really hate this. I was a bad idea to do it in the first place. # Wonder how to get rid of it??? (It even makes LWP::Simple 7% slower # for trivial tests) use HTTP::Status; push(@EXPORT, @HTTP::Status::EXPORT); $VERSION = "5.810"; $FULL_LWP++ if grep {lc($_) eq "http_proxy"} keys %ENV;

Replies are listed 'Best First'.
Re^5: XML::Simple Issues
by Anonymous Monk on Dec 30, 2010 at 04:43 UTC
      I've tried to remove this file and re installed XML::Simple with no luck I've even tried as far as removing perl and re installing it with no luck. However i got another Linux box that I've installed perl on it today. after installing more than 10 dependancies on it I finally was able to get it to work on the new box, however removing it from the old one and re installing it still fails evertime.