mirror of
https://github.com/nextcloud/documentation.git
synced 2025-10-26 11:18:02 +00:00
Downstream of https://github.com/owncloud/documentation/pull/2700
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
1ca8504203
commit
173b9b91f7
@ -175,7 +175,7 @@ You can quit the prompt by entering::
|
||||
\q
|
||||
|
||||
An Nextcloud instance configured with PostgreSQL would contain the path to the socket on
|
||||
which the database is running as the hostname, the system username the php process is using,
|
||||
which the database is running as the hostname, the system username the PHP process is using,
|
||||
and an empty password to access it, and the name of the database. The :file:`config/config.php` as
|
||||
created by the :doc:`../installation/installation_wizard` would therefore contain entries like
|
||||
this:
|
||||
|
||||
@ -58,8 +58,8 @@ changes made to the storage in near real-time.
|
||||
reliably on Windows SMB servers.
|
||||
|
||||
.. note:: Using update notifications requires ``smbclient`` 4.x or newer.
|
||||
Due to limitations with the smbclient php module, the ``smbclient`` binary
|
||||
is required even when using the php module.
|
||||
Due to limitations with the smbclient PHP module, the ``smbclient`` binary
|
||||
is required even when using the PHP module.
|
||||
|
||||
To start listening to update notifications, start the ``occ`` command like this::
|
||||
|
||||
|
||||
@ -27,7 +27,7 @@ of memcache that best fits your needs. The supported caching backends are:
|
||||
A local cache for systems.
|
||||
* `Memcached <http://www.memcached.org/>`_
|
||||
Distributed cache for multi-server Nextcloud installations.
|
||||
* `Redis <http://redis.io/>`_, PHP module 2.2.5 and up required.
|
||||
* `Redis <http://redis.io/>`_, PHP module 2.2.6 and up required.
|
||||
For distributed caching.
|
||||
|
||||
Memcaches must be explicitly configured in Nextcloud by installing
|
||||
@ -109,7 +109,7 @@ as a local cache for :doc:`Transactional File Locking
|
||||
<../configuration_files/files_locking_transactional>` because it guarantees
|
||||
that cached objects are available for as long as they are needed.
|
||||
|
||||
The Redis PHP module must be version 2.2.5+. If you are running a Linux
|
||||
The Redis PHP module must be version 2.2.6+. If you are running a Linux
|
||||
distribution that does not package the supported versions of this module, or
|
||||
does not package Redis at all, see :ref:`install_redis_label`.
|
||||
|
||||
@ -214,7 +214,7 @@ These instructions are adaptable for any distro that does not package the
|
||||
supported version, or that does not package Redis at all, such as SUSE Linux
|
||||
Enterprise Server and Red Hat Enterprise Linux.
|
||||
|
||||
The Redis PHP module must be at least version 2.2.5. Please note that
|
||||
The Redis PHP module must be at least version 2.2.6. Please note that
|
||||
the Redis PHP module versions 2.2.x will only work for PHP 5.6.x.
|
||||
|
||||
For PHP 7.0 and PHP 7.1 use Redis PHP module 3.1.x or later.
|
||||
|
||||
@ -1466,7 +1466,7 @@ Set the time-to-live for locks in secconds.
|
||||
|
||||
Any lock older than this will be automatically cleaned up.
|
||||
|
||||
If not set this defaults to either 1 hour or the php max_execution_time, whichever is higher.
|
||||
If not set this defaults to either 1 hour or the PHP max_execution_time, whichever is higher.
|
||||
|
||||
::
|
||||
|
||||
|
||||
@ -17,7 +17,7 @@ extensions:
|
||||
|
||||
* APCu (minimum required PHP extension version 4.0.6)
|
||||
* Memcached
|
||||
* Redis (minimum required PHP extension version: 2.2.5)
|
||||
* Redis (minimum required PHP extension version: 2.2.6)
|
||||
|
||||
You will see this warning if you have no caches installed and enabled, or if
|
||||
your cache does not have the required minimum version installed; older versions
|
||||
|
||||
@ -40,7 +40,7 @@ If you get a result, the module is present.
|
||||
|
||||
Required:
|
||||
|
||||
* php (>= 5.6, 7.0 or 7.1)
|
||||
* PHP (>= 5.6, 7.0 or 7.1)
|
||||
* PHP module ctype
|
||||
* PHP module dom
|
||||
* PHP module GD
|
||||
@ -89,7 +89,7 @@ memcaches:
|
||||
|
||||
* PHP module apcu (>= 4.0.6)
|
||||
* PHP module memcached
|
||||
* PHP module redis (>= 2.2.5, required for Transactional File Locking)
|
||||
* PHP module redis (>= 2.2.6, required for Transactional File Locking)
|
||||
|
||||
See :doc:`../configuration_server/caching_configuration` to learn how to select
|
||||
and configure a memcache.
|
||||
|
||||
@ -159,7 +159,7 @@ properly. As soon as one of these requirements is not met the app cannot be inst
|
||||
|
||||
php
|
||||
===
|
||||
Defines the minimum and the maximum version of php which is required to run this app.
|
||||
Defines the minimum and the maximum version of PHP which is required to run this app.
|
||||
|
||||
database
|
||||
========
|
||||
@ -170,16 +170,16 @@ In case no database is specified it is assumed that all databases are supported.
|
||||
command
|
||||
=======
|
||||
Defines a command line tool to be available. With the attribute 'os' the required operating system for this tool can be
|
||||
specified. Valid values for the 'os' attribute are as returned by the php function `php_uname <http://php.net/manual/en/function.php-uname.php>`_.
|
||||
specified. Valid values for the 'os' attribute are as returned by the PHP function `php_uname <http://php.net/manual/en/function.php-uname.php>`_.
|
||||
|
||||
lib
|
||||
===
|
||||
Defines a required php extension with required minimum and/or maximum version. The names for the libraries have to match the result as returned by the php function `get_loaded_extensions <http://php.net/manual/en/function.get-loaded-extensions.php>`_.
|
||||
Defines a required PHP extension with required minimum and/or maximum version. The names for the libraries have to match the result as returned by the PHP function `get_loaded_extensions <http://php.net/manual/en/function.get-loaded-extensions.php>`_.
|
||||
The explicit version of an extension is read from `phpversion <http://php.net/manual/de/function.phpversion.php>`_ - with some exception as to be read up in the `code base <https://github.com/nextcloud/server/blob/master/lib/private/App/PlatformRepository.php>`_
|
||||
|
||||
os
|
||||
==
|
||||
Defines the required target operating system the app can run on. Valid values are as returned by the php function `php_uname <http://php.net/manual/en/function.php-uname.php>`_.
|
||||
Defines the required target operating system the app can run on. Valid values are as returned by the PHP function `php_uname <http://php.net/manual/en/function.php-uname.php>`_.
|
||||
|
||||
owncloud
|
||||
========
|
||||
|
||||
Loading…
Reference in New Issue
Block a user