| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
| |
This allows the directory where CSS/JS asset collections are
written to be changed, in case SERVERROOT is not writeable. Note
it does *not* allow the expected URL to be changed: whatever
directory is used, the server must be configured to serve it
at WEBROOT/assets. It may be possible to add another config
parameter to allow the admin to specify a custom asset URL,
but I thought I'd keep the first implementation simple.
|
| |
|
|
|
|
| |
Hopefully this prevents people from using it in the future.
|
| |
|
|\
| |
| | |
Implement a logger to log to error_log
|
| | |
|
|\ \
| | |
| | | |
Allow read-only configuration
|
| | |
| | |
| | |
| | |
| | |
| | | |
Workaround required for IIS setups running ownCloud to prevent dataloss.
Long-term solution would be to move some configuration settings to the database
|
| | | |
|
|\ \ \
| | | |
| | | | |
Add notes that SQLite is CE only
|
| | | | |
|
| |/ / |
|
| | | |
|
|\ \ \
| |/ /
|/| | |
adding new config parameter for sqlite to specify the journal mode
|
| | | |
|
|/ / |
|
|/
|
|
|
|
|
|
|
| |
This lead to a lot of confusion in the past and did not really offer any value. Let's remove the port check therefore. (it's anyways not really a part of the domain)
Fixes https://github.com/owncloud/core/issues/12150 and https://github.com/owncloud/core/issues/12123 and also a problem reported by @DeepDiver1975.
Conflicts:
lib/private/request.php
|
|\
| |
| | |
Add checkbox to enforce SSL for subdomains
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Add switch to enforce SSL for subdomains
Add unit tests
Add test for boolean values
Camel-case
Fix ugly JS
|
| |
| |
| |
| |
| |
| |
| | |
Public interface for hashing which also works with legacy ownCloud hashes and supports updating the legacy hash via a passed reference.
Follow-up of https://github.com/owncloud/core/pull/10219#issuecomment-61624662
Requires https://github.com/owncloud/3rdparty/pull/136
|
|/ |
|
|
|
|
| |
Quickfix for https://github.com/owncloud/core/issues/11064
|
| |
|
|\
| |
| | |
Make supported DBs configurable within config.php
|
| |
| |
| |
| |
| |
| | |
This commit will make the supported DBs for installation configurable within config.php. By default the following databases are tested: "sqlite", "mysql", "pgsql". The reason behind this is that there might be instances where we want to prevent SQLite to be used by mistake.
To test this play around with the new configuration parameter "supportedDatabases".
|
|/ |
|
|
|
|
| |
There is not much sense in having these files marked executable, we should avoid that.
|
| |
|
| |
|
|\
| |
| | |
small corrections to config.sample.php
|
| | |
|
| | |
|
| | |
|
|/
|
|
|
|
|
|
|
|
|
|
| |
Correctly use overwritemailurl value when generating absolute urls in CLI
Fix #11500
Rename the config to *cli
Add overwrite.cli.url to the sample config
Revert separator fix, fixes unit test
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
* owncloud -> ownCloud
* add default value
* proper comment style
* fix line wrapping and minor typo
* remove duplication
* add Vincents proposals
|
| |
|
|
|
|
|
|
|
| |
* use ' instead of " for config option
* place default parameters where useful into sample
* use proper comment block
* limit line size to 80 characters
|
| |
|
|
|
|
|
|
| |
Remove the second comment which could be confused with suggesting an invalid value: `// 100 MiB`.
To keep the easily readable example value, it has been moved into the comment header for the config item.
|
|
|
|
| |
a
|
|\
| |
| | |
Use non-empty defaults for preview cmd line
|
| | |
|
|/ |
|
|
|
| |
The old one was just horrible wrong.
|
|\
| |
| |
| |
| | |
Conflicts:
lib/private/util.php
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Fixes https://github.com/owncloud/core/issues/10624
Fix copy paste fail
Add unittest for comma separated headers
Revert 3rdparty
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This adds some security utilities to core including:
- A library for basic crypto operations (e.g. to encrypt passwords)
- A better library for cryptographic actions which allows you to specify the charset
- A library for secure string comparisions
Remove .htaccess
Remove .htaccess
Fix typo
Add public API
Use timing constant comparision
Remove CBC constant
Adjust code
Remove confusing $this
|
|\
| |
| | |
Comment out mount_file config option
|