Tiny Tiny RSS and PHP versions¶
Since 1.3.4 tt-rss is using HTML Purifier which seems to be incompatible with PHP4. Rest of the code should be compatible, so if you are still running PHP4 you can try disabling HTML Purifier by taking these steps:
1. Remove the directive to include HTML Purifier in functions.php:109 (e.g. require_once ... HTMLPurifier.auto.php).
2. Comment out or remove current version of strip_tags_long() in functions.php:3559 which depends on HTML Purifier and uncomment older version below. Note that older version didn't perform correctly in all cases so you might experience broken HTML being displayed.