Skip to content

Commit 6ccd2c5

Browse files
committed
Branding
1 parent 8de6b92 commit 6ccd2c5

File tree

105 files changed

+721
-1559
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+721
-1559
lines changed

admin_manual/configuration_database/linux_database_configuration.rst

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
Database Configuration
33
======================
44

5-
ownCloud requires a database in which administrative data is stored. The following databases are currently supported:
5+
Nextcloud requires a database in which administrative data is stored. The following databases are currently supported:
66

77
* `MySQL <http://www.mysql.com/>`_ / `MariaDB <https://mariadb.org/>`_
88
* `PostgreSQL <http://www.postgresql.org/>`_
9-
* `Oracle <http://www.oracle.com/>`_ (ownCloud Enterprise edition only)
9+
* `Oracle <http://www.oracle.com/>`_
1010

1111
The MySQL or MariaDB databases are the recommended database engines.
1212

@@ -25,12 +25,12 @@ requires that you install and set up the server software first.
2525
MySQL / MariaDB with Binary Logging Enabled
2626
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2727

28-
ownCloud is currently using a ``TRANSACTION_READ_COMMITTED`` transaction isolation
28+
Nextcloud is currently using a ``TRANSACTION_READ_COMMITTED`` transaction isolation
2929
to avoid data loss under high load scenarios (e.g. by using the sync client with
3030
many clients/users and many parallel operations). This requires a disabled or
3131
correctly configured binary logging when using MySQL or MariaDB. Your system is
3232
affected if you see the following in your log file during the installation or
33-
update of ownCloud:
33+
update of Nextcloud:
3434

3535
An unhandled exception has been thrown:
3636
exception 'PDOException' with message 'SQLSTATE[HY000]: General error: 1665
@@ -65,7 +65,7 @@ for detailed information.
6565

6666
Parameters
6767
----------
68-
For setting up ownCloud to use any database, use the instructions in :doc:`../installation/installation_wizard`. You should not have to edit the respective values in the :file:`config/config.php`. However, in special cases (for example, if you want to connect your ownCloud instance to a database created by a previous installation of ownCloud), some modification might be required.
68+
For setting up Nextcloud to use any database, use the instructions in :doc:`../installation/installation_wizard`. You should not have to edit the respective values in the :file:`config/config.php`. However, in special cases (for example, if you want to connect your Nextcloud instance to a database created by a previous installation of Nextcloud), some modification might be required.
6969

7070
Configuring a MySQL or MariaDB Database
7171
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -74,7 +74,7 @@ If you decide to use a MySQL or MariaDB database, ensure the following:
7474

7575
* That you have installed and enabled the pdo_mysql extension in PHP
7676

77-
* That the **mysql.default_socket** points to the correct socket (if the database runs on the same server as ownCloud).
77+
* That the **mysql.default_socket** points to the correct socket (if the database runs on the same server as Nextcloud).
7878

7979
.. note:: MariaDB is backwards compatible with MySQL. All instructions work for both. You will not need to replace mysql with anything.
8080

@@ -100,7 +100,7 @@ The PHP configuration in :file:`/etc/php5/conf.d/mysql.ini` could look like this
100100
mysql.trace_mode=Off
101101

102102
Now you need to create a database user and the database itself by using the
103-
MySQL command line interface. The database tables will be created by ownCloud
103+
MySQL command line interface. The database tables will be created by Nextcloud
104104
when you login for the first time.
105105

106106
To start the MySQL command line mode use::
@@ -112,14 +112,14 @@ Then a **mysql>** or **MariaDB [root]>** prompt will appear. Now enter the follo
112112
::
113113

114114
CREATE USER 'username'@'localhost' IDENTIFIED BY 'password';
115-
CREATE DATABASE IF NOT EXISTS owncloud;
116-
GRANT ALL PRIVILEGES ON owncloud.* TO 'username'@'localhost' IDENTIFIED BY 'password';
115+
CREATE DATABASE IF NOT EXISTS nextcloud;
116+
GRANT ALL PRIVILEGES ON nextcloud.* TO 'username'@'localhost' IDENTIFIED BY 'password';
117117

118118
You can quit the prompt by entering::
119119

120120
quit
121121

122-
An ownCloud instance configured with MySQL would contain the hostname on which
122+
An Nextcloud instance configured with MySQL would contain the hostname on which
123123
the database is running, a valid username and password to access it, and the
124124
name of the database. The :file:`config/config.php` as created by the
125125
:doc:`../installation/installation_wizard` would therefore contain entries like
@@ -130,7 +130,7 @@ this:
130130
<?php
131131

132132
"dbtype" => "mysql",
133-
"dbname" => "owncloud",
133+
"dbname" => "nextcloud",
134134
"dbuser" => "username",
135135
"dbpassword" => "password",
136136
"dbhost" => "localhost",
@@ -168,13 +168,13 @@ Then a **template1=#** prompt will appear. Now enter the following lines and con
168168
::
169169

170170
CREATE USER username CREATEDB;
171-
CREATE DATABASE owncloud OWNER username;
171+
CREATE DATABASE nextcloud OWNER username;
172172

173173
You can quit the prompt by entering::
174174

175175
\q
176176

177-
An ownCloud instance configured with PostgreSQL would contain the path to the socket on
177+
An Nextcloud instance configured with PostgreSQL would contain the path to the socket on
178178
which the database is running as the hostname, the system username the php process is using,
179179
and an empty password to access it, and the name of the database. The :file:`config/config.php` as
180180
created by the :doc:`../installation/installation_wizard` would therefore contain entries like
@@ -185,7 +185,7 @@ this:
185185
<?php
186186

187187
"dbtype" => "pgsql",
188-
"dbname" => "owncloud",
188+
"dbname" => "nextcloud",
189189
"dbuser" => "username",
190190
"dbpassword" => "",
191191
"dbhost" => "/var/run/postgresql",
@@ -196,7 +196,7 @@ this:
196196
If you use another authentication method (not peer), you'll need to use the following steps to get the database setup:
197197
Now you need to create a database user and the database itself by using the
198198
PostgreSQL command line interface. The database tables will be created by
199-
ownCloud when you login for the first time.
199+
Nextcloud when you login for the first time.
200200

201201
To start the postgres command line mode use::
202202

@@ -215,7 +215,7 @@ You can quit the prompt by entering::
215215

216216
\q
217217

218-
An ownCloud instance configured with PostgreSQL would contain the hostname on
218+
An Nextcloud instance configured with PostgreSQL would contain the hostname on
219219
which the database is running, a valid username and password to access it, and
220220
the name of the database. The :file:`config/config.php` as created by the
221221
:doc:`../installation/installation_wizard` would therefore contain entries like
@@ -226,7 +226,7 @@ this:
226226
<?php
227227

228228
"dbtype" => "pgsql",
229-
"dbname" => "owncloud",
229+
"dbname" => "nextcloud",
230230
"dbuser" => "username",
231231
"dbpassword" => "password",
232232
"dbhost" => "localhost",
@@ -246,7 +246,7 @@ refer to the manual of your database for how to raise the configuration options
246246
``wait_timeout`` and/or ``max_allowed_packet``.
247247

248248
Some shared hosters are not allowing the access to these config options. For such
249-
systems ownCloud is providing a ``dbdriveroptions`` configuration option within your
249+
systems Nextcloud is providing a ``dbdriveroptions`` configuration option within your
250250
:file:`config/config.php` where you can pass such options to the database driver.
251251
Please refer to :doc:`../configuration_server/config_sample_php_parameters` for an example.
252252

@@ -302,12 +302,12 @@ the respective host name::
302302
Assuming the database server is installed on the same system you're running
303303
the command from, use::
304304

305-
psql -Uusername -downcloud
305+
psql -Uusername -dnextcloud
306306

307307
To access a MySQL installation on a different machine, add the -h option with
308308
the respective host name::
309309

310-
psql -Uusername -downcloud -h HOSTNAME
310+
psql -Uusername -dnextcloud -h HOSTNAME
311311

312312
::
313313

@@ -330,10 +330,10 @@ Useful SQL commands
330330
MySQL : SHOW DATABASES;
331331
PostgreSQL: \l
332332

333-
**Show ownCloud Tables in Database**::
333+
**Show Nextcloud Tables in Database**::
334334

335-
MySQL : USE owncloud; SHOW TABLES;
336-
PostgreSQL: \c owncloud; \d
335+
MySQL : USE nextcloud; SHOW TABLES;
336+
PostgreSQL: \c nextcloud; \d
337337

338338
**Quit Database**::
339339

admin_manual/configuration_files/collaborative_documents_configuration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@ If the mentioned test fails please make sure that:
4848
* your SELinux configuration is not blocking the execution of the binary
4949
* the PHP ``open_basedir`` is correctly configured to allow the access to the binary
5050

51-
More hints why the test is failing can be found in your ``data/owncloud.log``.
51+
More hints why the test is failing can be found in your ``data/nextcloud.log``.

admin_manual/configuration_files/federated_cloud_sharing_configuration.rst

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,7 @@ Federated Cloud Sharing is now managed by the Federation app (9.0+), and is
66
now called Federation sharing. When you enable the Federation app you can
77
easily and securely link file shares between Nextcloud servers, in effect
88
creating a cloud of Nextclouds.
9-
10-
Sharing With ownCloud 8 and Older
11-
---------------------------------
12-
13-
Direct Federation shares (:ref:`label-direct-share-link`) are not supported in
14-
ownCloud 8 and older, so you must create Federation shares with public links
15-
(:ref:`label-public-link-share`).
9+
1610

1711
.. _label-direct-share-link:
1812

@@ -75,9 +69,6 @@ exchanged. A red light means the connection failed.
7569
Creating Federation Shares via Public Link Share
7670
------------------------------------------------
7771

78-
You'll need to use a Public Link Share to create Federation shares with
79-
ownCloud 8.x and older.
80-
8172
Check the ``Share Link`` checkbox to expose more sharing options (which are
8273
described more fully in :doc:`file_sharing_configuration`). You may create a
8374
Federation share by allowing Nextcloud to create a public link for you, and then

admin_manual/configuration_files/previews_configuration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ By default, Nextcloud can generate previews for the following filetypes:
1616
* Cover of MP3 files
1717
* Text documents
1818

19-
.. note:: Older versions of ownCloud also supported the preview generation
19+
.. note:: Older versions of Nextcloud also supported the preview generation
2020
of other file types such as PDF, SVG or various office documents.
2121
Due to security concerns those providers have been disabled by
2222
default and are considered unsupported.

admin_manual/configuration_mimetypes/mimetype_aliases.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
Mimetype Aliases
33
================
44

5-
ownCloud allows you to create aliases for mimetypes, so that you can display
5+
Nextcloud allows you to create aliases for mimetypes, so that you can display
66
custom icons for files. For example, you might want a nice audio icon for audio
77
files instead of the default file icon.
88

9-
By default ownCloud is distributed with
10-
``owncloud/resources/config/mimetypealiases.dist.json``.
11-
Do not modify this file, as it will be replaced when ownCloud is updated.
12-
Instead, create your own ``owncloud/config/mimetypealiases.json``
9+
By default Nextcloud is distributed with
10+
``nextcloud/resources/config/mimetypealiases.dist.json``.
11+
Do not modify this file, as it will be replaced when Nextcloud is updated.
12+
Instead, create your own ``nextcloud/config/mimetypealiases.json``
1313
file with your custom aliases. Use the same syntax as in
14-
``owncloud/resources/config/mimetypealiases.dist.json``.
14+
``nextcloud/resources/config/mimetypealiases.dist.json``.
1515

1616
Once you have made changes to your ``mimetypealiases.json``, use the ``occ``
1717
command to propagate the changes through the system. This example is for
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Mimetype mapping
22
================
33

4-
ownCloud allows administrators to specify the mapping of a file extension to a
4+
Nextcloud allows administrators to specify the mapping of a file extension to a
55
mimetype. For example files ending in ``mp3`` map to ``audio/mpeg``. Which
6-
then in turn allows ownCloud to show the audio icon.
6+
then in turn allows Nextcloud to show the audio icon.
77

8-
By default ownCloud comes with ``mimetypemapping.dist.json``. This is a
8+
By default Nextcloud comes with ``mimetypemapping.dist.json``. This is a
99
simple json array.
1010
Administrators should not update this file as it will get replaced on upgrades
11-
of ownCloud. Instead the file ``mimetypemapping.json`` should be created and
11+
of Nextcloud. Instead the file ``mimetypemapping.json`` should be created and
1212
modified, this file has precedence over the shipped file.
1313

admin_manual/configuration_server/activity_configuration.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Configuring the Activity App
22
============================
33

4-
You can configure your ownCloud server to automatically send out e-mail notifications
4+
You can configure your Nextcloud server to automatically send out e-mail notifications
55
to your users for various events like:
66

77
* A file or folder has been shared
@@ -16,12 +16,12 @@ Enabling the Activity App
1616
-------------------------
1717

1818
The Activity App is shipped and enabled by default. If it is not enabled
19-
simply go to your ownCloud Apps page to enable it.
19+
simply go to your Nextcloud Apps page to enable it.
2020

21-
Configuring your ownCloud for the Activity App
21+
Configuring your Nextcloud for the Activity App
2222
----------------------------------------------
2323

24-
To configure your ownCloud to send out e-mail notifications a working
24+
To configure your Nextcloud to send out e-mail notifications a working
2525
:doc:`email_configuration` is mandatory.
2626

2727
Furthermore it is recommended to configure the background job ``Webcron`` or

admin_manual/configuration_server/antivirus_configuration.rst

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
Configuring the ClamAV Antivirus Scanner
22
========================================
33

4-
You can configure your ownCloud server to automatically run a virus scan on
4+
You can configure your Nextcloud server to automatically run a virus scan on
55
newly-uploaded files with the Antivirus App for Files. The Antivirus App for
66
Files integrates the open source anti-virus engine `ClamAV
7-
<http://www.clamav.net/index.html>`_ with ownCloud. ClamAV detects all forms
7+
<http://www.clamav.net/index.html>`_ with Nextcloud. ClamAV detects all forms
88
of malware including Trojan horses, viruses, and worms, and it operates on all
99
major file types including Windows, Linux, and Mac files, compressed files,
1010
executables, image files, Flash, PDF, and many others. ClamAV's Freshclam
1111
daemon automatically updates its malware signature database at scheduled
1212
intervals.
1313

1414
ClamAV runs on Linux and any Unix-type operating system, and Microsoft Windows.
15-
However, it has only been tested with ownCloud on Linux, so these instructions
15+
However, it has only been tested with Nextcloud on Linux, so these instructions
1616
are for Linux systems. You must first install ClamAV, and then install and
17-
configure the Antivirus App for Files on ownCloud.
17+
configure the Antivirus App for Files on Nextcloud.
1818

1919
Installing ClamAV
2020
-----------------
@@ -77,14 +77,14 @@ and ``freshclam.conf`` until it is running the way you want.
7777
Enabling the Antivirus App for Files
7878
------------------------------------
7979

80-
Simply go to your ownCloud Apps page to enable it.
80+
Simply go to your Nextcloud Apps page to enable it.
8181

8282
.. figure:: ../images/antivirus-app.png
8383

84-
Configuring ClamAV on ownCloud
84+
Configuring ClamAV on Nextcloud
8585
------------------------------
8686

87-
Next, go to your ownCloud Admin page and set your ownCloud logging level to
87+
Next, go to your Nextcloud Admin page and set your Nextcloud logging level to
8888
Everything.
8989

9090
.. figure:: ../images/antivirus-logging.png
@@ -95,21 +95,21 @@ Now find your Antivirus Configuration panel on your Admin page.
9595

9696
ClamAV runs in one of three modes:
9797

98-
* Daemon (Socket): ClamAV is running on the same server as ownCloud. The ClamAV
98+
* Daemon (Socket): ClamAV is running on the same server as Nextcloud. The ClamAV
9999
daemon, ``clamd``, runs in the background. When there is no activity ``clamd``
100100
places a minimal load on your system. If your users upload large volumes of
101101
files you will see high CPU usage.
102102

103103
* Daemon: ClamAV is running on a different server. This is a good option
104-
for ownCloud servers with high volumes of file uploads.
104+
for Nextcloud servers with high volumes of file uploads.
105105

106-
* Executable: ClamAV is running on the same server as ownCloud, and the
106+
* Executable: ClamAV is running on the same server as Nextcloud, and the
107107
``clamscan`` command is started and then stopped with each file upload.
108108
``clamscan`` is slow and not always reliable for on-demand usage; it is
109109
better to use one of the daemon modes.
110110

111111
Daemon (Socket)
112-
ownCloud should detect your ``clamd`` socket and fill in the ``Socket``
112+
Nextcloud should detect your ``clamd`` socket and fill in the ``Socket``
113113
field. This is the ``LocalSocket`` option in ``clamd.conf``. You can
114114
run ``netstat`` to verify::
115115

@@ -135,7 +135,7 @@ Daemon
135135

136136
Executable
137137
The Executable option requires the path to ``clamscan``, which is the
138-
interactive ClamAV scanning command. ownCloud should find it automatically.
138+
interactive ClamAV scanning command. Nextcloud should find it automatically.
139139

140140
.. figure:: ../images/antivirus-executable.png
141141

0 commit comments

Comments
 (0)