summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2016-04-03 12:07:21 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2016-04-03 12:07:21 +0200
commitd77eb56b1b2c683ee26e061c4b92e2aac140db66 (patch)
tree15a000c2f4335e6d9ccb4d9ef12b983066b16588 /README.md
parent270105623f4448857b7ae6d711163c57c88b9e55 (diff)
more feed update debugging tipps
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/README.md b/README.md
index 25283c2c6..c55e02af4 100644
--- a/README.md
+++ b/README.md
@@ -264,9 +264,11 @@ Check the **owncloud/data/owncloud.log** for hints why it failed. After the issu
"maintenance" => false,
### Feeds are not updated
+* Check if the config.ini in **owncloud/data/news/config/config.ini** contains **useCronUpdates = true**
* Check if the cronjob exists with **crontab -u www-data -e** (replace www-data with your httpd user)
* Check the file permissions of the **cron.php** file and if **www-data** (or whatever your httpd user is called like) can read and execute that script
-* Check if the cronjob is ever executed by placing an **error_log('updating')** in the [background job file](https://github.com/owncloud/news/blob/master/cron/updater.php#L27). If the cronjob runs, there should be an updating log statement in your httpd log.
+* Check if you can execute the cron with **sudo -u www-data php -f owncloud/cron.php** (replace www-data with your httpd user)
+* Check if the cronjob is ever executed by placing an **error_log('updating')** in the [background job file](https://github.com/owncloud/news/blob/master/cron/updater.php#L28). If the cronjob runs, there should be an updating log statement in your httpd log.
* If there is no **updating** statement in your logs check if your cronjob is executed by executing a different script
* If your cron works fine but owncloud's cronjobs are never executed, file a bug in [core](https://github.com/owncloud/core/)
* Try the [updater script](https://github.com/owncloud/news-updater)