Not 10 minutes after I posted this question, another wiser one from the office stumbled upon this solutions so I thought I would share it here for those in need.

ok, here's what I did to get Simple XML working on Fedora Core 2

There is a bug in Fedora Core 2 in the file ParserDetails.ini is not created by the install. It also is not created during the SAX install.

1) run the following line to fix the ini file:

perl -MXML::SAX -e "XML::SAX->add_parser(q(XML::SAX::PurePerl))->save_parsers()"

2) reinstall XML::SAX::Expat parser to correct its entry in the ini file:

perl -MCPAN -e shell cpan>force install XML::SAX::Expat that's it. took me forever to get this worked out :)

In reply to Re: Parser.ini in Fedora Core 2 by Akira71
in thread Parser.ini in Fedora Core 2 by Akira71

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.