# Contributing Read this when you want to: * file an issue (bug or feature request) * help translate the News file to your language * start programming and change the way the News app works * add cool new feeds to the feed explore section * want to provide additional full text feed rules ## Issues This section is split into two section: * Everything that has to do with bugs * How to request features ### Before Reporting Bugs * We do not support Internet Explorer and Safari (Patches accepted though, except for IE < 10) * We do **not support the server-side encryption app** (use client side encryption instead) * Get the latest version of the News app * Disable all browser add-ons to make sure that it's not a plugin's fault (adblockers!) * Clear your PHP opcode cache if you use any by restarting your webserver. This affects any version of PHP >=5.5 * [Check if they have already been reported](https://github.com/owncloud/news/issues?state=open) * [Check if your problem is covered in the FAQ section](https://github.com/owncloud/news#faq) If you are not able to add a feed because its XML *does not validate* (see [this issue](https://github.com/owncloud/news/issues/133) for an example), check if: * It is a valid RSS by running it through the [W3C validator](http://validator.w3.org/feed/) * You are able to add the feed in other feed readers ### When reporting bugs * Enable debug mode in your **config/config.php**: * ownCloud >=8.2: Add the **debug** attribute to config array (if not already present) and set it to **true**: ```php true, ); ``` * ownCloud < 8.2: Add **DEFINE('DEBUG', true);** at the end of the file ```php