| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | |
|
| | |
|
|\ \
| | |
| | | |
[9.0] Allow opening the password reset link in a new window when …
|
| | | |
|
|\ \ \
| | | |
| | | | |
stable9: normalize path in getInternalPath
|
| |/ / |
|
| | | |
|
|/ / |
|
| |
| |
| |
| | |
mb_detect_encoding is in the fallback we ship in the polyfill library, mb_strcut is not. Thus this lead to a false positive and ownCloud would just break.
|
| | |
|
| | |
|
| |
| |
| |
| | |
Because 9.1 was PSR-4 and the backport goes back to the old style
|
| | |
|
| |
| |
| |
| | |
Http range requests support is required for video preview
|
|\ \
| | |
| | | |
[stable9] first call the post_login hooks, before we call getUserFolder.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The login process needs to be completed before we can safely create
the users home folder. For example we need to give encryption a chance
to initialize the users encryption keys in order to copy the skeleton
files correctly
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
[Stable9] Use a CappedCache in the user database backend
|
| |/ /
| | |
| | |
| | |
| | |
| | | |
When running with a user database backend on large installations the
cache can grow to significant sizes. This can be especially problematic
when running big cron/repair jobs.
|
|\ \ \
| | | |
| | | | |
[9.0] free up memory when releasing the last shared lock
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | | |
[stable9] Allow chunk GC mtime tolerance for unfinished part chunks
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Whenever part chunks are written, every fwrite in the write loop will
reset the mtime to the current mtime. Only at the end will the touch()
operation set the mtime to now + ttl, in the future.
However the GC code is expecting that every chunk with mtime < now are
old and must be deleted. This causes the GC to sometimes delete part
chunks in which the write loop is slow.
To fix this, a tolerance value is added in the GC code to allow for
more time before a part chunk gets deleted.
|
|\ \ \ \
| |/ / /
|/| | |
| | | |
| | | | |
owncloud/backport-24432-never-save-app-language-into-request-lang
[9.0] Do not save the language as request lang for apps when we didn't find…
|
| |/ / |
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
owncloud/stable9-do-not-automatically-try-to-enable-index-php-less-urls
[Stable9] do not automatically try to enable index php less urls
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The current logic for mod_rewrite relies on the fact that people have properly configured ownCloud, basically it reads from the `overwrite.cli.ur
l` entry and then derives the `RewriteBase` from it.
This usually works. However, since the ownCloud packages seem to install themselves at `/owncloud` (because subfolders are cool or so…) _a lot_ of people have just created a new Virtual Host for it or have simply symlinked the path etc.
This means that `overwrite.cli.url` is wrong, which fails hard if it is used as RewriteBase since Apache does not know where it should serve files from. In the end the ownCloud instance will not be accessible anymore and users will be frustrated. Also some shared hosters like 1&1 (because using shared hosters is so awesome… ;-)) have somewhat dubious Apache configurations or use versions of mod_rewrite from the mediveal age. (because updating is money or so…)
Anyhow. This makes this explicitly an opt-in configuration flag. If `htaccess.RewriteBase` is set then it will configure index.php-less URLs, if
admins set that after installation and don't want to wait until the next ownCloud version they can run `occ maintenance:update:htaccess`.
For ownCloud 9.0 we also have to add a repair step to make sure that instances that already have a RewriteBase configured continue to use it by copying it into the config file. That way all existing URLs stay valid. That one is not in this PR since this is unneccessary in master.
Effectively this reduces another risk of breakage when updating from ownCloud 8 to ownCloud 9.
Fixes https://github.com/owncloud/core/issues/24525, https://github.com/owncloud/core/issues/24426 and probably some more.
|
| | | | |
|
| | | |
| | | |
| | | | |
That's only required for an update to 9.0.2, the updater server has the required logic to ensure that clients get the right update delivered.
|
| | | |
| | | |
| | | |
| | | | |
Currently testing the updates is a big problem and not really super easy possible. Since we now have a new updater server we should also make this configurable so that people can properly test updates.
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
owncloud/backport-24327-memory-usage-in-callForAllUsers
[9.0] Better callForAllUsers memory usage
|
| | | | | |
|
| | |/ /
| |/| | |
|
| |/ /
|/| | |
|
|/ /
| |
| |
| |
| |
| |
| | |
When moving files via WebDAV I sometimes got
PHP Fatal error: Nesting level too deep - recursive dependency? in /var/www/owncloud/lib/private/files/view.php on line 729
This small change has fixed the problem for me
|
| |
| |
| |
| |
| |
| | |
See https://bugs.php.net/bug.php?id=72117
Basically a bugfix in php caused this issue. So isset is not called more
often. We have to catch this.
|
| |
| |
| |
| |
| |
| | |
The previous logic did not necessarily trigger in every case. This logic is more error-resistant, the autoload_classmap.php file has a guaranteed different hash on 9.0.0, 9.0.1 and 9.0.2
Fixes https://github.com/owncloud/updater/issues/342
|
|\ \ |
|
| |\ \
| | | |
| | | | |
[stable9] Also exclude __apps
|
| | | |
| | | |
| | | | |
Workaround for https://github.com/owncloud/updater/issues/331 for 9.0.2
|
| |\ \ \
| | | | |
| | | | | |
[9.0] triger the propagator from the command line scanner
|
| | | | | |
|
| |\ \ \ \
| | | | | |
| | | | | | |
[stable9] check whether index is set before using it
|
| | | |/ /
| | |/| | |
|
|/ / / / |
|
|/ / /
| | |
| | |
| | |
| | |
| | | |
ownCloud may be configured to live at the root folder without a
trailing slash being specified. In this case manually set the
rewrite base to `/`
|
|\ \ \
| | | |
| | | | |
[9.0] Call private cache methods only for `OC\Files\Cache\Cache`
|