11-Mar-2014, 02:54 PM
Just a couple of small issues so far, otherwise a great upgrade to a great product!
1. The rss.php seems to have a LF somewhere before the XML tag causing the RSS to fail with a parsing error. I couldn't see where it was, so I moved the XML tag to the top of the page, this fixed it.
2. On servers with safe_mode activated:
doesn't work.1. The rss.php seems to have a LF somewhere before the XML tag causing the RSS to fail with a parsing error. I couldn't see where it was, so I moved the XML tag to the top of the page, this fixed it.
2. On servers with safe_mode activated:
PHP Code:
<?php
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
You'll see a message in frontend error reporting.
Either comment out the line (around 640) in includes/functions/processor.php; deactivate safe_mode, or use an alternative PHP function.
Hope this helps someone.