| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
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`
|
| |/ |
|
|/ |
|
|\
| |
| |
| |
| | |
owncloud/backport-24183-change-background-job-sort-order
[9.0] Change the sort order of background jobs to be DESC instead of ASC
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
In theory, if your instance ever creates more jobs then your system cron can
handle, the default background jobs get never executed anymore. Because
everytime when the joblist returns the next job it looks for the next ID,
however there is always a new next ID, so it will never wrap back to execute
the low IDs. But when we change the sort order to be DESC, we make sure that
these low IDs are always executed, before the system jumps back up to
execute the new IDs.
|
|\ \
| | |
| | | |
[stable9] Throw NoUserException when attempting to init mount point for null user
|
| |/
| |
| |
| |
| |
| |
| | |
In some scenarios initMountPoints is called with an empty user, and
also there is no user in the session.
In such cases, it is unsafe to let the code move on with an empty user.
|
|\ \
| |/
|/| |
[9.0] dont do optimized size propagation for encrypted files
|
| | |
|
|\ \
| | |
| | |
| | |
| | | |
owncloud/dont-transfer-files-to-not-ready-user-stable9
[9.0] Introduce isReadyForUser and verify in file transfer ownership
|
| | | |
|
| |/
|/| |
|
|\ \
| | |
| | | |
[stable9] When the scanner detects a file is changed clear checksum
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Fixes #23782 and #23783
If the file scanner detects a changed file we clear the checksum while
we update the cache.
* Unit test added
|
|\ \ \
| | | |
| | | | |
[stable9] Add repair step for updater issues
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The updater as shipped with ownCloud =< 9.0.1 has several bugs leading to a not properly executed update. For example the third-party changes are not copied.
This pull request:
1. Ships the third-party files changed since ownCloud 9.0.1 in the resources folder. On update the files are replaced. (https://github.com/owncloud/updater/issues/316)
2. Adds updater/* and _oc_upgrade/* as an exemption to the code integrity checker since the updater is updating in the wrong order. (https://github.com/owncloud/updater/issues/318)
|
| |_|/
|/| |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The new updater as shipped with ownCloud 9.0.x invokes `occ` via `shell_exec`. This means that the `\OC::$CLI` code is used when updating.
This removes the manual `.htaccess` modifications, effectively leading to the fact that URLs without index.php in it stop working. This also affects share URLs which could be considered a rather serious regression.
- User installs 9.0.0 via web
- User shares /s/1234
- User updates to 9.0.1 via ownCloud updater
- Link to /s/1234 is broken, /index.php/s/1234 works
|
|\ \ \
| |_|/
|/| | |
[9.0] handle completely unscanned storages in the background scanner
|
| | | |
|
| |/
|/| |
|
|\ \
| | |
| | | |
Backport #23752 to stable9
|
| | |
| | |
| | | |
Fixes orientation of thumbnails and gallery view of JPG's with exif rotation.
|
|\ \ \
| | | |
| | | | |
[stable9] Catch the AutoloadNotAllowedException also for legacy jobs
|
| | | |
| | | |
| | | |
| | | |
| | | | |
* same as #18839 for legacy jobs
* avoids spamming the log with useless entries
|
|\ \ \ \
| |/ / /
|/| | | |
[stable9] Fix PHP memory leak in file_get_contents()
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* ref https://bugs.php.net/bug.php?id=61961
* ref https://github.com/owncloud/core/issues/20261#issuecomment-180000256
* code is based on the proposal of @chriseqipe
* fixes #20261
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
[Stable9] release notes
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
[stable9] Sabre plugin browser error page
|
| | | | | |
|
| | |_|/
| |/| | |
|
|\ \ \ \ |
|
| | |/ /
| |/| |
| | | |
| | | |
| | | | |
Backport of #23760
Fix conditional check in MySQL setup.
|