- Dec 30, 2020
-
-
Christoph Wurst authored
Signed-off-by:
Christoph Wurst <christoph@winzerhof-wurst.at>
-
- Dec 16, 2020
-
-
Christoph Wurst authored
Signed-off-by:
Christoph Wurst <christoph@winzerhof-wurst.at>
-
- Oct 06, 2020
-
-
hoellen authored
Signed-off-by:
hoellen <dev@hoellen.eu>
-
- Sep 17, 2020
-
-
J0WI authored
Update all links to https://www.php.net/ Signed-off-by:
J0WI <J0WI@users.noreply.github.com>
-
- Apr 29, 2020
-
-
Christoph Wurst authored
Signed-off-by:
Christoph Wurst <christoph@winzerhof-wurst.at>
-
- Apr 10, 2020
-
-
Christoph Wurst authored
To continue this formatting madness, here's a tiny patch that adds unified formatting for control structures like if and loops as well as classes, their methods and anonymous functions. This basically forces the constructs to start on the same line. This is not exactly what PSR2 wants, but I think we can have a few exceptions with "our" style. The starting of braces on the same line is pracrically standard for our code. This also removes and empty lines from method/function bodies at the beginning and end. Signed-off-by:
Christoph Wurst <christoph@winzerhof-wurst.at>
-
- Mar 31, 2020
-
-
Christoph Wurst authored
Signed-off-by:
Christoph Wurst <christoph@winzerhof-wurst.at>
-
- Mar 26, 2020
-
-
Christoph Wurst authored
Signed-off-by:
Christoph Wurst <christoph@winzerhof-wurst.at>
-
- Feb 17, 2020
-
-
Michael Kuhn authored
Update the comment to make clear that we ask for 14 minutes worth of jobs on purpose so at most three parallel cron jobs are running. Signed-off-by:
Michael Kuhn <michael@ikkoku.de>
-
- Dec 05, 2019
-
-
Christoph Wurst authored
Signed-off-by:
Christoph Wurst <christoph@winzerhof-wurst.at>
-
- Aug 17, 2019
-
-
Daniel Kesselberg authored
It's basically the same as for console.php now. Signed-off-by:
Daniel Kesselberg <mail@danielkesselberg.de>
-
- Feb 22, 2019
-
-
Joas Schilling authored
Signed-off-by:
Joas Schilling <coding@schilljs.com>
-
- May 23, 2018
-
-
Joas Schilling authored
Signed-off-by:
Joas Schilling <coding@schilljs.com>
-
- Apr 22, 2018
-
-
Morris Jobke authored
Signed-off-by:
Morris Jobke <hey@morrisjobke.de>
-
- Jan 26, 2018
-
-
Morris Jobke authored
* was not used by apps and also is not needed * migrated the documentation to IJobList Signed-off-by:
Morris Jobke <hey@morrisjobke.de>
-
- Jan 12, 2018
-
-
Morris Jobke authored
Signed-off-by:
Morris Jobke <hey@morrisjobke.de>
-
Morris Jobke authored
Signed-off-by:
Morris Jobke <hey@morrisjobke.de>
-
- Dec 12, 2017
-
-
Roeland Jago Douma authored
Just to avoid users from trying this with a to new (untested) php version * Moved the check logic to 1 place * All directly callable scripts just require this on top * exit hard (-1) so we know scripts won't continue * Return status 500 so no sync clients will try fancy stuff Signed-off-by:
Roeland Jago Douma <roeland@famdouma.nl>
-
- Nov 06, 2017
-
-
Morris Jobke authored
Signed-off-by:
Morris Jobke <hey@morrisjobke.de>
-
- Aug 17, 2017
-
-
Morris Jobke authored
There was a setting to disable the last execution of cron. There is no known problem with this write access and it was also questioned when this feature was build in https://github.com/owncloud/core/pull/7689#issuecomment-38264707 Recently there was also a bug report about a non-visible last cron execution (#6088) - let's better remove this. Signed-off-by:
Morris Jobke <hey@morrisjobke.de>
-
- Apr 25, 2017
-
-
Noveen Sachdeva authored
-
- Mar 11, 2017
-
-
Ko- authored
Signed-off-by:
Ko- <k.stoffelen@cs.ru.nl>
-
- Mar 08, 2017
-
-
Artem Sidorenko authored
similar to the console.php
-
- Feb 23, 2017
-
-
Morris Jobke authored
Single user mode basically disables WebDAV, OCS and cron execution. Since we heavily rely on WebDAV and OCS also in the web UI it's basically useless. An admin only sees a broken interface and can't even change any settings nor sees any files. Also sharing is not possible. As this is at least the case since Nextcloud 9 and we haven't received any reports for this it seems that this feature is not used at all so I removed it. The encryption commands now rely on the well tested maintenance mode. Signed-off-by:
Morris Jobke <hey@morrisjobke.de>
-
- Dec 19, 2016
-
-
Roeland Jago Douma authored
Fixes #2756 Signed-off-by:
Roeland Jago Douma <roeland@famdouma.nl>
-
- Oct 12, 2016
-
-
Vincent Petry authored
Because some cron jobs do not always properly clean up their FS usage and others might not clean up before setting up the FS, this could cause potential side effects. To make sure we exclude side effects, we tear down the FS between cron jobs. Signed-off-by:
Roeland Jago Douma <roeland@famdouma.nl>
-
- Oct 06, 2016
-
-
Joas Schilling authored
Signed-off-by:
Joas Schilling <coding@schilljs.com>
-
- Aug 09, 2016
-
-
Jörn Friedrich Dreyer authored
-
- Jul 29, 2016
-
-
Damjan Georgievski authored
nextcloud by default uses the `/config/` directory in the source/application tree for its config file(s). with this commit that directory can be overridden by the `NEXTCLOUD_CONFIG_DIR` environment variable. in uwsgi, you would use the option `--env "NEXTCLOUD_CONFIG_DIR=/tmp/nx-config/"` in apache `SetENV …` and the cli command can be run with: `NEXTCLOUD_CONFIG_DIR=/tmp/nx-config ./occ` (or just use `export` once in the shell). NEXTCLOUD_CONFIG_DIR can be supplied with or without the trailing slash (`/`), but in all cases `$configDir` will have it automatically added if needed. The other changes are several occurrences of `OC::$SERVERROOT . '/config'` to `OC::$configDir`.
-
- Jul 21, 2016
-
-
Joas Schilling authored
-
Joas Schilling authored
-
- Jul 08, 2016
-
-
Morris Jobke authored
* the setup check is still there
-
- May 26, 2016
-
-
Lukas Reschke authored
-
- May 20, 2016
-
-
Joas Schilling authored
-
Joas Schilling authored
-
- Apr 21, 2016
-
-
Joas Schilling authored
-
- Apr 20, 2016
-
-
Thomas Müller authored
-
- Jan 28, 2016
-
-
Joas Schilling authored
-
- Jan 12, 2016
-
-
Thomas Müller authored
-
- Nov 06, 2015
-
-
Morris Jobke authored
* makes debugging easier
-