- 12 Mar, 2015 1 commit
-
-
Lukas Reschke authored
It is required by other functionalities such as S2S anyways and ownCloud will fail hard at a lot of places without it.
-
- 11 Mar, 2015 2 commits
-
-
Thomas Müller authored
-
Thomas Müller authored
-
- 09 Mar, 2015 2 commits
-
-
Thomas Müller authored
-
Morris Jobke authored
-
- 03 Mar, 2015 1 commit
-
-
Joas Schilling authored
-
- 28 Feb, 2015 1 commit
-
-
- 27 Feb, 2015 1 commit
-
-
Lukas Reschke authored
Maybe it helps in the future so we won't forget it again
🙈
-
- 26 Feb, 2015 1 commit
-
-
Morris Jobke authored
This reverts commit 6a1a4880.
-
- 25 Feb, 2015 1 commit
-
-
Lukas Reschke authored
Function is not used anymore anywhere in the code base: https://github.com/search?q=user%3Aowncloud+secureRNGAvailable&type=Code&utf8=%E2%9C%93
-
- 24 Feb, 2015 1 commit
-
-
Lukas Reschke authored
Nobody reads the warnings anyways and so we should enforce it at installation time... Also allows us to get rid of some duplicated code. To test change the `default_charset` to something other than `utf-8` or `UTF-8`, both should work fine with that change here. An error should then get shown. We already set those default charsets in the shipped .user.ini and .htaccess
-
- 23 Feb, 2015 3 commits
-
-
Thomas Müller authored
-
Jenkins for ownCloud authored
-
Lukas Reschke authored
Apparently a boolean in php.ini is according to the documentation "on" or "off"… Fixes itself.
-
- 21 Feb, 2015 1 commit
-
-
Lukas Reschke authored
This allows to check for specific values in the PHP.ini that ownCloud requires for full compatibility. `mbstring.func_overload`: https://github.com/owncloud/core/issues/14372 `output_buffering`: http://doc.owncloud.org/server/8.0/admin_manual/configuration/big_file_upload_configuration.html#configuring-php Fixes https://github.com/owncloud/core/issues/14372 and https://github.com/owncloud/core/issues/14412
-
- 18 Feb, 2015 1 commit
-
-
Robin Appelman authored
-
- 16 Feb, 2015 1 commit
-
-
Lukas Reschke authored
This changeset removes the static class `OC_Request` and moves the functions either into `IRequest` which is accessible via `\OC::$server::->getRequest()` or into a separated `TrustedDomainHelper` class for some helper methods which should not be publicly exposed. This changes only internal methods and nothing on the public API. Some public functions in `util.php` have been deprecated though in favour of the new non-static functions. Unfortunately some part of this code uses things like `__DIR__` and thus is not completely unit-testable. Where tests where possible they ahve been added though. Fixes https://github.com/owncloud/core/issues/13976 which was requested in https://github.com/owncloud/core/pull/13973#issuecomment-73492969
-
- 12 Feb, 2015 1 commit
-
-
Thomas Müller authored
-
- 11 Feb, 2015 1 commit
-
-
Yann VERRY authored
Add strtoupper() in UTF-8 check to avoid error message
-
- 02 Feb, 2015 1 commit
-
-
Lukas Reschke authored
The URL was previously encoded twice which leads to getting redirected to a 404 page when the password has been entered incorrect at least once. Testplan: - [ ] Opening `http://localhost/core/index.php?redirect_url=%2Fcore%2Findex.php%2Fsettings%2Fadmin` redirects to the admin page when providing the correct credentials - [ ] Opening `http://localhost/core/index.php?redirect_url=%2Fcore%2Findex.php%2Fsettings%2Fadmin` redirects to the admin page when providing the invalid credentials and then providing valid ones. - [ ] Logging in as admin then going to the admin page and clearing the cookies and refreshing will show the login and when repeating the above test steps you're redirected correctly. Fixes https://github.com/owncloud/core/issues/9804
-
- 23 Jan, 2015 1 commit
-
-
Lukas Reschke authored
HHVM seems to have problems with this at the moment (even setting those values in the php.ini of HHVM doesn't have helped much) and thus the unit test execution failed. So it's better if we disable this check for now for HHVM.
-
- 22 Jan, 2015 3 commits
-
-
Morris Jobke authored
-
Robin Appelman authored
-
Lukas Reschke authored
PHP 5.6 otherwise throws notices for perfectly valid code which results in broken endpoints. Fixes https://github.com/owncloud/core/issues/13592
-
- 14 Jan, 2015 6 commits
-
-
Bernhard Posselt authored
-
Bernhard Posselt authored
-
Bernhard Posselt authored
-
Bernhard Posselt authored
-
Bernhard Posselt authored
-
Bernhard Posselt authored
-
- 13 Jan, 2015 1 commit
-
-
Bjoern Schiessle authored
adapt decrypt all and restore/delete key backups to the new folder structure for encryption key introduced with OC8
-
- 10 Jan, 2015 1 commit
-
-
Lukas Reschke authored
Apparently `normalizer_normalize` is not verifying itself whether the string needs to be converted or not. Or does it at least not very performantly. This simple change leads to a 4% performance gain on the processing of normalizeUnicode. Since this method is called quite often (i.e. for every file path) this has actually a measurable impact. For examples searches are now 200ms faster on my machine. Still not perfect but way to go. Part of https://github.com/owncloud/core/issues/13221
-
- 08 Jan, 2015 1 commit
-
-
Thomas Müller authored
check for working htaccess will result in a dead lock because the server is blocking the request to itself - fixes #13153
-
- 28 Dec, 2014 1 commit
-
-
Lukas Reschke authored
See https://github.com/owncloud/core/pull/13042
-
- 25 Dec, 2014 2 commits
-
-
Frank Karlitschek authored
-
Frank Karlitschek authored
-
- 16 Dec, 2014 1 commit
-
-
Thomas Müller authored
-
- 10 Dec, 2014 1 commit
-
-
Joas Schilling authored
Make DateTimeFormatter a service and adjust tests that have been inaccurate
-
- 05 Dec, 2014 1 commit
-
-
Lukas Reschke authored
Both are removed from 5.4.0 Safe Mode: http://php.net/manual/en/features.safe-mode.php > This feature has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0. Magic Quotes: http://php.net/manual/en/security.magicquotes.php > This feature has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0.
-
- 04 Dec, 2014 1 commit
-
-
Lukas Reschke authored
🍻
-