| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|\
| |
| |
| |
| | |
nextcloud/display-that-updating-failed-for-htaccess
Display an error when updating .htaccess failed
|
| | |
|
| | |
|
|\ \
| | |
| | | |
Make sure memory limit is > post size and upload filesize
|
| |/ |
|
|\ \
| | |
| | | |
Bug fix CachedMountInfo for user home storage
|
| | |
| | |
| | |
| | |
| | |
| | | |
In getMountPointNode function rootId is not inside of the userFolder for home storage. We was searching '/user' folder in '/user/files' folder. So, it was return NULL. I moved searching part to parent folder. It solves everything. Also, obviously other storage types not affect then this change.
Related owncloud commit :
https://github.com/owncloud/core/pull/26017
|
|\ \ \
| |_|/
|/| | |
Opening the trashbin causes errors in log for files without preview
|
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* put a file without a generated preview in the trashbin
(e.g. a *.docx file)
* open the trashbin
* following errors will show up in the nextcloud.log:
- filesize(): stat failed for ...
- fopen(...): failed to open stream: No such file or directory at ...
- fread() expects parameter 1 to be resource, boolean given at ...
- fclose() expects parameter 1 to be resource, boolean given at ...
- imagecreatefromstring(): Empty string or invalid image at ...
This is because the preview code tries to load an SVG image, which
is obviously only text.
The fix simply handles this before the loading happens and the web UI
keeps showing the default mimetype icon.
|
| | |
|
| | |
|
|\ \
| | |
| | | |
Clean up code coverage
|
| |/ |
|
|/
|
|
|
|
|
|
|
| |
Often a route.php file will have many N routes but only M controllers.
Where N >= M. Which means that in most cases the ControllerName will be
converted multiple times. This is of course far from ideal.
Note that this is per app so the cache will contain at most N entries.
Which is not to bad.
|
|\
| |
| | |
Adding a optional disclaimer to the anonymous upload page
|
| | |
|
|\ \
| | |
| | | |
more efficient querying of numeric storage ids
|
| | | |
|
|\ \ \
| | | |
| | | | |
Add exemptions for incompatible UAs
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Some user agents are notorious and don't really properly follow HTTP
specifications. For those, have an automated opt-out. Since the protection
for remote.php is applied in base.php as starting point we need to opt out
here.
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Add PHP 7.1 drone tests
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* Set salt length to 0
See https://tools.ietf.org/html/rfc3447#page-38
* Fix tests for new phpunit
|
| | |/
| |/| |
|
|\ \ \
| | | |
| | | | |
Fix detection of file types a bit
|
| | | | |
|
| |/ /
|/| | |
|
| |/
|/| |
|
|\ \
| | |
| | | |
Correctly remove admin sections and settings
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
Allow status.php before install
|
| | | | |
|
|\ \ \ \
| |_|/ /
|/| | | |
Internal OCS Controller cleanup
|
| | | | |
|
| |/ /
| | |
| | |
| | |
| | |
| | | |
This cleans up a bit the OCSController/Middleware. Since the 2 versions
of OCS differ a bit. Moved a lot of stuff internal since it is of no
concern to the outside.
|
|\ \ \
| |/ /
|/| |
| | |
| | | |
nextcloud/issue-1192-move-navigation-entries-without-order-to-the-end
Move navigation entries without order to the end
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
A lazy implementation of the DisplayResponse that only hits the
filesystem if the etag and mtime do not match.
|
|\ \ \
| | | |
| | | | |
Cache avatars
|
| | | |
| | | |
| | | |
| | | |
| | | | |
* Set proper caching headers for avatars (15 minutes)
* For our own avatar use some extra logic to invalidate when we update
|
|\ \ \ \
| | | | |
| | | | | |
Null !== void, those methods are void
|
| | |_|/
| |/| | |
|
|\ \ \ \
| | | | |
| | | | | |
ACCEPT_LANGUAGE goes before default_langauge
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
See https://github.com/nextcloud/server/issues/970
Before we had
1. Users settings in personal settings
2. Admins default language settings
3. Accept-Language settings of the browser
However this is not in line with
https://www.w3.org/International/questions/qa-lang-priorities
So this changes the order to
1. Users settings in personal settings
3. Accept-Language settings of the browser
2. Admins default language settings
|
|\ \ \ \ \
| | | | | |
| | | | | | |
add 2fa backup codes app
|