p.h. wrote:You don't have to assume I've tried non-imagevuex RSS feed. I've written I did.
well you said you changed the URL, but didn't say whether you had tried non-imagevuex urls - there are a couple of imagevue rss links that will work - so you could have tried both for all I know without trying an external one.
p.h. wrote:Please note that imagevuex feed worked fine the same day before the update.
now that I did imply as being the case.
p.h. wrote:Correct me if I'm wrong, but server firewall rules are URL dependent and so if imagevuex 2.8.3.1 and 2.8.10 are using the same feed URL the rules could not make a difference here.
go back to the start of the thread and you'll see that they aren't - your previous version used '
https://www.photo.gallery/rss/' as the feed URL; the new one uses '
https://www.photo.gallery/feed/'
the '/rss/'' link now just 301 redirects to '/feed/' so I don't think there's any point in trying it (it doesn't work for me), but if the script isn't working with *any* feeds, and assuming its installed correctly, the solution will be to find the differences between the two servers... you know the script works fine on your private server.
p.h. wrote:As to the .htaccess - I will take a look at it.
my thought with htaccess was in case it was blocking 'feed' in URLs... but if you tried other feeds that didn't have feed in the url, then this could be ruled out.
you could upload the php script below to your mirror server and see if it works...
<?php
$feed = file_get_contents('https://www.photo.gallery/feed/');
$rss = new SimpleXmlElement($feed);
foreach($rss->channel->item as $entry) {
echo "<p><a href='$entry->link' title='$entry->title'>" . $entry->title . "</a></p>";
}
?>
it's nothing fancy, but it will see if your server can read the rss feed.... if it doesn't work with the imagevue rss feed, change it to a feed you know works - if it still doesn't work, then it must be a server config issue somewhere.
if you can't solve it yourself, you may need support to login and have a look around.