summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2016-04-19 18:15:31 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2016-04-19 18:15:31 +0200
commita0b0aeea3964c5fecc6863f9e80d3f7c8bea4e25 (patch)
tree08d2681de47c986175e11a7d24b41209a17cbf22 /README.md
parente2637ac62e61dbc9bfeaa1e87fd46497c2fb10e0 (diff)
Fix #978
Diffstat (limited to 'README.md')
-rw-r--r--README.md23
1 files changed, 0 insertions, 23 deletions
diff --git a/README.md b/README.md
index bedae9e81..e4cbd9268 100644
--- a/README.md
+++ b/README.md
@@ -215,29 +215,6 @@ Some hints:
* type clob is usually an Sql TEXT
* length for integer fields means bytes, so an integer with length 8 means its 64bit
-
-### I'm getting a feed not found error when adding a feed, but it works in picoFeed/Miniflux
-Some websites block the News app because the mistake its user agent string for an attack (most notably https://www.joomla.org/announcements.feed\?type\=rss). You can test for this issue by changing the default user agent string in **appinfo/application.php**.
-
-Search the section that defines the user agent:
-
-```php
-$userAgent = 'ownCloud News/' . $appConfig->getConfig('version') .
- ' (+https://owncloud.org/; 1 subscriber;)';
-```
-
-and replace it with the following line:
-
-```php
-$userAgent = 'test';
-```
-
-If this fixes the issue, contact the feed's administrators and ask them to fix their server setup.
-
-**Hint**: Should you not be able to set up picoFeed or Miniflux, you can simply use the bundled picoFeed version to test the website, e.g.:
-
- php -f vendor/fguillot/picofeed/picofeed feed https://www.joomla.org/announcements.feed\?type\=rss
-
### I am getting: Exception: Some\\Class does not exist erros in my owncloud.log
This is very often caused by missing or old files, e.g. by failing to upload all of the News app' files or errors during installation. Before you report a bug, please recheck if all files from the archive are in place and accessible.