aboutsummaryrefslogtreecommitdiffstats
path: root/settings/admin.php
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused setActiveNavigationEntry of OC_App - it's also in OCP\AppMorris Jobke2015-12-041-1/+1
|
* update licence headers via scriptMorris Jobke2015-10-051-1/+0
|
* Check if decoded JSON returned nullLukas Reschke2015-10-021-1/+1
| | | | | | The value might return null resulting in a PHP error. Fixes https://github.com/owncloud/core/issues/19542
* save excluded groups in json format - fixes #10983Thomas Müller2015-10-011-1/+1
|
* [settings] make it less staticMorris Jobke2015-09-301-1/+1
|
* Add option to disable autocomplete in share dialogMorris Jobke2015-09-231-0/+1
|
* Replace server status message about transitional file locking with setup ↵Robin Appelman2015-09-031-4/+6
| | | | warnings
* Merge pull request #17994 from owncloud/server-statusRobin McCorkell2015-07-301-1/+1
|\ | | | | correct order and capitalization of 'Server status' admin settings entry
| * correct order and capitalization of 'Server status' admin settings entry, ↵Jan-Christoph Borchardt2015-07-301-1/+1
| | | | | | | | fix #17395
* | [admin settings] only retrieve log file size if file existsMorris Jobke2015-07-291-1/+4
|/ | | | * fixes #17467
* Allow classes in <h2> tagsLukas Reschke2015-07-261-2/+2
| | | | Previously something like `<h2 class="inlineblock"><?php p($l->t('Some title')) ?></h2>` was shown as `<h2 class="inlineblock">Some title` within the sidebar instead as `Some Title` due to the fact that the regex was catching these classes but was not properly running the string replace function.
* update license headers and authorsMorris Jobke2015-06-251-0/+2
|
* Check for redis to be 2.2.5+Joas Schilling2015-06-021-4/+15
|
* Adding information on file locking status to admin sectionThomas Müller2015-06-011-0/+8
|
* Display the module settings in the list of the encryption modulesJoas Schilling2015-05-041-2/+8
|
* Can't use function return value in write contextJoas Schilling2015-04-271-1/+2
|
* Make getDefaultModuleId public and get module protectedJoas Schilling2015-04-271-6/+2
|
* Merge pull request #15617 from mmattel/getenv_system_check_and_warningThomas Müller2015-04-231-0/+3
|\ | | | | Checks if getenv returns proper system environment variable results
| * Checks if getenv returns proper system variable resultsroot2015-04-231-0/+3
| | | | | | | | | | | | | | | | | | | | Updated texts and changed the variable name to match the query Updated text + info which path for php config is used removed the term ownCloud and squashed the commits Updated text
* | Fix potential undefined variableJoas Schilling2015-04-181-2/+2
| |
* | fix capitalization for server-side encryption and email server, fix #15642Jan-Christoph Borchardt2015-04-171-2/+2
| |
* | always create a new instance of the encryption moduleBjoern Schiessle2015-04-171-4/+4
| |
* | allow user to start migration in admin settings if no external user ↵Bjoern Schiessle2015-04-161-0/+4
| | | | | | | | back-ends are enabled
* | add migration script from old encryption to new oneBjoern Schiessle2015-04-161-0/+1
|/
* Adding app icon and fixing admin settingThomas Müller2015-04-071-5/+7
|
* Fix link to the updaterJoas Schilling2015-03-271-0/+3
|
* Move federated cloud sharing, files externals and updater to special positionsJoas Schilling2015-03-271-2/+27
|
* Merge pull request #15234 from owncloud/encryption2_coreThomas Müller2015-03-261-0/+18
|\ | | | | core part of encryption 2.0
| * implement basic encryption functionallity in core to enable multiple ↵Bjoern Schiessle2015-03-261-0/+18
| | | | | | | | encryption modules
* | Merge pull request #15228 from owncloud/add-missing-navigation-for-tips-n-tricksThomas Müller2015-03-261-0/+1
|\ \ | | | | | | Add navigation entry for tips and tricks setion
| * | Add navigation entry for tips and tricks setionJoas Schilling2015-03-261-0/+1
| | |
* | | Update license headersJenkins for ownCloud2015-03-261-3/+27
|/ /
* / consolidate all admin warnings and notices into one sectionJan-Christoph Borchardt2015-03-241-1/+1
|/
* Remove unused sectionLukas Reschke2015-03-171-1/+0
| | | | This section is now unused as the security configuration has to happen on the webserver layer since https://github.com/owncloud/core/pull/14651
* Let users configure security headers in their WebserverLukas Reschke2015-03-021-5/+0
| | | | | | | | | | Doing this in the PHP code is not the right approach for multiple reasons: 1. A bug in the PHP code prevents them from being added to the response. 2. They are only added when something is served via PHP and not in other cases (that makes for example the newest IE UXSS which is not yet patched by Microsoft exploitable on ownCloud) 3. Some headers such as the Strict-Transport-Security might require custom modifications by administrators. This was not possible before and lead to buggy situations. This pull request moves those headers out of the PHP code and adds a security check to the admin settings performed via JS.
* Add detection for invalid CLI configuration for settings pageLukas Reschke2015-02-271-0/+1
| | | | | | | | | | | | | | This change will log all failures that prevent the CLI cronjob from happening to the database and display a warning to administrators when an error happened. To test: 1. Configure some invalid CLI php.ini settings 2. Enable the CLI cronjob and run php cron.php 3. See the errors printed and also in the admin page 4. Configure the CLI settings correctly 5. Errors should be gone. Fixes https://github.com/owncloud/core/issues/13994
* Merge pull request #14530 from owncloud/revert-14403Thomas Müller2015-02-271-26/+4
|\ | | | | Revert "Updating license headers"
| * Revert "Updating license headers"Morris Jobke2015-02-261-26/+4
| | | | | | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* | Move UTF-8 check to setupLukas Reschke2015-02-241-2/+1
|/ | | | | | | | 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
* Updating license headersJenkins for ownCloud2015-02-231-4/+26
|
* Use APCu only if available in version 4.0.6 and higherLukas Reschke2015-02-171-0/+4
| | | | | | | | APCu before 4.0.6 is unbelievable buggy and tend to segfault the PHP process (i.e. the whole webserver) This potentially fixes https://github.com/owncloud/core/issues/14175 Requires a backport to stable8
* Refactor OC_Request into TrustedDomainHelper and IRequestLukas Reschke2015-02-161-2/+3
| | | | | | | | | | 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
* add a Windows warningFrank Karlitschek2015-01-201-0/+2
|
* fix typo - caused by 3d997e8c62bd752f38bcc11f02fb2af0e46d9154Morris Jobke2015-01-181-1/+1
|
* Merge pull request #12988 from owncloud/logfile_downloadMorris Jobke2015-01-091-2/+11
|\ | | | | Logfile download
| * add Download logfile button to admin settingsGeorg Ehrke2015-01-071-2/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | add logSettingsController add download logfile button move getEntries to LogSettingsController move set log level to logsettingscontroller.php add warning if logfile is bigger than 100MB add unit test for set log level fix typecasting, add new line at EoF show log and logfile download only if log_type is set to owncloud add unit test for getFilenameForDownload
* | Fix incorrect warning about setting the overwrite.cli.urlJoas Schilling2015-01-071-4/+4
|/
* Add an option to disallow sending sharing emails to non-owncloud usersJoas Schilling2014-12-091-0/+1
| | | | Fix #10836
* Remove unexisting `htAccessWorkinght`Lukas Reschke2014-12-081-1/+1
| | | | Partially fixes https://github.com/owncloud/core/issues/12690 - remark to myself: improve grep skills.
* Check for working .htaccess via AJAXLukas Reschke2014-12-061-2/+0
| | | | Fixes https://github.com/owncloud/core/issues/12650