php - SimplePie on Azure not parsing https feeds -
i'm using compiled version of simplepie 1.4.2 (the last tagged version on github) aggregate rss/atom feeds (code below if needed). it works on couple of linux-based web hosts, when upload azure app services http feeds display correctly, https don't. why happens? no specific settings set on web app, using php 5.6 in both environments. no differences accessing azure web app through http or https. thanks everybody! <?php date_default_timezone_set('europe/rome'); set_time_limit(0); header('content-type: application/rss+xml; charset=utf-8'); require_once('simplepie.compiled.php'); [...] echo '<?xml version="1.0" encoding="utf-8"?>'; ?> <rss version="2.0" xmlns:atom="http://www.w3.org/2005/atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/"> <channel> <title><?php echo $feedtitle; ?>&l