in reply to Re: RSS Parsing not working on new machine
in thread RSS Parsing not working on new machine
gives me:#!/usr/bin/perl use strict; use XML::RSS::Parser; my $feed = "/home/ross/Downloads/New_Podcasts/archive/GMNV.rss"; my $parser = XML::RSS::Parser->new(); my $rss = $parser->parse_file($feed); print $rss . "\n";
$ ./test.pl XML::RSS::Parser::Feed=HASH(0x5ba514d23270)
which is what I'd expect to see, rather than the undef I get from the actual script. Yes, that file is one saved by this script.
Changing it to point at the archived RSS rather than the version stored in memory doesn't fix the problem, though. Something is happening somewhere else that is stopping the parser from reading this file, and I can't see what it might be.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: RSS Parsing not working on new machine
by Corion (Patriarch) on Apr 15, 2025 at 10:55 UTC | |
by wintermute115 (Acolyte) on Apr 15, 2025 at 12:07 UTC |