[Pkg-owncloud-commits] [owncloud] 02/04: Imported Upstream version 7.0.11~dfsg
David Prévot
taffit at moszumanska.debian.org
Fri Oct 30 19:35:40 UTC 2015
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch master
in repository owncloud.
commit 7106ab078f836b26531b7cc0483aafa93f06ef56
Merge: e5c1e0c 119cd08
Author: David Prévot <taffit at debian.org>
Date: Fri Oct 30 14:41:35 2015 -0400
Imported Upstream version 7.0.11~dfsg
.../admin/release/_sources/maintenance/upgrade.txt | 47 +++++++++-------------
core/doc/admin/release/_sources/release_notes.txt | 5 +++
core/doc/admin/release/contents.html | 1 +
core/doc/admin/release/maintenance/upgrade.html | 47 +++++++++-------------
core/doc/admin/release/release_notes.html | 5 +++
version.php | 8 ++--
6 files changed, 52 insertions(+), 61 deletions(-)
diff --cc core/doc/admin/release/_sources/maintenance/upgrade.txt
index d21c3ea,0000000..c6d965b
mode 100644,000000..100644
--- a/core/doc/admin/release/_sources/maintenance/upgrade.txt
+++ b/core/doc/admin/release/_sources/maintenance/upgrade.txt
@@@ -1,307 -1,0 +1,298 @@@
+==============================
+Upgrading Your ownCloud Server
+==============================
+
++**Starting with version 7.0.11, ownCloud will be automatically put into
++maintenance mode after downloading upgraded packages. You must take it out of
++maintenance mode and then run the upgrade wizard to complete the upgrade.**
++
+It is best to keep your ownCloud server upgraded regularly, and to install all
+point releases and major releases without skipping any of them. Major releases
+are 6.0 and 7.0, and point releases are intermediate releases for each
+major release. For example, 7.0.1 and 7.0.2 are point releases.
+
+There are multiple ways to keep your ownCloud server upgraded: with the Updater
+App, with your Linux package manager, and by manually upgrading. In this chapter
+you will learn how to keep your ownCloud installation current with your Linux
+package manager, and by manually upgrading.
+
+(See :doc:`update` to learn about the Updater App.)
+
+.. note:: Before upgrading to a new major release, always first review any
+ third-party apps you have installed for compatibility with
+ the new ownCloud release. Any apps that are not developed by ownCloud show a
+ 3rd party designation. Install unsupported apps at your own risk. Then,
+ before the upgrade, they must all be disabled. After the upgrade is
+ complete and you are sure they are compatible with the new ownCloud
+ release you may re-enable them.
+
+Preferred Upgrade Method
+------------------------
+
+The best method for keeping ownCloud on Linux servers current is by
+configuring your system to use the `openSUSE Build Service
+<http://software.opensuse.org/download.html?project=isv:ownCloud:community&
+package=owncloud>`_ (see :doc:`../installation/linux_installation`); just
+follow the instructions on oBS for setting up your package manager. Then
+stay current by using your Linux package manager to upgrade.
+
+You should always maintain regular backups (see :doc:`../maintenance/backup`),
+and make a backup before every upgrade.
+
+When a new ownCloud release is available you will see a yellow banner in your
+ownCloud Web interface.
+
+.. figure:: ../images/updater-1.png
+
+**Upgrading is disruptive**. When you upgrade ownCloud with your Linux package
+manager, that is just the first step to applying the upgrade. After
+downloading the new ownCloud packages your session will be interrupted, and you
+must run the upgrade wizard to complete the upgrade, which is discussed in the
+next section.
+
+Upgrading With Your Linux Package Manager
+-----------------------------------------
+
+When an ownCloud upgrade is available from the openSUSE Build Service
+repository, you can apply it just like any normal Linux upgrade. For example,
+on Debian or Ubuntu Linux this is the standard system upgrade command::
+
+ $ sudo apt-get update && sudo apt-get upgrade
+
+Or you can upgrade just ownCloud with this command::
+
+ $ sudo apt-get update && sudo apt-get install owncloud
+
+On Fedora, CentOS, and Red Hat Linux use ``yum`` to see all available updates::
+
+ $ yum check-update
+
+You can apply all available updates with this command::
+
+ $ sudo yum update
+
+Or update only ownCloud::
+
+ $ sudo yum update owncloud
+
+Your Linux package manager only downloads the current ownCloud packages. There
- is one more step, and that is to run the upgrade wizard to perform the final
- steps of updating the database and turning off maintenance mode. After using
- your package manager to install the current ownCloud release, you will see two
- screens. On the first screen, click the Start Upgrade button, or optionally run
- the ``occ upgrade`` command instead of clicking the button.
++are two more steps:
+
- .. figure:: ../images/updater-6.png
++* Take your ownCloud server out of maintenance mode (7.0.11+)
++* Run the upgrade wizard to perform the final steps of updating the database and
++ apps.
+
- ``occ upgrade``
- is more reliable, especially on installations with large datasets and large
- numbers of users because it avoids the risk of PHP timeouts.
++Your Linux package manager only downloads the current ownCloud packages. Then
++your ownCloud server is automatically put into maintenance mode. Take your
++server out of maintenance mode by changing ``'maintenance' => true,`` to
++``'maintenance' => false,`` in ``config.php``, or use the ``occ command``, like
++this example on Ubuntu::
+
- .. note:: The ``occ`` command does not download ownCloud updates. You must first
- download the updated code, and then ``occ`` performs the final upgrade steps.
++ $ sudo -u www-data php occ maintenance:mode --off
+
- The ``occ``
- command
- is in your ``owncloud/`` directory. You must run it as your HTTP user. This
- example is for Debian/Ubuntu::
-
- $ sudo -u www-data php occ upgrade
-
- This example is for Fedora, CentOS, and Red Hat Linux::
++``occ upgrade`` is more reliable, especially on installations with large
++datasets and large numbers of users because it avoids the risk of PHP timeouts.
+
- $ sudo -u apache php occ upgrade
-
- * The HTTP user and group in Debian/Ubuntu is ``www-data``.
- * The HTTP user and group in Fedora/CentOS/RHEL is ``apache``.
- * The HTTP user and group in Arch Linux is ``http``.
- * The HTTP user in openSUSE is ``wwwrun``, and the HTTP group is ``www``.
++.. note:: The ``occ`` command does not download ownCloud updates. You must first
++ download the updated code, and then ``occ`` performs the final upgrade steps.
+
+See :doc:`../configuration/occ_command` to learn more about using the
+``occ`` command, and see the **Setting Strong Directory Permissions** section
+of :doc:`../installation/installation_wizard` to learn how to find your
+HTTP user.
+
- When the upgrade is successful you will see the following screen:
-
- .. figure:: ../images/updater-7.png
++When the upgrade is successful you will be returned to the login screen.
+
+If the upgrade fails, then you must try a manual upgrade.
+
+Manual Upgrade Procedure
+------------------------
+
+Start by putting your server in maintenance mode. This prevents new logins,
+locks the sessions of logged-in users, and displays a status screen so users
+know what is happening. There are two ways to do this, and the preferred method
+is to use the ``occ`` command. This example is for Ubuntu Linux::
+
+ $ sudo -u www-data php occ maintenance:mode --on
+
+Please see :doc:`../configuration/occ_command` to learn more about ``occ``.
+
+The other way is by entering your ``config.php`` file and changing
+``'maintenance' => false,`` to ``'maintenance' => true,``. When you're finished
+upgrading, remember to change ``true`` to ``false``.
+
+Then:
+
+1. Ensure that you are running the latest point release of your current major
+ ownCloud version.
+2. Deactivate all third party applications (not core apps), and review them for
+ compatibility with your new ownCloud version.
+3. Back up your existing ownCloud Server database, data directory, and
+ ``config.php`` file. (See :doc:`backup`.)
+4. Download the latest ownCloud Server version into an empty directory outside
+ of your current installation. For example, if your current ownCloud is
+ installed in ``/var/www/owncloud/`` you could create a new directory called
+ ``/var/www/owncloud2/``
+
+On Linux operating systems, change to your new directory and download the
+current ownCloud tarball with ``wget``:
+
+ ``wget http://download.owncloud.org/community/owncloud-latest.tar.bz2``
+
+For Windows operating systems see the installation instruction in
+:doc:`../installation/windows_installation`.
+
+5. Stop your web server.
+
+Depending on your environment, you will be running either an Apache server or
+a Windows IIS server. To stop an Apache server, refer to the following table for
+specific commands to use in different Linux operating systems:
+
+ +-----------------------+-----------------------------------------+
+ | Operating System | Command (as root) |
+ +=======================+=========================================+
+ | CentOS/ Red Hat | ``apachectl stop`` |
+ +-----------------------+-----------------------------------------+
+ | Debian | |
+ | or | ``/etc/init.d/apache2 stop`` |
+ | Ubuntu | |
+ +-----------------------+-----------------------------------------+
+ | SUSE Enterprise | |
+ | Linux 11 | ``/usr/sbin/rcapache2 stop`` |
+ | | |
+ | openSUSE 12.3 and up | ``systemctl stop apache2`` |
+ +-----------------------+-----------------------------------------+
+
+To stop the Windows IIS web server, you can use either the user interface (UI)
+or command line method as follows:
+
+
+ +----------------------+---------------------------------------------------+
+ | Method | Procedure |
+ | | |
+ +======================+===================================================+
+ | User Interface (UI) | 1. Open IIS Manager and navigate to the |
+ | | web server node in the tree. |
+ | | |
+ | | 2. In the **Actions** pane, click **Stop**. |
+ +----------------------+---------------------------------------------------+
+ | Command Line | 1. Open a command line window as |
+ | | administrator. |
+ | | |
+ | | 2. At the command prompt, type **net stop WAS** |
+ | | and press **ENTER**. |
+ | | |
+ | | 3. (Optional) To stop W3SVC, type **Y** and |
+ | | then press **ENTER**. |
+ +----------------------+---------------------------------------------------+
+
+6. Rename or move your current ownCloud directory (named ``owncloud/`` if
+ installed using defaults) to another location.
+
+7. Unpack your new tarball:
+
+ ``tar xjf owncloud-latest.tar.bz2``
+
+ In Microsoft Windows environments, you can unpack the release tarball using
+ WinZip or a similar tool (for example, Peazip). Always unpack server code
+ into an empty directory. Unpacking the server code into an existing,
+ populated directory is not supported and will cause all kinds of errors.
+
+8. This creates a new ``owncloud/`` directory populated with your new server
+ files. Copy this directory and its contents to the original location of your
+ old server, for example ``/var/www/``, so that once again you have
+ ``/var/www/owncloud`` .
+
+9. Copy and paste the ``config.php`` file from your old version of
+ ownCloud to your new ownCloud version.
+
+10. If you keep your ``data/`` directory in your ``owncloud/`` directory, copy
+ it from your old version of ownCloud to the ``owncloud/`` directory of your
+ new ownCloud version. If you keep it outside of ``owncloud/`` then you
+ don't have to do anything with it.
+
+.. note:: We recommend storing your ``data/`` directory in a location other
+ than your ``owncloud/`` directory.
+
+11. Restart your web server.
+
+Depending on your environment, you will be running either an Apache server or a
+Windows IIS server. In addition, when running your server in a Linux
+environment, the necessary commands for stopping the Apache server might differ
+from one Linux operating system to another.
+
+To start an Apache server, refer to the following table for specific commands
+to use in different Linux operating systems:
+
+ +-----------------------+-----------------------------------------+
+ | Operating System | Command (as root) |
+ +=======================+=========================================+
+ | CentOS/ Red Hat | ``apachectl start`` |
+ +-----------------------+-----------------------------------------+
+ | Debian | |
+ | or | ``/etc/init.d/apache2 start`` |
+ | Ubuntu | |
+ +-----------------------+-----------------------------------------+
+ | SUSE Enterprise | |
+ | Linux 11 | ``/usr/sbin/rcapache2 start`` |
+ | | |
+ | openSUSE 12.3 and up | ``systemctl start apache2`` |
+ +-----------------------+-----------------------------------------+
+
+To start the Windows IIS web server, you can use either the user interface
+(UI) or command line method as follows:
+
+ +----------------------+---------------------------------------------------+
+ | Method | Procedure |
+ | | |
+ +======================+===================================================+
+ | User Interface (UI) | 1. Open IIS Manager and navigate to the |
+ | | web server node in the tree. |
+ | | |
+ | | 2. In the **Actions** pane, click **Stop**. |
+ +----------------------+---------------------------------------------------+
+ | Command Line | 1. Open a command line window as |
+ | | administrator. |
+ | | |
+ | | 2. At the command prompt, type **net stop WAS** |
+ | | and press **ENTER**. |
+ | | |
+ | | 3. (Optional) To stop W3SVC, type **Y** and |
+ | | then press **ENTER**. |
+ +----------------------+---------------------------------------------------+
+
+12. Now you should be able to open a web browser to your ownCloud server and
+ log in as usual. You have a couple more steps to go: You should see a
+ **Start Update** screen, just like in the previous section. Review the
+ prequisites, and if you have followed all the steps click the **Start
+ Update** button.
+
+ If you are running a large installation with a lot of files and users, you
+ should launch the update from the command line using ``occ`` to avoid
+ timeouts, like this example on Ubuntu Linux::
+
+ $ sudo -u www-data php occ upgrade
+
+ .. note:: The ``occ`` command does not download ownCloud updates. You must first
+ download and install the updated code, and then ``occ`` performs the final upgrade steps.
+
+ Please see :doc:`../configuration/occ_command` to learn more about ``occ``.
+
+13. The upgrade operation takes a few minutes, depending on the size of your
+ installation. When it is finished you will see a success message, or an
+ error message that will tell where it went wrong.
+
+Assuming your upgrade succeeded, take a look at the bottom of the Admin page to
+verify the version number. Check your other settings to make sure they're
+correct. Go to the Apps page and review the core apps to make sure the right
+ones are enabled.
+
+Now you can enable your third-party apps.
+
+Setting Strong Permissions
+--------------------------
+
+For hardened security we highly recommend setting the permissions on your
+ownCloud directory as strictly as possible. After upgrading, verify that your
+ownCloud directory permissions are set according to the Setting Strong Directory
+Permissions section of :doc:`../installation/installation_wizard`.
diff --cc core/doc/admin/release/_sources/release_notes.txt
index 6bf2007,0000000..03cfd73
mode 100644,000000..100644
--- a/core/doc/admin/release/_sources/release_notes.txt
+++ b/core/doc/admin/release/_sources/release_notes.txt
@@@ -1,188 -1,0 +1,193 @@@
+================================
+ownCloud |version| Release Notes
+================================
+
+Recommended Setup for Running ownCloud
+---------------------------------------
+
+ownCloud runs on multiple operating systems and HTTP servers. For best
+performance, stability, support, and full functionality we recommend:
+
+* Red Hat Enterprise Linux 7
+* MySQL/MariaDB
+* PHP 5.4 +
+* Apache 2.4
+
+Supported Platforms
+-------------------
+
+* Hypervisors: Hyper-V, VMware ESX, Xen, KVM
+* Server: Windows 2008R2; 2012, Linux (Debian 6, RHEL / Centos 6 and 7, Ubuntu
+ 12 and 14, SLES 11, Univention Corporate Server 3.x)
+* Databases: MySQL 5.x; Microsoft SQL Server 2008R2; SQL Server 2012 R2; Oracle
+ 11g
+* Desktop: Windows XP, Windows 7, Mac OS X 10.7+ (64-bit only), Linux (CentOS
+ 6, Ubuntu 10.04 and 11.04+, Fedora 16+, openSUSE 11.4+)
+* Mobile apps: iOS 7+, Android 4+
+* Webserver: IIS (Windows) and Apache2 (Windows and Linux)
+* Web browser: IE8+ (but not Compatibility Mode), Firefox v14+, Chrome v18+,
+ Safari v5+
+
++PHP 5.6.11+ Breaks LDAP Wizard
++^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
++
++PHP 5.6.11+ breaks the LDAP wizard with a 'Could not connect to LDAP' error. See https://github.com/owncloud/core/issues/20020.
++
+Manual LDAP Port Configuration
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+When you are configuring the LDAP user and group backend application, ownCloud
+may not auto-detect the LDAP server's port number, so you will need to enter it
+manually.
+
+.. https://github.com/owncloud/core/pull/16748
+
+LDAP Search Performance Improved
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+Prior to 7.0.4, LDAP searches were substring-based and would match search
+attributes if the substring occurred anywhere in the attribute value. Rather,
+searches are performed on beginning attributes. With 7.0.4, searches will match
+at the beginning of the attribute value only. This provides better performance
+and a better user experience.
+
+Substring searches can still be performed by prepending the search term with
+"*".For example, a search for ``te`` will find Terri, but not Nate::
+
+ occ ldap:search "te"
+
+If you want to broaden the search to include
+Nate, then search for ``*te``::
+
+ occ ldap:search "*te"
+
+Refine searches by adjusting your search attributes in the ``User Search
+Attributes`` form in your LDAP configuration on the Admin page. For example, if
+your search attributes are ``givenName`` and ``sn`` you can find users by first
+name + last name very quickly. For example, you'll find Terri Hanson by
+searching for ``te ha``. Trailing whitespaces are ignored.
+
+.. https://github.com/owncloud/core/issues/12647
+
+Protecting ownCloud on IIS from Data Loss
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+Under certain circumstances, running your ownCloud server on IIS could be at
+risk of data loss. To prevent this, follow these steps.
+
+In your ownCloud server configuration file, ``owncloud\config\config.php``, set
+``config_is_read_only`` to true.
+
+Set the ``config.php`` file to read-only.
+
+When you make server updates ``config.php`` must be made writeable. When your
+updates are completed re-set it to read-only.
+
+Antivirus App Modes
+^^^^^^^^^^^^^^^^^^^
+
+The Antivirus App offers three modes for running the ClamAV anti-virus scanner:
+as a daemon on the ownCloud server, a daemon on a remote server, or an
+executable mode that calls ``clamscan`` on the local server. We recommend using
+one of the daemon modes, as they are the most reliable.
+
+"Enable Only for Specific Groups" Fails
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+Some ownCloud applications have the option to be enabled only for certain
+groups. However, when you select specific groups they do not get access to the
+app.
+
+Changes to File Previews
+^^^^^^^^^^^^^^^^^^^^^^^^
+
+For security and performance reasons, file previews are available only for
+image files, covers of MP3 files, and text files, and have been disabled for
+all other filetypes. Files without previews are represented by generic icons
+according to their file types.
+
+4GB Limit on SFTP Transfers
+^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+Because of limitations in ``phpseclib``, you cannot upload files larger than
+4GB over SFTP.
+
+"Not Enough Space Available" on File Upload
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+Setting user quotas to ``unlimited`` on an ownCloud installation that has
+unreliable free disk space reporting-- for example, on a shared hosting
+provider-- may cause file uploads to fail with a "Not Enough Space Available"
+error. A workaround is to set file quotas for all users instead of
+``unlimited``.
+
+No More Expiration Date On Local Shares
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+In older versions of ownCloud, you could set an expiration date on both local
+and public shares. Now you can set an expiration date only on public shares,
+and
+local shares do not expire when public shares expire.
+
+Zero Quota Not Read-Only
+^^^^^^^^^^^^^^^^^^^^^^^^
+
+Setting a user's storage quota should be the equivalent of read-only, however,
+users can
+still create empty files.
+
+Enterprise 7 Only
+-----------------
+
+No Federated Cloud Sharing with Shibboleth
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+Federated Cloud Sharing (formerly Server-to-Server file sharing) does not work
+with Shibboleth .
+
+Windows Network Drive
+^^^^^^^^^^^^^^^^^^^^^
+Windows Network Drive runs only on Linux servers because it requires the Samba
+client, which is included in all Linux distributions.
+
+``php5-libsmbclient`` is also required, and there may be issues with older
+versions of ``libsmbclient``; see Using External Storage > Installing and
+Configuring the Windows Network Drive App in the Enterprise Admin manual for
+more information.
+
+By default CentOS has activated SELinux, and the ``httpd`` process can not make
+outgoing network connections. This will cause problems with curl, ldap and
+samba
+libraries. Again, see Using External Storage > Installing and Configuring the
+Windows Network Drive App in the Enterprise Admin manual for instructions.
+
+Sharepoint Drive SSL
+^^^^^^^^^^^^^^^^^^^^
+
+The SharePoint Drive app does not verify the SSL certificate of the SharePoint
+server or the ownCloud server, as it is expected that both devices are in the
+same trusted environment.
+
+Shibboleth and WebDAV Incompatible
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+Shibboleth and standard WebDAV are incompatible, and cannot be used together in
+ownCloud. If Shibboleth is enabled, the ownCloud client uses an extended WebDAV
+protocol
+
+No SQLite
+^^^^^^^^^
+
+SQLite is no longer an installation option for ownCloud Enterprise Edition, as
+it not suitable for multiple-user installations or managing large numbers of
+files.
+
+No App Store
+^^^^^^^^^^^^
+
+The App Store is disabled for the Enterprise Edition.
+
+LDAP Home Connector Linux Only
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+The LDAP Home Connector application requires Linux (with MySQL, MariaDB,
+or PostgreSQL) to operate correctly.
diff --cc core/doc/admin/release/contents.html
index f20d5f3,0000000..257bb4e
mode 100644,000000..100644
--- a/core/doc/admin/release/contents.html
+++ b/core/doc/admin/release/contents.html
@@@ -1,574 -1,0 +1,575 @@@
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+
+ <title>ownCloud documentation contents — ownCloud Administrators Manual 7.0 documentation</title>
+
+ <link rel="stylesheet" href="_static/style.css" type="text/css" />
+ <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
+ <link rel="stylesheet" href="_static/style.css" type="text/css" />
+ <link rel="stylesheet" href="_static/bootstrap-sphinx.css" type="text/css" />
+
+ <script type="text/javascript">
+ var DOCUMENTATION_OPTIONS = {
+ URL_ROOT: '',
+ VERSION: '7.0',
+ COLLAPSE_INDEX: false,
+ FILE_SUFFIX: '.html',
+ HAS_SOURCE: true
+ };
+ </script>
+ <script type="text/javascript" src="_static/jquery.js"></script>
+ <script type="text/javascript" src="_static/underscore.js"></script>
+ <script type="text/javascript" src="_static/doctools.js"></script>
+ <script type="text/javascript" src="_static/bootstrap.js"></script>
+ <link rel="top" title="ownCloud Administrators Manual 7.0 documentation" href="index.html" />
+ <link rel="next" title="Introduction" href="index.html" />
+<script type="text/javascript">
+(function () {
+ /**
+ * Patch TOC list.
+ *
+ * Will mutate the underlying span to have a correct ul for nav.
+ *
+ * @param $span: Span containing nested UL's to mutate.
+ * @param minLevel: Starting level for nested lists. (1: global, 2: local).
+ */
+ var patchToc = function ($ul, minLevel) {
+ var findA;
+
+ // Find all a "internal" tags, traversing recursively.
+ findA = function ($elem, level) {
+ var level = level || 0,
+ $items = $elem.find("> li > a.internal, > ul, > li > ul");
+
+ // Iterate everything in order.
+ $items.each(function (index, item) {
+ var $item = $(item),
+ tag = item.tagName.toLowerCase(),
+ pad = 15 + ((level - minLevel) * 10);
+
+ if (tag === 'a' && level >= minLevel) {
+ // Add to existing padding.
+ $item.css('padding-left', pad + "px");
+ console.log(level, $item, 'padding-left', pad + "px");
+ } else if (tag === 'ul') {
+ // Recurse.
+ findA($item, level + 1);
+ }
+ });
+ };
+
+ console.log("HERE");
+ findA($ul);
+ };
+
+ $(document).ready(function () {
+ // Add styling, structure to TOC's.
+ $(".dropdown-menu").each(function () {
+ $(this).find("ul").each(function (index, item){
+ var $item = $(item);
+ $item.addClass('unstyled');
+ });
+ $(this).find("li").each(function () {
+ $(this).parent().append(this);
+ });
+ });
+
+ // Patch in level.
+ patchToc($("ul.globaltoc"), 2);
+ patchToc($("ul.localtoc"), 2);
+
+ // Enable dropdown.
+ $('.dropdown-toggle').dropdown();
+ });
+}());
+</script>
+
+ </head>
+ <body>
+
+
+<div class="container">
+ <div class="content">
+ <div class="page-header">
+ <h1><a href="#">ownCloud Administrators Manual</a></h1>
+
+ </div>
+
+ <div class="row">
+ <div class="span3">
+ <div class="sidebar">
+ <div class="well">
+ <div class="menu-support-container">
+ <ul id="menu-support" class="menu">
+ <ul>
+ <li><a href="#">Table of Contents</a></li>
+ </ul>
+ <ul>
+<li class="toctree-l1"><a class="reference internal" href="index.html">Introduction</a></li>
+</ul>
+<ul>
+<li class="toctree-l1"><a class="reference internal" href="videos.html">ownCloud Videos</a></li>
+<li class="toctree-l1"><a class="reference internal" href="whats_new_admin.html">What’s New for Admins in ownCloud 7</a></li>
+<li class="toctree-l1"><a class="reference internal" href="release_notes.html">ownCloud 7.0 Release Notes</a></li>
+<li class="toctree-l1"><a class="reference internal" href="installation/index.html">Installation</a></li>
+<li class="toctree-l1"><a class="reference internal" href="configuration/index.html">Configuration</a></li>
+<li class="toctree-l1"><a class="reference internal" href="maintenance/index.html">Maintenance</a></li>
+<li class="toctree-l1"><a class="reference internal" href="issues/index.html">Issues and Troubleshooting</a></li>
+</ul>
+
+ </ul>
+ </div>
+ </div>
+ </div>
+ </div>
+
+
+ <div class="span9">
+ <div class="page-content">
+
+ <div class="section" id="owncloud-documentation-contents">
+<span id="contents"></span><h1>ownCloud documentation contents<a class="headerlink" href="#owncloud-documentation-contents" title="Permalink to this headline">¶</a></h1>
+<div class="toctree-wrapper compound">
+<ul>
+<li class="toctree-l1"><a class="reference internal" href="index.html">Introduction</a><ul>
+<li class="toctree-l2"><a class="reference internal" href="index.html#target-audience">Target Audience</a></li>
+<li class="toctree-l2"><a class="reference internal" href="index.html#owncloud-videos-and-blogs">ownCloud Videos and Blogs</a></li>
+<li class="toctree-l2"><a class="reference internal" href="index.html#document-structure">Document Structure</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="index.html#installation">Installation</a></li>
+<li class="toctree-l3"><a class="reference internal" href="index.html#configuration">Configuration</a></li>
+<li class="toctree-l3"><a class="reference internal" href="index.html#maintenance">Maintenance</a></li>
+<li class="toctree-l3"><a class="reference internal" href="index.html#issues">Issues</a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</div>
+<div class="toctree-wrapper compound">
+<ul>
+<li class="toctree-l1"><a class="reference internal" href="videos.html">ownCloud Videos</a><ul>
+<li class="toctree-l2"><a class="reference internal" href="videos.html#server-to-server-sharing-on-owncloud-7">Server to Server Sharing on ownCloud 7</a></li>
+<li class="toctree-l2"><a class="reference internal" href="videos.html#introducing-owncloud-7-enterprise-edition">Introducing ownCloud 7 Enterprise Edition</a></li>
+<li class="toctree-l2"><a class="reference internal" href="videos.html#owncloud-for-enterprise-file-sync-and-share">ownCloud for Enterprise File Sync and Share</a></li>
+</ul>
+</li>
+<li class="toctree-l1"><a class="reference internal" href="whats_new_admin.html">What’s New for Admins in ownCloud 7</a><ul>
+<li class="toctree-l2"><a class="reference internal" href="whats_new_admin.html#new-user-management">New User Management</a></li>
+<li class="toctree-l2"><a class="reference internal" href="whats_new_admin.html#external-storage">External Storage</a></li>
+<li class="toctree-l2"><a class="reference internal" href="whats_new_admin.html#object-stores-as-primary-storage">Object Stores as Primary Storage</a></li>
+<li class="toctree-l2"><a class="reference internal" href="whats_new_admin.html#server-to-server-sharing">Server to Server Sharing</a></li>
+<li class="toctree-l2"><a class="reference internal" href="whats_new_admin.html#sharepoint-integration-enterprise-edition-only">SharePoint Integration (Enterprise Edition only)</a></li>
+<li class="toctree-l2"><a class="reference internal" href="whats_new_admin.html#windows-network-drive-integration-enterprise-edition-only">Windows Network Drive Integration (Enterprise Edition only)</a></li>
+<li class="toctree-l2"><a class="reference internal" href="whats_new_admin.html#sharing">Sharing</a></li>
+<li class="toctree-l2"><a class="reference internal" href="whats_new_admin.html#email-configuration-wizard">Email Configuration Wizard</a></li>
+<li class="toctree-l2"><a class="reference internal" href="whats_new_admin.html#editable-email-templates">Editable Email Templates</a></li>
+<li class="toctree-l2"><a class="reference internal" href="whats_new_admin.html#active-directory-and-ldap-enhancements">Active Directory and LDAP Enhancements</a></li>
+</ul>
+</li>
+<li class="toctree-l1"><a class="reference internal" href="release_notes.html">ownCloud 7.0 Release Notes</a><ul>
+<li class="toctree-l2"><a class="reference internal" href="release_notes.html#recommended-setup-for-running-owncloud">Recommended Setup for Running ownCloud</a></li>
+<li class="toctree-l2"><a class="reference internal" href="release_notes.html#supported-platforms">Supported Platforms</a><ul>
++<li class="toctree-l3"><a class="reference internal" href="release_notes.html#php-5-6-11-breaks-ldap-wizard">PHP 5.6.11+ Breaks LDAP Wizard</a></li>
+<li class="toctree-l3"><a class="reference internal" href="release_notes.html#manual-ldap-port-configuration">Manual LDAP Port Configuration</a></li>
+<li class="toctree-l3"><a class="reference internal" href="release_notes.html#ldap-search-performance-improved">LDAP Search Performance Improved</a></li>
+<li class="toctree-l3"><a class="reference internal" href="release_notes.html#protecting-owncloud-on-iis-from-data-loss">Protecting ownCloud on IIS from Data Loss</a></li>
+<li class="toctree-l3"><a class="reference internal" href="release_notes.html#antivirus-app-modes">Antivirus App Modes</a></li>
+<li class="toctree-l3"><a class="reference internal" href="release_notes.html#enable-only-for-specific-groups-fails">“Enable Only for Specific Groups” Fails</a></li>
+<li class="toctree-l3"><a class="reference internal" href="release_notes.html#changes-to-file-previews">Changes to File Previews</a></li>
+<li class="toctree-l3"><a class="reference internal" href="release_notes.html#gb-limit-on-sftp-transfers">4GB Limit on SFTP Transfers</a></li>
+<li class="toctree-l3"><a class="reference internal" href="release_notes.html#not-enough-space-available-on-file-upload">“Not Enough Space Available” on File Upload</a></li>
+<li class="toctree-l3"><a class="reference internal" href="release_notes.html#no-more-expiration-date-on-local-shares">No More Expiration Date On Local Shares</a></li>
+<li class="toctree-l3"><a class="reference internal" href="release_notes.html#zero-quota-not-read-only">Zero Quota Not Read-Only</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="release_notes.html#enterprise-7-only">Enterprise 7 Only</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="release_notes.html#no-federated-cloud-sharing-with-shibboleth">No Federated Cloud Sharing with Shibboleth</a></li>
+<li class="toctree-l3"><a class="reference internal" href="release_notes.html#windows-network-drive">Windows Network Drive</a></li>
+<li class="toctree-l3"><a class="reference internal" href="release_notes.html#sharepoint-drive-ssl">Sharepoint Drive SSL</a></li>
+<li class="toctree-l3"><a class="reference internal" href="release_notes.html#shibboleth-and-webdav-incompatible">Shibboleth and WebDAV Incompatible</a></li>
+<li class="toctree-l3"><a class="reference internal" href="release_notes.html#no-sqlite">No SQLite</a></li>
+<li class="toctree-l3"><a class="reference internal" href="release_notes.html#no-app-store">No App Store</a></li>
+<li class="toctree-l3"><a class="reference internal" href="release_notes.html#ldap-home-connector-linux-only">LDAP Home Connector Linux Only</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li class="toctree-l1"><a class="reference internal" href="installation/index.html">Installation</a><ul>
+<li class="toctree-l2"><a class="reference internal" href="installation/linux_installation.html">Preferred Linux Installation Method</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="installation/linux_installation.html#supported-distribution-packages">Supported Distribution Packages</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/linux_installation.html#additional-installation-guides-and-notes">Additional Installation Guides and Notes</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="installation/appliance_installation.html">ownCloud Appliances</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="installation/appliance_installation.html#software-appliances">Software Appliances</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/appliance_installation.html#owncloud-on-hardware-appliances">ownCloud on Hardware Appliances</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="installation/apps_management_installation.html">Installing and Managing Apps</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="installation/apps_management_installation.html#viewing-enabled-apps">Viewing Enabled Apps</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/apps_management_installation.html#managing-apps">Managing Apps</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/apps_management_installation.html#adding-third-party-apps">Adding Third Party Apps</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/apps_management_installation.html#setting-app-parameters">Setting App Parameters</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/apps_management_installation.html#using-custom-app-directories">Using Custom App Directories</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/apps_management_installation.html#using-your-own-appstore">Using Your Own Appstore</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="installation/hiawatha_configuration.html">Hiawatha Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="installation/installation_wizard.html">Installation Wizard</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="installation/installation_wizard.html#required-settings">Required Settings</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/installation_wizard.html#storage-database">Storage & Database</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/installation_wizard.html#database-choice">Database Choice</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/installation_wizard.html#finish-installation">Finish Installation</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/installation_wizard.html#setting-strong-directory-permissions">Setting Strong Directory Permissions</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/installation_wizard.html#trusted-domains">Trusted Domains</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="installation/lighttpd_configuration.html">Lighttpd Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="installation/macos_installation.html">Mac OS X</a></li>
+<li class="toctree-l2"><a class="reference internal" href="installation/nginx_configuration.html">Nginx Configuration</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="installation/nginx_configuration.html#suppressing-log-messages">Suppressing Log Messages</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/nginx_configuration.html#javascript-js-or-css-css-files-not-served-properly">JavaScript (.js) or CSS (.css) files not served properly</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="installation/others_installation.html">Other Installation Methods</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="installation/others_installation.html#pagekite-configuration">PageKite Configuration</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="installation/source_installation.html">Manual Installation on Linux</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="installation/source_installation.html#prerequisites">Prerequisites</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/source_installation.html#red-hat-enterprise-linux-6-centos-6-and-php-5-4">Red Hat Enterprise Linux 6, CentOS 6, and PHP 5.4</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/source_installation.html#example-installation-on-ubuntu-14-04-lts-server">Example installation on Ubuntu 14.04 LTS Server</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/source_installation.html#installation-wizard">Installation Wizard</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/source_installation.html#setting-strong-directory-permissions">Setting Strong Directory Permissions</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/source_installation.html#selinux">SELinux</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/source_installation.html#configuration-notes-to-php-ini-files">Configuration notes to php.ini files</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/source_installation.html#apache-web-server-configuration">Apache Web Server Configuration</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/source_installation.html#enabling-ssl">Enabling SSL</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/source_installation.html#configuring-owncloud">Configuring ownCloud</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/source_installation.html#other-web-servers">Other Web Servers</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="installation/ucs_installation.html">Univention Corporate Server</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="installation/ucs_installation.html#pre-configuration">Pre configuration</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/ucs_installation.html#installation">Installation</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/ucs_installation.html#postconfiguration-optional">Postconfiguration (optional)</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/ucs_installation.html#using-owncloud">Using ownCloud</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="installation/windows_installation.html">Windows 7 and Windows Server 2008</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="installation/windows_installation.html#activate-iis-with-cgi-support">Activate IIS with CGI Support</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/windows_installation.html#installing-php">Installing PHP</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/windows_installation.html#installing-mysql">Installing MySQL</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/windows_installation.html#installing-owncloud">Installing ownCloud</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/windows_installation.html#ensure-proper-http-verb-handling">Ensure Proper HTTP-Verb Handling</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/windows_installation.html#configuring-owncloud-php-and-iis-for-large-file-uploads">Configuring ownCloud, PHP and IIS for Large File Uploads</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="installation/yaws_configuration.html">Yaws Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="installation/selinux_configuration.html">SELinux Configuration</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="installation/selinux_configuration.html#allow-access-to-a-remote-database">Allow access to a remote database</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/selinux_configuration.html#allow-access-to-ldap-server">Allow access to LDAP server</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/selinux_configuration.html#allow-access-to-remote-network">Allow access to remote network</a></li>
+<li class="toctree-l3"><a class="reference internal" href="installation/selinux_configuration.html#allow-access-to-smtp-sendmail">Allow access to SMTP/sendmail</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li class="toctree-l1"><a class="reference internal" href="configuration/index.html">Configuration</a><ul>
+<li class="toctree-l2"><a class="reference internal" href="configuration/activity_configuration.html">Configuring the Activity App</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="configuration/activity_configuration.html#enabling-the-activity-app">Enabling the Activity App</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/activity_configuration.html#configuring-your-owncloud-for-the-activity-app">Configuring your ownCloud for the Activity App</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/antivirus_configuration.html">Configuring the ClamAV Antivirus Scanner</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="configuration/antivirus_configuration.html#installing-clamav">Installing ClamAV</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/antivirus_configuration.html#enabling-the-antivirus-app-for-files">Enabling the Antivirus App for Files</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/antivirus_configuration.html#configuring-clamav-on-owncloud">Configuring ClamAV on ownCloud</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/automatic_configuration.html">Automatic Configuration Setup</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="configuration/automatic_configuration.html#parameters">Parameters</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/automatic_configuration.html#automatic-configurations-examples">Automatic Configurations Examples</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/background_jobs_configuration.html">Defining Background Jobs</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="configuration/background_jobs_configuration.html#parameters">Parameters</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/background_jobs_configuration.html#cron-jobs">Cron Jobs</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/big_file_upload_configuration.html">Uploading big files > 512MB (as set by default)</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="configuration/big_file_upload_configuration.html#system-configuration">System Configuration</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/big_file_upload_configuration.html#configuring-your-webserver">Configuring Your Webserver</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/big_file_upload_configuration.html#configuring-php">Configuring PHP</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/collaborative_documents_configuration.html">Configuring the Collaborative Documents App</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="configuration/collaborative_documents_configuration.html#enabling-the-documents-app">Enabling the Documents App</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/collaborative_documents_configuration.html#enabling-and-testing-ms-word-support">Enabling and testing MS Word support</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/config_sample_php_parameters.html">Config.php Parameters</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="configuration/config_sample_php_parameters.html#default-parameters">Default Parameters</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/config_sample_php_parameters.html#default-config-php-examples">Default config.php Examples</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/config_sample_php_parameters.html#user-experience">User Experience</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/config_sample_php_parameters.html#mail-parameters">Mail Parameters</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/config_sample_php_parameters.html#proxy-configurations">Proxy Configurations</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/config_sample_php_parameters.html#deleted-items-trash-bin">Deleted Items (trash bin)</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/config_sample_php_parameters.html#owncloud-verifications">ownCloud Verifications</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/config_sample_php_parameters.html#logging">Logging</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/config_sample_php_parameters.html#alternate-code-locations">Alternate Code Locations</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/config_sample_php_parameters.html#apps">Apps</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/config_sample_php_parameters.html#previews">Previews</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/config_sample_php_parameters.html#ldap">LDAP</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/config_sample_php_parameters.html#maintenance">Maintenance</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/config_sample_php_parameters.html#ssl">SSL</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/config_sample_php_parameters.html#miscellaneous">Miscellaneous</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/config_sample_php_parameters.html#app-config-options">App config options</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/custom_client_configuration.html">Custom Client Configuration</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="configuration/custom_client_configuration.html#parameters">Parameters</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/database_configuration.html">Database Configuration</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="configuration/database_configuration.html#requirements">Requirements</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/database_configuration.html#parameters">Parameters</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/database_configuration.html#troubleshooting">Troubleshooting</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/email_configuration.html">Email Configuration</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="configuration/email_configuration.html#configuring-an-smtp-server">Configuring an SMTP Server</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/email_configuration.html#configuring-php-and-sendmail">Configuring PHP and Sendmail</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/email_configuration.html#using-email-templates">Using Email Templates</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/email_configuration.html#setting-mail-server-parameters-in-config-php">Setting Mail Server Parameters in config.php</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/email_configuration.html#send-a-test-email">Send a Test Email</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/email_configuration.html#troubleshooting">Troubleshooting</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/email_configuration.html#enabling-debug-mode">Enabling Debug Mode</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/encryption_configuration.html">Encryption Configuration</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="configuration/encryption_configuration.html#enabling-the-encryption-app">Enabling the Encryption App</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/encryption_configuration.html#sharing-encrypted-files">Sharing Encrypted Files</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/encryption_configuration.html#decrypting-encrypted-files">Decrypting Encrypted Files</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/encryption_configuration.html#enabling-a-file-recovery-key">Enabling a File Recovery Key</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/encryption_configuration.html#files-not-encrypted">Files Not Encrypted</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/encryption_configuration.html#ldap-and-other-external-user-back-ends">LDAP and Other External User Back-ends</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/encryption_configuration.html#missing-requirements-message-on-windows-servers">“Missing requirements” Message on Windows Servers</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/external_storage_configuration_gui.html">Configuring External Storage (GUI)</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="configuration/external_storage_configuration_gui.html#supported-mounts">Supported mounts</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/external_storage_configuration_gui.html#enabling-external-storage-support">Enabling External Storage Support</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/external_storage_configuration_gui.html#using-self-signed-certificates">Using self-signed certificates</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/external_storage_configuration_gui.html#adding-files-to-external-storages">Adding files to external storages</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/external_storage_configuration_gui.html#local-storage">Local Storage</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/external_storage_configuration_gui.html#amazon-s3">Amazon S3</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/external_storage_configuration_gui.html#dropbox">Dropbox</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/external_storage_configuration_gui.html#ftp-ftps-sftp">FTP/FTPS/SFTP</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/external_storage_configuration_gui.html#google-drive">Google Drive</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/external_storage_configuration_gui.html#smb-cifs">SMB/CIFS</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/external_storage_configuration_gui.html#smb-cifs-using-oc-login">SMB/CIFS using OC login</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/external_storage_configuration_gui.html#owncloud-and-webdav">ownCloud and WebDAV</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/external_storage_configuration_gui.html#openstack-object-storage">OpenStack Object Storage</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/external_storage_configuration_gui.html#configuration-file">Configuration File</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/external_storage_configuration.html">Configuring External Storage (Configuration File)</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="configuration/external_storage_configuration.html#using-self-signed-certificates">Using self-signed certificates</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/external_storage_configuration.html#adding-files-to-external-storages">Adding files to external storages</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/external_storage_configuration.html#example">Example</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/external_storage_configuration.html#priorities">Priorities</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/external_storage_configuration.html#backends">Backends</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/external_storage_configuration.html#external-storage-password-management">External Storage Password Management</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/external_sites.html">Linking External Sites</a></li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/file_sharing_configuration.html">File Sharing</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="configuration/file_sharing_configuration.html#creating-persistent-file-shares">Creating Persistent File Shares</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/files_locking_enabling.html">Files Locking App Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/harden_server.html">Hardening and Security Guidance</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="configuration/harden_server.html#limit-on-password-length">Limit on Password Length</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/harden_server.html#operating-system">Operating system</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/harden_server.html#deployment">Deployment</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/harden_server.html#use-https">Use HTTPS</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/harden_server.html#use-a-dedicated-domain-for-owncloud">Use a dedicated domain for ownCloud</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/harden_server.html#serve-security-related-headers-by-the-web-server">Serve security related Headers by the web server</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/js_css_asset_management_configuration.html">JavaScript and CSS Asset Management</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="configuration/js_css_asset_management_configuration.html#parameters">Parameters</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/knowledgebase_configuration.html">Knowledge Base Configuration</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="configuration/knowledgebase_configuration.html#parameters">Parameters</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/language_configuration.html">Language Configuration</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="configuration/language_configuration.html#parameters">Parameters</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/logging_configuration.html">Logging Configuration</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="configuration/logging_configuration.html#parameters">Parameters</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/occ_command.html">Using the occ Command</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="configuration/occ_command.html#maintenance-commands">Maintenance Commands</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/occ_command.html#user-commands">User Commands</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/occ_command.html#apps-commands">Apps Commands</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/occ_command.html#upgrade-command">Upgrade Command</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/occ_command.html#database-conversion">Database Conversion</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/occ_command.html#ldap-commands">LDAP Commands</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/occ_command.html#file-scanning">File Scanning</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/performance_tips.html">Performance Tips</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="configuration/performance_tips.html#ssl-encryption-app">SSL / Encryption App</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/performance_tips.html#opcache-extension">OPcache Extension</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/performance_tips.html#object-caching">Object Caching</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/performance_tips.html#enable-the-spdy-protocol">Enable the SPDY protocol</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/performance_tips.html#serving-static-files-via-web-server">Serving static files via web server</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/performance_tips.html#using-cron-to-perform-background-jobs">Using cron to perform background jobs</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/performance_tips.html#using-mysql-instead-of-sqlite">Using MySQL instead of SQLite</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/performance_tips.html#improve-slow-performance-with-mysql-on-windows">Improve slow performance with MySQL on Windows</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/performance_tips.html#nginx-caching-owncloud-gallery-thumbnails-with-fastcgi-cache-purge">Nginx: caching ownCloud gallery thumbnails with fastcgi_cache_purge</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/previews_configuration.html">Previews Configuration</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="configuration/previews_configuration.html#parameters">Parameters</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/reverse_proxy_configuration.html">Reverse Proxy Configuration</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="configuration/reverse_proxy_configuration.html#parameters">Parameters</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/reverse_proxy_configuration.html#example">Example</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/search_configuration.html">Enabling Full-Text Search</a></li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/server_to_server_configuration.html">Configuring Server-to-Server Sharing</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="configuration/server_to_server_configuration.html#notes">Notes</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/serving_static_files_configuration.html">Serving Static Files for Better Performance</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="configuration/serving_static_files_configuration.html#apache2-x-sendfile">Apache2 (X-Sendfile)</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/serving_static_files_configuration.html#lighttpd-x-sendfile2">LigHTTPd (X-Sendfile2)</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/serving_static_files_configuration.html#nginx-x-accel-redirect">Nginx (X-Accel-Redirect)</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/serving_static_files_configuration.html#how-to-check-if-it-s-working">How to check if it’s working?</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/thirdparty_php_configuration.html">Using Third Party PHP Components</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="configuration/thirdparty_php_configuration.html#managing-third-party-parameters">Managing Third Party Parameters</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/user_auth_ftp_smb_imap.html">User Authentication with IMAP, SMB, and FTP</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="configuration/user_auth_ftp_smb_imap.html#imap">IMAP</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/user_auth_ftp_smb_imap.html#smb">SMB</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/user_auth_ftp_smb_imap.html#ftp">FTP</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/user_auth_ldap.html">User Authentication with LDAP</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="configuration/user_auth_ldap.html#configuration">Configuration</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/user_auth_ldap.html#advanced-settings">Advanced Settings</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/user_auth_ldap.html#expert-settings">Expert Settings</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/user_auth_ldap.html#testing-the-configuration">Testing the configuration</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/user_auth_ldap.html#owncloud-avatar-integration">ownCloud Avatar integration</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/user_auth_ldap.html#troubleshooting-tips-and-tricks">Troubleshooting, Tips and Tricks</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/user_auth_ldap.html#ssl-certificate-verification-ldaps-tls">SSL Certificate Verification (LDAPS, TLS)</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/user_auth_ldap.html#microsoft-active-directory">Microsoft Active Directory</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/user_auth_ldap.html#duplicating-server-configurations">Duplicating Server Configurations</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/user_auth_ldap.html#owncloud-ldap-internals">ownCloud LDAP Internals</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/user_auth_ldap.html#user-and-group-mapping">User and Group Mapping</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/user_auth_ldap.html#caching">Caching</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/user_auth_ldap.html#handling-with-backup-server">Handling with Backup Server</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/user_auth_ldap_cleanup.html">LDAP User Cleanup</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="configuration/user_auth_ldap_cleanup.html#deleting-local-owncloud-users">Deleting Local ownCloud Users</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/user_configuration.html">User Management</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="configuration/user_configuration.html#creating-a-new-user">Creating a New User</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/user_configuration.html#reset-a-user-s-password">Reset a User’s Password</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/user_configuration.html#renaming-a-user">Renaming a User</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/user_configuration.html#granting-administrator-privileges-to-a-user">Granting Administrator Privileges to a User</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/user_configuration.html#managing-groups">Managing Groups</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/user_configuration.html#setting-storage-quotas">Setting Storage Quotas</a></li>
+<li class="toctree-l3"><a class="reference internal" href="configuration/user_configuration.html#deleting-users">Deleting users</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="configuration/reset_admin_password.html">Resetting a Lost Admin Password</a></li>
+</ul>
+</li>
+<li class="toctree-l1"><a class="reference internal" href="maintenance/index.html">Maintenance</a><ul>
+<li class="toctree-l2"><a class="reference internal" href="maintenance/enable_maintenance.html">Maintenance Mode Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="maintenance/backup.html">Backing up ownCloud</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="maintenance/backup.html#backup-folders">Backup Folders</a></li>
+<li class="toctree-l3"><a class="reference internal" href="maintenance/backup.html#backup-database">Backup Database</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="maintenance/update.html">Updating ownCloud with the Updater App</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="maintenance/update.html#setting-strong-permissions">Setting Strong Permissions</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="maintenance/upgrade.html">Upgrading Your ownCloud Server</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="maintenance/upgrade.html#preferred-upgrade-method">Preferred Upgrade Method</a></li>
+<li class="toctree-l3"><a class="reference internal" href="maintenance/upgrade.html#upgrading-with-your-linux-package-manager">Upgrading With Your Linux Package Manager</a></li>
+<li class="toctree-l3"><a class="reference internal" href="maintenance/upgrade.html#manual-upgrade-procedure">Manual Upgrade Procedure</a></li>
+<li class="toctree-l3"><a class="reference internal" href="maintenance/upgrade.html#setting-strong-permissions">Setting Strong Permissions</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="maintenance/restore.html">Restoring ownCloud</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="maintenance/restore.html#restore-folders">Restore Folders</a></li>
+<li class="toctree-l3"><a class="reference internal" href="maintenance/restore.html#restore-database">Restore Database</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="maintenance/migrating.html">Migrating ownCloud Installations</a></li>
+<li class="toctree-l2"><a class="reference internal" href="maintenance/convert_db.html">Converting From SQLite to MySQL, MariaDB, or PostgreSQL</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="maintenance/convert_db.html#running-the-conversion">Running the Conversion</a></li>
+<li class="toctree-l3"><a class="reference internal" href="maintenance/convert_db.html#conversion-options">Conversion Options</a></li>
+<li class="toctree-l3"><a class="reference internal" href="maintenance/convert_db.html#unconvertible-tables">Unconvertible Tables</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li class="toctree-l1"><a class="reference internal" href="issues/index.html">Issues and Troubleshooting</a><ul>
+<li class="toctree-l2"><a class="reference internal" href="issues/index.html#bugs">Bugs</a></li>
+<li class="toctree-l2"><a class="reference internal" href="issues/index.html#general-troubleshooting">General Troubleshooting</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="issues/index.html#debugging-the-issue">Debugging the issue</a></li>
+<li class="toctree-l3"><a class="reference internal" href="issues/index.html#debugging-sync-issues">Debugging Sync-Issues</a></li>
+<li class="toctree-l3"><a class="reference internal" href="issues/index.html#common-problems-error-messages">Common problems / error messages</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="issues/index.html#troubleshooting-webserver-and-php-problems">Troubleshooting Webserver and PHP problems</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="issues/index.html#logfiles">Logfiles</a></li>
+<li class="toctree-l3"><a class="reference internal" href="issues/index.html#webserver-and-php-modules">Webserver and PHP modules</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="issues/index.html#troubleshooting-webdav">Troubleshooting WebDAV</a></li>
+<li class="toctree-l2"><a class="reference internal" href="issues/index.html#troubleshooting-contacts-calendar">Troubleshooting Contacts & Calendar</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="issues/index.html#service-discovery">Service discovery</a></li>
+<li class="toctree-l3"><a class="reference internal" href="issues/index.html#apple-ios">Apple iOS</a></li>
+<li class="toctree-l3"><a class="reference internal" href="issues/index.html#unable-to-update-contacts-or-events">Unable to update Contacts or Events</a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</div>
+</div>
+
+
+ </div>
+ </div>
+ </div>
+
+ </div>
+</div>
+ </body>
+</html>
diff --cc core/doc/admin/release/maintenance/upgrade.html
index c8b4fc2,0000000..a5895b9
mode 100644,000000..100644
--- a/core/doc/admin/release/maintenance/upgrade.html
+++ b/core/doc/admin/release/maintenance/upgrade.html
@@@ -1,517 -1,0 +1,506 @@@
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+
+ <title>Upgrading Your ownCloud Server — ownCloud Administrators Manual 7.0 documentation</title>
+
+ <link rel="stylesheet" href="../_static/style.css" type="text/css" />
+ <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
+ <link rel="stylesheet" href="../_static/style.css" type="text/css" />
+ <link rel="stylesheet" href="../_static/bootstrap-sphinx.css" type="text/css" />
+
+ <script type="text/javascript">
+ var DOCUMENTATION_OPTIONS = {
+ URL_ROOT: '../',
+ VERSION: '7.0',
+ COLLAPSE_INDEX: false,
+ FILE_SUFFIX: '.html',
+ HAS_SOURCE: true
+ };
+ </script>
+ <script type="text/javascript" src="../_static/jquery.js"></script>
+ <script type="text/javascript" src="../_static/underscore.js"></script>
+ <script type="text/javascript" src="../_static/doctools.js"></script>
+ <script type="text/javascript" src="../_static/bootstrap.js"></script>
+ <link rel="top" title="ownCloud Administrators Manual 7.0 documentation" href="../index.html" />
+ <link rel="up" title="Maintenance" href="index.html" />
+ <link rel="next" title="Restoring ownCloud" href="restore.html" />
+ <link rel="prev" title="Updating ownCloud with the Updater App" href="update.html" />
+<script type="text/javascript">
+(function () {
+ /**
+ * Patch TOC list.
+ *
+ * Will mutate the underlying span to have a correct ul for nav.
+ *
+ * @param $span: Span containing nested UL's to mutate.
+ * @param minLevel: Starting level for nested lists. (1: global, 2: local).
+ */
+ var patchToc = function ($ul, minLevel) {
+ var findA;
+
+ // Find all a "internal" tags, traversing recursively.
+ findA = function ($elem, level) {
+ var level = level || 0,
+ $items = $elem.find("> li > a.internal, > ul, > li > ul");
+
+ // Iterate everything in order.
+ $items.each(function (index, item) {
+ var $item = $(item),
+ tag = item.tagName.toLowerCase(),
+ pad = 15 + ((level - minLevel) * 10);
+
+ if (tag === 'a' && level >= minLevel) {
+ // Add to existing padding.
+ $item.css('padding-left', pad + "px");
+ console.log(level, $item, 'padding-left', pad + "px");
+ } else if (tag === 'ul') {
+ // Recurse.
+ findA($item, level + 1);
+ }
+ });
+ };
+
+ console.log("HERE");
+ findA($ul);
+ };
+
+ $(document).ready(function () {
+ // Add styling, structure to TOC's.
+ $(".dropdown-menu").each(function () {
+ $(this).find("ul").each(function (index, item){
+ var $item = $(item);
+ $item.addClass('unstyled');
+ });
+ $(this).find("li").each(function () {
+ $(this).parent().append(this);
+ });
+ });
+
+ // Patch in level.
+ patchToc($("ul.globaltoc"), 2);
+ patchToc($("ul.localtoc"), 2);
+
+ // Enable dropdown.
+ $('.dropdown-toggle').dropdown();
+ });
+}());
+</script>
+
+ </head>
+ <body>
+
+
+<div class="container">
+ <div class="content">
+ <div class="page-header">
+ <h1><a href="../contents.html">ownCloud Administrators Manual</a></h1>
+
+ </div>
+
+ <div class="row">
+ <div class="span3">
+ <div class="sidebar">
+ <div class="well">
+ <div class="menu-support-container">
+ <ul id="menu-support" class="menu">
+ <ul>
+ <li><a href="../contents.html">Table of Contents</a></li>
+ </ul>
+ <ul>
+<li class="toctree-l1"><a class="reference internal" href="../index.html">Introduction</a></li>
+</ul>
+<ul class="current">
+<li class="toctree-l1"><a class="reference internal" href="../videos.html">ownCloud Videos</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../whats_new_admin.html">What’s New for Admins in ownCloud 7</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../release_notes.html">ownCloud 7.0 Release Notes</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../installation/index.html">Installation</a></li>
+<li class="toctree-l1"><a class="reference internal" href="../configuration/index.html">Configuration</a></li>
+<li class="toctree-l1 current"><a class="reference internal" href="index.html">Maintenance</a><ul class="current">
+<li class="toctree-l2"><a class="reference internal" href="enable_maintenance.html">Maintenance Mode Configuration</a></li>
+<li class="toctree-l2"><a class="reference internal" href="backup.html">Backing up ownCloud</a></li>
+<li class="toctree-l2"><a class="reference internal" href="update.html">Updating ownCloud with the Updater App</a></li>
+<li class="toctree-l2 current"><a class="current reference internal" href="">Upgrading Your ownCloud Server</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="#preferred-upgrade-method">Preferred Upgrade Method</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#upgrading-with-your-linux-package-manager">Upgrading With Your Linux Package Manager</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#manual-upgrade-procedure">Manual Upgrade Procedure</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#setting-strong-permissions">Setting Strong Permissions</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="restore.html">Restoring ownCloud</a></li>
+<li class="toctree-l2"><a class="reference internal" href="migrating.html">Migrating ownCloud Installations</a></li>
+<li class="toctree-l2"><a class="reference internal" href="convert_db.html">Converting From SQLite to MySQL, MariaDB, or PostgreSQL</a></li>
+</ul>
+</li>
+<li class="toctree-l1"><a class="reference internal" href="../issues/index.html">Issues and Troubleshooting</a></li>
+</ul>
+
+ </ul>
+ </div>
+ </div>
+ </div>
+ </div>
+
+
+ <div class="span9">
+ <div class="page-content">
+
+ <div class="section" id="upgrading-your-owncloud-server">
+<h1>Upgrading Your ownCloud Server<a class="headerlink" href="#upgrading-your-owncloud-server" title="Permalink to this headline">¶</a></h1>
++<p><strong>Starting with version 7.0.11, ownCloud will be automatically put into
++maintenance mode after downloading upgraded packages. You must take it out of
++maintenance mode and then run the upgrade wizard to complete the upgrade.</strong></p>
+<p>It is best to keep your ownCloud server upgraded regularly, and to install all
+point releases and major releases without skipping any of them. Major releases
+are 6.0 and 7.0, and point releases are intermediate releases for each
+major release. For example, 7.0.1 and 7.0.2 are point releases.</p>
+<p>There are multiple ways to keep your ownCloud server upgraded: with the Updater
+App, with your Linux package manager, and by manually upgrading. In this chapter
+you will learn how to keep your ownCloud installation current with your Linux
+package manager, and by manually upgrading.</p>
+<p>(See <a class="reference internal" href="update.html"><em>Updating ownCloud with the Updater App</em></a> to learn about the Updater App.)</p>
+<div class="admonition note">
+<p class="first admonition-title">Note</p>
+<p class="last">Before upgrading to a new major release, always first review any
+third-party apps you have installed for compatibility with
+the new ownCloud release. Any apps that are not developed by ownCloud show a
+3rd party designation. Install unsupported apps at your own risk. Then,
+before the upgrade, they must all be disabled. After the upgrade is
+complete and you are sure they are compatible with the new ownCloud
+release you may re-enable them.</p>
+</div>
+<div class="section" id="preferred-upgrade-method">
+<h2>Preferred Upgrade Method<a class="headerlink" href="#preferred-upgrade-method" title="Permalink to this headline">¶</a></h2>
+<p>The best method for keeping ownCloud on Linux servers current is by
+configuring your system to use the <a class="reference external" href="http://software.opensuse.org/download.html?project=isv:ownCloud:community&package=owncloud">openSUSE Build Service</a> (see <a class="reference internal" href="../installation/linux_installation.html"><em>Preferred Linux Installation Method</em></a>); just
+follow the instructions on oBS for setting up your package manager. Then
+stay current by using your Linux package manager to upgrade.</p>
+<p>You should always maintain regular backups (see <a class="reference internal" href="backup.html"><em>Backing up ownCloud</em></a>),
+and make a backup before every upgrade.</p>
+<p>When a new ownCloud release is available you will see a yellow banner in your
+ownCloud Web interface.</p>
+<div class="figure">
+<img alt="../_images/updater-1.png" src="../_images/updater-1.png" />
+</div>
+<p><strong>Upgrading is disruptive</strong>. When you upgrade ownCloud with your Linux package
+manager, that is just the first step to applying the upgrade. After
+downloading the new ownCloud packages your session will be interrupted, and you
+must run the upgrade wizard to complete the upgrade, which is discussed in the
+next section.</p>
+</div>
+<div class="section" id="upgrading-with-your-linux-package-manager">
+<h2>Upgrading With Your Linux Package Manager<a class="headerlink" href="#upgrading-with-your-linux-package-manager" title="Permalink to this headline">¶</a></h2>
+<p>When an ownCloud upgrade is available from the openSUSE Build Service
+repository, you can apply it just like any normal Linux upgrade. For example,
+on Debian or Ubuntu Linux this is the standard system upgrade command:</p>
+<div class="highlight-python"><pre>$ sudo apt-get update && sudo apt-get upgrade</pre>
+</div>
+<p>Or you can upgrade just ownCloud with this command:</p>
+<div class="highlight-python"><pre>$ sudo apt-get update && sudo apt-get install owncloud</pre>
+</div>
+<p>On Fedora, CentOS, and Red Hat Linux use <tt class="docutils literal"><span class="pre">yum</span></tt> to see all available updates:</p>
+<div class="highlight-python"><pre>$ yum check-update</pre>
+</div>
+<p>You can apply all available updates with this command:</p>
+<div class="highlight-python"><pre>$ sudo yum update</pre>
+</div>
+<p>Or update only ownCloud:</p>
+<div class="highlight-python"><pre>$ sudo yum update owncloud</pre>
+</div>
+<p>Your Linux package manager only downloads the current ownCloud packages. There
- is one more step, and that is to run the upgrade wizard to perform the final
- steps of updating the database and turning off maintenance mode. After using
- your package manager to install the current ownCloud release, you will see two
- screens. On the first screen, click the Start Upgrade button, or optionally run
- the <tt class="docutils literal"><span class="pre">occ</span> <span class="pre">upgrade</span></tt> command instead of clicking the button.</p>
- <div class="figure">
- <img alt="../_images/updater-6.png" src="../_images/updater-6.png" />
++are two more steps:</p>
++<ul class="simple">
++<li>Take your ownCloud server out of maintenance mode (7.0.11+)</li>
++<li>Run the upgrade wizard to perform the final steps of updating the database and
++apps.</li>
++</ul>
++<p>Your Linux package manager only downloads the current ownCloud packages. Then
++your ownCloud server is automatically put into maintenance mode. Take your
++server out of maintenance mode by changing <tt class="docutils literal"><span class="pre">'maintenance'</span> <span class="pre">=></span> <span class="pre">true,</span></tt> to
++<tt class="docutils literal"><span class="pre">'maintenance'</span> <span class="pre">=></span> <span class="pre">false,</span></tt> in <tt class="docutils literal"><span class="pre">config.php</span></tt>, or use the <tt class="docutils literal"><span class="pre">occ</span> <span class="pre">command</span></tt>, like
++this example on Ubuntu:</p>
++<div class="highlight-python"><pre>$ sudo -u www-data php occ maintenance:mode --off</pre>
+</div>
- <p><tt class="docutils literal"><span class="pre">occ</span> <span class="pre">upgrade</span></tt>
- is more reliable, especially on installations with large datasets and large
- numbers of users because it avoids the risk of PHP timeouts.</p>
++<p><tt class="docutils literal"><span class="pre">occ</span> <span class="pre">upgrade</span></tt> is more reliable, especially on installations with large
++datasets and large numbers of users because it avoids the risk of PHP timeouts.</p>
+<div class="admonition note">
+<p class="first admonition-title">Note</p>
+<p class="last">The <tt class="docutils literal"><span class="pre">occ</span></tt> command does not download ownCloud updates. You must first
+download the updated code, and then <tt class="docutils literal"><span class="pre">occ</span></tt> performs the final upgrade steps.</p>
+</div>
- <p>The <tt class="docutils literal"><span class="pre">occ</span></tt>
- command
- is in your <tt class="docutils literal"><span class="pre">owncloud/</span></tt> directory. You must run it as your HTTP user. This
- example is for Debian/Ubuntu:</p>
- <div class="highlight-python"><pre>$ sudo -u www-data php occ upgrade</pre>
- </div>
- <p>This example is for Fedora, CentOS, and Red Hat Linux:</p>
- <div class="highlight-python"><pre>$ sudo -u apache php occ upgrade</pre>
- </div>
- <ul class="simple">
- <li>The HTTP user and group in Debian/Ubuntu is <tt class="docutils literal"><span class="pre">www-data</span></tt>.</li>
- <li>The HTTP user and group in Fedora/CentOS/RHEL is <tt class="docutils literal"><span class="pre">apache</span></tt>.</li>
- <li>The HTTP user and group in Arch Linux is <tt class="docutils literal"><span class="pre">http</span></tt>.</li>
- <li>The HTTP user in openSUSE is <tt class="docutils literal"><span class="pre">wwwrun</span></tt>, and the HTTP group is <tt class="docutils literal"><span class="pre">www</span></tt>.</li>
- </ul>
+<p>See <a class="reference internal" href="../configuration/occ_command.html"><em>Using the occ Command</em></a> to learn more about using the
+<tt class="docutils literal"><span class="pre">occ</span></tt> command, and see the <strong>Setting Strong Directory Permissions</strong> section
+of <a class="reference internal" href="../installation/installation_wizard.html"><em>Installation Wizard</em></a> to learn how to find your
+HTTP user.</p>
- <p>When the upgrade is successful you will see the following screen:</p>
- <div class="figure">
- <img alt="../_images/updater-7.png" src="../_images/updater-7.png" />
- </div>
++<p>When the upgrade is successful you will be returned to the login screen.</p>
+<p>If the upgrade fails, then you must try a manual upgrade.</p>
+</div>
+<div class="section" id="manual-upgrade-procedure">
+<h2>Manual Upgrade Procedure<a class="headerlink" href="#manual-upgrade-procedure" title="Permalink to this headline">¶</a></h2>
+<p>Start by putting your server in maintenance mode. This prevents new logins,
+locks the sessions of logged-in users, and displays a status screen so users
+know what is happening. There are two ways to do this, and the preferred method
+is to use the <tt class="docutils literal"><span class="pre">occ</span></tt> command. This example is for Ubuntu Linux:</p>
+<div class="highlight-python"><pre>$ sudo -u www-data php occ maintenance:mode --on</pre>
+</div>
+<p>Please see <a class="reference internal" href="../configuration/occ_command.html"><em>Using the occ Command</em></a> to learn more about <tt class="docutils literal"><span class="pre">occ</span></tt>.</p>
+<p>The other way is by entering your <tt class="docutils literal"><span class="pre">config.php</span></tt> file and changing
+<tt class="docutils literal"><span class="pre">'maintenance'</span> <span class="pre">=></span> <span class="pre">false,</span></tt> to <tt class="docutils literal"><span class="pre">'maintenance'</span> <span class="pre">=></span> <span class="pre">true,</span></tt>. When you’re finished
+upgrading, remember to change <tt class="docutils literal"><span class="pre">true</span></tt> to <tt class="docutils literal"><span class="pre">false</span></tt>.</p>
+<p>Then:</p>
+<ol class="arabic simple">
+<li>Ensure that you are running the latest point release of your current major
+ownCloud version.</li>
+<li>Deactivate all third party applications (not core apps), and review them for
+compatibility with your new ownCloud version.</li>
+<li>Back up your existing ownCloud Server database, data directory, and
+<tt class="docutils literal"><span class="pre">config.php</span></tt> file. (See <a class="reference internal" href="backup.html"><em>Backing up ownCloud</em></a>.)</li>
+<li>Download the latest ownCloud Server version into an empty directory outside
+of your current installation. For example, if your current ownCloud is
+installed in <tt class="docutils literal"><span class="pre">/var/www/owncloud/</span></tt> you could create a new directory called
+<tt class="docutils literal"><span class="pre">/var/www/owncloud2/</span></tt></li>
+</ol>
+<p>On Linux operating systems, change to your new directory and download the
+current ownCloud tarball with <tt class="docutils literal"><span class="pre">wget</span></tt>:</p>
+<blockquote>
+<div><tt class="docutils literal"><span class="pre">wget</span> <span class="pre">http://download.owncloud.org/community/owncloud-latest.tar.bz2</span></tt></div></blockquote>
+<p>For Windows operating systems see the installation instruction in
+<a class="reference internal" href="../installation/windows_installation.html"><em>Windows 7 and Windows Server 2008</em></a>.</p>
+<ol class="arabic simple" start="5">
+<li>Stop your web server.</li>
+</ol>
+<p>Depending on your environment, you will be running either an Apache server or
+a Windows IIS server. To stop an Apache server, refer to the following table for
+specific commands to use in different Linux operating systems:</p>
+<blockquote>
+<div><table border="1" class="docutils">
+<colgroup>
+<col width="36%" />
+<col width="64%" />
+</colgroup>
+<thead valign="bottom">
+<tr class="row-odd"><th class="head">Operating System</th>
+<th class="head">Command (as root)</th>
+</tr>
+</thead>
+<tbody valign="top">
+<tr class="row-even"><td>CentOS/ Red Hat</td>
+<td><tt class="docutils literal"><span class="pre">apachectl</span> <span class="pre">stop</span></tt></td>
+</tr>
+<tr class="row-odd"><td>Debian
+or
+Ubuntu</td>
+<td><tt class="docutils literal"><span class="pre">/etc/init.d/apache2</span> <span class="pre">stop</span></tt></td>
+</tr>
+<tr class="row-even"><td><p class="first">SUSE Enterprise
+Linux 11</p>
+<p class="last">openSUSE 12.3 and up</p>
+</td>
+<td><p class="first"><tt class="docutils literal"><span class="pre">/usr/sbin/rcapache2</span> <span class="pre">stop</span></tt></p>
+<p class="last"><tt class="docutils literal"><span class="pre">systemctl</span> <span class="pre">stop</span> <span class="pre">apache2</span></tt></p>
+</td>
+</tr>
+</tbody>
+</table>
+</div></blockquote>
+<p>To stop the Windows IIS web server, you can use either the user interface (UI)
+or command line method as follows:</p>
+<blockquote>
+<div><table border="1" class="docutils">
+<colgroup>
+<col width="30%" />
+<col width="70%" />
+</colgroup>
+<thead valign="bottom">
+<tr class="row-odd"><th class="head">Method</th>
+<th class="head">Procedure</th>
+</tr>
+</thead>
+<tbody valign="top">
+<tr class="row-even"><td>User Interface (UI)</td>
+<td><ol class="first last arabic simple">
+<li>Open IIS Manager and navigate to the
+web server node in the tree.</li>
+<li>In the <strong>Actions</strong> pane, click <strong>Stop</strong>.</li>
+</ol>
+</td>
+</tr>
+<tr class="row-odd"><td>Command Line</td>
+<td><ol class="first last arabic simple">
+<li>Open a command line window as
+administrator.</li>
+<li>At the command prompt, type <strong>net stop WAS</strong>
+and press <strong>ENTER</strong>.</li>
+<li>(Optional) To stop W3SVC, type <strong>Y</strong> and
+then press <strong>ENTER</strong>.</li>
+</ol>
+</td>
+</tr>
+</tbody>
+</table>
+</div></blockquote>
+<ol class="arabic" start="6">
+<li><p class="first">Rename or move your current ownCloud directory (named <tt class="docutils literal"><span class="pre">owncloud/</span></tt> if
+installed using defaults) to another location.</p>
+</li>
+<li><p class="first">Unpack your new tarball:</p>
+<blockquote>
+<div><p><tt class="docutils literal"><span class="pre">tar</span> <span class="pre">xjf</span> <span class="pre">owncloud-latest.tar.bz2</span></tt></p>
+</div></blockquote>
+<p>In Microsoft Windows environments, you can unpack the release tarball using
+WinZip or a similar tool (for example, Peazip). Always unpack server code
+into an empty directory. Unpacking the server code into an existing,
+populated directory is not supported and will cause all kinds of errors.</p>
+</li>
+<li><p class="first">This creates a new <tt class="docutils literal"><span class="pre">owncloud/</span></tt> directory populated with your new server
+files. Copy this directory and its contents to the original location of your
+old server, for example <tt class="docutils literal"><span class="pre">/var/www/</span></tt>, so that once again you have
+<tt class="docutils literal"><span class="pre">/var/www/owncloud</span></tt> .</p>
+</li>
+<li><p class="first">Copy and paste the <tt class="docutils literal"><span class="pre">config.php</span></tt> file from your old version of
+ownCloud to your new ownCloud version.</p>
+</li>
+<li><p class="first">If you keep your <tt class="docutils literal"><span class="pre">data/</span></tt> directory in your <tt class="docutils literal"><span class="pre">owncloud/</span></tt> directory, copy
+it from your old version of ownCloud to the <tt class="docutils literal"><span class="pre">owncloud/</span></tt> directory of your
+new ownCloud version. If you keep it outside of <tt class="docutils literal"><span class="pre">owncloud/</span></tt> then you
+don’t have to do anything with it.</p>
+</li>
+</ol>
+<div class="admonition note">
+<p class="first admonition-title">Note</p>
+<p class="last">We recommend storing your <tt class="docutils literal"><span class="pre">data/</span></tt> directory in a location other
+than your <tt class="docutils literal"><span class="pre">owncloud/</span></tt> directory.</p>
+</div>
+<ol class="arabic simple" start="11">
+<li>Restart your web server.</li>
+</ol>
+<p>Depending on your environment, you will be running either an Apache server or a
+Windows IIS server. In addition, when running your server in a Linux
+environment, the necessary commands for stopping the Apache server might differ
+from one Linux operating system to another.</p>
+<p>To start an Apache server, refer to the following table for specific commands
+to use in different Linux operating systems:</p>
+<blockquote>
+<div><table border="1" class="docutils">
+<colgroup>
+<col width="36%" />
+<col width="64%" />
+</colgroup>
+<thead valign="bottom">
+<tr class="row-odd"><th class="head">Operating System</th>
+<th class="head">Command (as root)</th>
+</tr>
+</thead>
+<tbody valign="top">
+<tr class="row-even"><td>CentOS/ Red Hat</td>
+<td><tt class="docutils literal"><span class="pre">apachectl</span> <span class="pre">start</span></tt></td>
+</tr>
+<tr class="row-odd"><td>Debian
+or
+Ubuntu</td>
+<td><tt class="docutils literal"><span class="pre">/etc/init.d/apache2</span> <span class="pre">start</span></tt></td>
+</tr>
+<tr class="row-even"><td><p class="first">SUSE Enterprise
+Linux 11</p>
+<p class="last">openSUSE 12.3 and up</p>
+</td>
+<td><p class="first"><tt class="docutils literal"><span class="pre">/usr/sbin/rcapache2</span> <span class="pre">start</span></tt></p>
+<p class="last"><tt class="docutils literal"><span class="pre">systemctl</span> <span class="pre">start</span> <span class="pre">apache2</span></tt></p>
+</td>
+</tr>
+</tbody>
+</table>
+</div></blockquote>
+<p>To start the Windows IIS web server, you can use either the user interface
+(UI) or command line method as follows:</p>
+<blockquote>
+<div><table border="1" class="docutils">
+<colgroup>
+<col width="30%" />
+<col width="70%" />
+</colgroup>
+<thead valign="bottom">
+<tr class="row-odd"><th class="head">Method</th>
+<th class="head">Procedure</th>
+</tr>
+</thead>
+<tbody valign="top">
+<tr class="row-even"><td>User Interface (UI)</td>
+<td><ol class="first last arabic simple">
+<li>Open IIS Manager and navigate to the
+web server node in the tree.</li>
+<li>In the <strong>Actions</strong> pane, click <strong>Stop</strong>.</li>
+</ol>
+</td>
+</tr>
+<tr class="row-odd"><td>Command Line</td>
+<td><ol class="first last arabic simple">
+<li>Open a command line window as
+administrator.</li>
+<li>At the command prompt, type <strong>net stop WAS</strong>
+and press <strong>ENTER</strong>.</li>
+<li>(Optional) To stop W3SVC, type <strong>Y</strong> and
+then press <strong>ENTER</strong>.</li>
+</ol>
+</td>
+</tr>
+</tbody>
+</table>
+</div></blockquote>
+<ol class="arabic" start="12">
+<li><p class="first">Now you should be able to open a web browser to your ownCloud server and
+log in as usual. You have a couple more steps to go: You should see a
+<strong>Start Update</strong> screen, just like in the previous section. Review the
+prequisites, and if you have followed all the steps click the <strong>Start
+Update</strong> button.</p>
+<p>If you are running a large installation with a lot of files and users, you
+should launch the update from the command line using <tt class="docutils literal"><span class="pre">occ</span></tt> to avoid
+timeouts, like this example on Ubuntu Linux:</p>
+<div class="highlight-python"><pre>$ sudo -u www-data php occ upgrade</pre>
+</div>
+</li>
+</ol>
+<blockquote>
+<div><div class="admonition note">
+<p class="first admonition-title">Note</p>
+<dl class="docutils">
+<dt>The <tt class="docutils literal"><span class="pre">occ</span></tt> command does not download ownCloud updates. You must first</dt>
+<dd>download and install the updated code, and then <tt class="docutils literal"><span class="pre">occ</span></tt> performs the final upgrade steps.</dd>
+</dl>
+<p class="last">Please see <a class="reference internal" href="../configuration/occ_command.html"><em>Using the occ Command</em></a> to learn more about <tt class="docutils literal"><span class="pre">occ</span></tt>.</p>
+</div>
+</div></blockquote>
+<ol class="arabic simple" start="13">
+<li>The upgrade operation takes a few minutes, depending on the size of your
+installation. When it is finished you will see a success message, or an
+error message that will tell where it went wrong.</li>
+</ol>
+<p>Assuming your upgrade succeeded, take a look at the bottom of the Admin page to
+verify the version number. Check your other settings to make sure they’re
+correct. Go to the Apps page and review the core apps to make sure the right
+ones are enabled.</p>
+<p>Now you can enable your third-party apps.</p>
+</div>
+<div class="section" id="setting-strong-permissions">
+<h2>Setting Strong Permissions<a class="headerlink" href="#setting-strong-permissions" title="Permalink to this headline">¶</a></h2>
+<p>For hardened security we highly recommend setting the permissions on your
+ownCloud directory as strictly as possible. After upgrading, verify that your
+ownCloud directory permissions are set according to the Setting Strong Directory
+Permissions section of <a class="reference internal" href="../installation/installation_wizard.html"><em>Installation Wizard</em></a>.</p>
+</div>
+</div>
+
+
+ </div>
+ </div>
+ </div>
+
+ </div>
+</div>
+ </body>
+</html>
diff --cc core/doc/admin/release/release_notes.html
index 55c3933,0000000..ce9094d
mode 100644,000000..100644
--- a/core/doc/admin/release/release_notes.html
+++ b/core/doc/admin/release/release_notes.html
@@@ -1,334 -1,0 +1,339 @@@
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+
+ <title>ownCloud 7.0 Release Notes — ownCloud Administrators Manual 7.0 documentation</title>
+
+ <link rel="stylesheet" href="_static/style.css" type="text/css" />
+ <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
+ <link rel="stylesheet" href="_static/style.css" type="text/css" />
+ <link rel="stylesheet" href="_static/bootstrap-sphinx.css" type="text/css" />
+
+ <script type="text/javascript">
+ var DOCUMENTATION_OPTIONS = {
+ URL_ROOT: '',
+ VERSION: '7.0',
+ COLLAPSE_INDEX: false,
+ FILE_SUFFIX: '.html',
+ HAS_SOURCE: true
+ };
+ </script>
+ <script type="text/javascript" src="_static/jquery.js"></script>
+ <script type="text/javascript" src="_static/underscore.js"></script>
+ <script type="text/javascript" src="_static/doctools.js"></script>
+ <script type="text/javascript" src="_static/bootstrap.js"></script>
+ <link rel="top" title="ownCloud Administrators Manual 7.0 documentation" href="index.html" />
+ <link rel="next" title="Installation" href="installation/index.html" />
+ <link rel="prev" title="What’s New for Admins in ownCloud 7" href="whats_new_admin.html" />
+<script type="text/javascript">
+(function () {
+ /**
+ * Patch TOC list.
+ *
+ * Will mutate the underlying span to have a correct ul for nav.
+ *
+ * @param $span: Span containing nested UL's to mutate.
+ * @param minLevel: Starting level for nested lists. (1: global, 2: local).
+ */
+ var patchToc = function ($ul, minLevel) {
+ var findA;
+
+ // Find all a "internal" tags, traversing recursively.
+ findA = function ($elem, level) {
+ var level = level || 0,
+ $items = $elem.find("> li > a.internal, > ul, > li > ul");
+
+ // Iterate everything in order.
+ $items.each(function (index, item) {
+ var $item = $(item),
+ tag = item.tagName.toLowerCase(),
+ pad = 15 + ((level - minLevel) * 10);
+
+ if (tag === 'a' && level >= minLevel) {
+ // Add to existing padding.
+ $item.css('padding-left', pad + "px");
+ console.log(level, $item, 'padding-left', pad + "px");
+ } else if (tag === 'ul') {
+ // Recurse.
+ findA($item, level + 1);
+ }
+ });
+ };
+
+ console.log("HERE");
+ findA($ul);
+ };
+
+ $(document).ready(function () {
+ // Add styling, structure to TOC's.
+ $(".dropdown-menu").each(function () {
+ $(this).find("ul").each(function (index, item){
+ var $item = $(item);
+ $item.addClass('unstyled');
+ });
+ $(this).find("li").each(function () {
+ $(this).parent().append(this);
+ });
+ });
+
+ // Patch in level.
+ patchToc($("ul.globaltoc"), 2);
+ patchToc($("ul.localtoc"), 2);
+
+ // Enable dropdown.
+ $('.dropdown-toggle').dropdown();
+ });
+}());
+</script>
+
+ </head>
+ <body>
+
+
+<div class="container">
+ <div class="content">
+ <div class="page-header">
+ <h1><a href="contents.html">ownCloud Administrators Manual</a></h1>
+
+ </div>
+
+ <div class="row">
+ <div class="span3">
+ <div class="sidebar">
+ <div class="well">
+ <div class="menu-support-container">
+ <ul id="menu-support" class="menu">
+ <ul>
+ <li><a href="contents.html">Table of Contents</a></li>
+ </ul>
+ <ul>
+<li class="toctree-l1"><a class="reference internal" href="index.html">Introduction</a></li>
+</ul>
+<ul class="current">
+<li class="toctree-l1"><a class="reference internal" href="videos.html">ownCloud Videos</a></li>
+<li class="toctree-l1"><a class="reference internal" href="whats_new_admin.html">What’s New for Admins in ownCloud 7</a></li>
+<li class="toctree-l1 current"><a class="current reference internal" href="">ownCloud 7.0 Release Notes</a><ul>
+<li class="toctree-l2"><a class="reference internal" href="#recommended-setup-for-running-owncloud">Recommended Setup for Running ownCloud</a></li>
+<li class="toctree-l2"><a class="reference internal" href="#supported-platforms">Supported Platforms</a><ul>
++<li class="toctree-l3"><a class="reference internal" href="#php-5-6-11-breaks-ldap-wizard">PHP 5.6.11+ Breaks LDAP Wizard</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#manual-ldap-port-configuration">Manual LDAP Port Configuration</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#ldap-search-performance-improved">LDAP Search Performance Improved</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#protecting-owncloud-on-iis-from-data-loss">Protecting ownCloud on IIS from Data Loss</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#antivirus-app-modes">Antivirus App Modes</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#enable-only-for-specific-groups-fails">“Enable Only for Specific Groups” Fails</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#changes-to-file-previews">Changes to File Previews</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#gb-limit-on-sftp-transfers">4GB Limit on SFTP Transfers</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#not-enough-space-available-on-file-upload">“Not Enough Space Available” on File Upload</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#no-more-expiration-date-on-local-shares">No More Expiration Date On Local Shares</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#zero-quota-not-read-only">Zero Quota Not Read-Only</a></li>
+</ul>
+</li>
+<li class="toctree-l2"><a class="reference internal" href="#enterprise-7-only">Enterprise 7 Only</a><ul>
+<li class="toctree-l3"><a class="reference internal" href="#no-federated-cloud-sharing-with-shibboleth">No Federated Cloud Sharing with Shibboleth</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#windows-network-drive">Windows Network Drive</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#sharepoint-drive-ssl">Sharepoint Drive SSL</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#shibboleth-and-webdav-incompatible">Shibboleth and WebDAV Incompatible</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#no-sqlite">No SQLite</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#no-app-store">No App Store</a></li>
+<li class="toctree-l3"><a class="reference internal" href="#ldap-home-connector-linux-only">LDAP Home Connector Linux Only</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li class="toctree-l1"><a class="reference internal" href="installation/index.html">Installation</a></li>
+<li class="toctree-l1"><a class="reference internal" href="configuration/index.html">Configuration</a></li>
+<li class="toctree-l1"><a class="reference internal" href="maintenance/index.html">Maintenance</a></li>
+<li class="toctree-l1"><a class="reference internal" href="issues/index.html">Issues and Troubleshooting</a></li>
+</ul>
+
+ </ul>
+ </div>
+ </div>
+ </div>
+ </div>
+
+
+ <div class="span9">
+ <div class="page-content">
+
+ <div class="section" id="owncloud-version-release-notes">
+<h1>ownCloud 7.0 Release Notes<a class="headerlink" href="#owncloud-version-release-notes" title="Permalink to this headline">¶</a></h1>
+<div class="section" id="recommended-setup-for-running-owncloud">
+<h2>Recommended Setup for Running ownCloud<a class="headerlink" href="#recommended-setup-for-running-owncloud" title="Permalink to this headline">¶</a></h2>
+<p>ownCloud runs on multiple operating systems and HTTP servers. For best
+performance, stability, support, and full functionality we recommend:</p>
+<ul class="simple">
+<li>Red Hat Enterprise Linux 7</li>
+<li>MySQL/MariaDB</li>
+<li>PHP 5.4 +</li>
+<li>Apache 2.4</li>
+</ul>
+</div>
+<div class="section" id="supported-platforms">
+<h2>Supported Platforms<a class="headerlink" href="#supported-platforms" title="Permalink to this headline">¶</a></h2>
+<ul class="simple">
+<li>Hypervisors: Hyper-V, VMware ESX, Xen, KVM</li>
+<li>Server: Windows 2008R2; 2012, Linux (Debian 6, RHEL / Centos 6 and 7, Ubuntu
+12 and 14, SLES 11, Univention Corporate Server 3.x)</li>
+<li>Databases: MySQL 5.x; Microsoft SQL Server 2008R2; SQL Server 2012 R2; Oracle
+11g</li>
+<li>Desktop: Windows XP, Windows 7, Mac OS X 10.7+ (64-bit only), Linux (CentOS
+6, Ubuntu 10.04 and 11.04+, Fedora 16+, openSUSE 11.4+)</li>
+<li>Mobile apps: iOS 7+, Android 4+</li>
+<li>Webserver: IIS (Windows) and Apache2 (Windows and Linux)</li>
+<li>Web browser: IE8+ (but not Compatibility Mode), Firefox v14+, Chrome v18+,
+Safari v5+</li>
+</ul>
++<div class="section" id="php-5-6-11-breaks-ldap-wizard">
++<h3>PHP 5.6.11+ Breaks LDAP Wizard<a class="headerlink" href="#php-5-6-11-breaks-ldap-wizard" title="Permalink to this headline">¶</a></h3>
++<p>PHP 5.6.11+ breaks the LDAP wizard with a ‘Could not connect to LDAP’ error. See <a class="reference external" href="https://github.com/owncloud/core/issues/20020">https://github.com/owncloud/core/issues/20020</a>.</p>
++</div>
+<div class="section" id="manual-ldap-port-configuration">
+<h3>Manual LDAP Port Configuration<a class="headerlink" href="#manual-ldap-port-configuration" title="Permalink to this headline">¶</a></h3>
+<p>When you are configuring the LDAP user and group backend application, ownCloud
+may not auto-detect the LDAP server’s port number, so you will need to enter it
+manually.</p>
+</div>
+<div class="section" id="ldap-search-performance-improved">
+<h3>LDAP Search Performance Improved<a class="headerlink" href="#ldap-search-performance-improved" title="Permalink to this headline">¶</a></h3>
+<p>Prior to 7.0.4, LDAP searches were substring-based and would match search
+attributes if the substring occurred anywhere in the attribute value. Rather,
+searches are performed on beginning attributes. With 7.0.4, searches will match
+at the beginning of the attribute value only. This provides better performance
+and a better user experience.</p>
+<p>Substring searches can still be performed by prepending the search term with
+“*”.For example, a search for <tt class="docutils literal"><span class="pre">te</span></tt> will find Terri, but not Nate:</p>
+<div class="highlight-python"><pre>occ ldap:search "te"</pre>
+</div>
+<p>If you want to broaden the search to include
+Nate, then search for <tt class="docutils literal"><span class="pre">*te</span></tt>:</p>
+<div class="highlight-python"><pre>occ ldap:search "*te"</pre>
+</div>
+<p>Refine searches by adjusting your search attributes in the <tt class="docutils literal"><span class="pre">User</span> <span class="pre">Search</span>
+<span class="pre">Attributes</span></tt> form in your LDAP configuration on the Admin page. For example, if
+your search attributes are <tt class="docutils literal"><span class="pre">givenName</span></tt> and <tt class="docutils literal"><span class="pre">sn</span></tt> you can find users by first
+name + last name very quickly. For example, you’ll find Terri Hanson by
+searching for <tt class="docutils literal"><span class="pre">te</span> <span class="pre">ha</span></tt>. Trailing whitespaces are ignored.</p>
+</div>
+<div class="section" id="protecting-owncloud-on-iis-from-data-loss">
+<h3>Protecting ownCloud on IIS from Data Loss<a class="headerlink" href="#protecting-owncloud-on-iis-from-data-loss" title="Permalink to this headline">¶</a></h3>
+<p>Under certain circumstances, running your ownCloud server on IIS could be at
+risk of data loss. To prevent this, follow these steps.</p>
+<p>In your ownCloud server configuration file, <tt class="docutils literal"><span class="pre">owncloud\config\config.php</span></tt>, set
+<tt class="docutils literal"><span class="pre">config_is_read_only</span></tt> to true.</p>
+<p>Set the <tt class="docutils literal"><span class="pre">config.php</span></tt> file to read-only.</p>
+<p>When you make server updates <tt class="docutils literal"><span class="pre">config.php</span></tt> must be made writeable. When your
+updates are completed re-set it to read-only.</p>
+</div>
+<div class="section" id="antivirus-app-modes">
+<h3>Antivirus App Modes<a class="headerlink" href="#antivirus-app-modes" title="Permalink to this headline">¶</a></h3>
+<p>The Antivirus App offers three modes for running the ClamAV anti-virus scanner:
+as a daemon on the ownCloud server, a daemon on a remote server, or an
+executable mode that calls <tt class="docutils literal"><span class="pre">clamscan</span></tt> on the local server. We recommend using
+one of the daemon modes, as they are the most reliable.</p>
+</div>
+<div class="section" id="enable-only-for-specific-groups-fails">
+<h3>“Enable Only for Specific Groups” Fails<a class="headerlink" href="#enable-only-for-specific-groups-fails" title="Permalink to this headline">¶</a></h3>
+<p>Some ownCloud applications have the option to be enabled only for certain
+groups. However, when you select specific groups they do not get access to the
+app.</p>
+</div>
+<div class="section" id="changes-to-file-previews">
+<h3>Changes to File Previews<a class="headerlink" href="#changes-to-file-previews" title="Permalink to this headline">¶</a></h3>
+<p>For security and performance reasons, file previews are available only for
+image files, covers of MP3 files, and text files, and have been disabled for
+all other filetypes. Files without previews are represented by generic icons
+according to their file types.</p>
+</div>
+<div class="section" id="gb-limit-on-sftp-transfers">
+<h3>4GB Limit on SFTP Transfers<a class="headerlink" href="#gb-limit-on-sftp-transfers" title="Permalink to this headline">¶</a></h3>
+<p>Because of limitations in <tt class="docutils literal"><span class="pre">phpseclib</span></tt>, you cannot upload files larger than
+4GB over SFTP.</p>
+</div>
+<div class="section" id="not-enough-space-available-on-file-upload">
+<h3>“Not Enough Space Available” on File Upload<a class="headerlink" href="#not-enough-space-available-on-file-upload" title="Permalink to this headline">¶</a></h3>
+<p>Setting user quotas to <tt class="docutils literal"><span class="pre">unlimited</span></tt> on an ownCloud installation that has
+unreliable free disk space reporting– for example, on a shared hosting
+provider– may cause file uploads to fail with a “Not Enough Space Available”
+error. A workaround is to set file quotas for all users instead of
+<tt class="docutils literal"><span class="pre">unlimited</span></tt>.</p>
+</div>
+<div class="section" id="no-more-expiration-date-on-local-shares">
+<h3>No More Expiration Date On Local Shares<a class="headerlink" href="#no-more-expiration-date-on-local-shares" title="Permalink to this headline">¶</a></h3>
+<p>In older versions of ownCloud, you could set an expiration date on both local
+and public shares. Now you can set an expiration date only on public shares,
+and
+local shares do not expire when public shares expire.</p>
+</div>
+<div class="section" id="zero-quota-not-read-only">
+<h3>Zero Quota Not Read-Only<a class="headerlink" href="#zero-quota-not-read-only" title="Permalink to this headline">¶</a></h3>
+<p>Setting a user’s storage quota should be the equivalent of read-only, however,
+users can
+still create empty files.</p>
+</div>
+</div>
+<div class="section" id="enterprise-7-only">
+<h2>Enterprise 7 Only<a class="headerlink" href="#enterprise-7-only" title="Permalink to this headline">¶</a></h2>
+<div class="section" id="no-federated-cloud-sharing-with-shibboleth">
+<h3>No Federated Cloud Sharing with Shibboleth<a class="headerlink" href="#no-federated-cloud-sharing-with-shibboleth" title="Permalink to this headline">¶</a></h3>
+<p>Federated Cloud Sharing (formerly Server-to-Server file sharing) does not work
+with Shibboleth .</p>
+</div>
+<div class="section" id="windows-network-drive">
+<h3>Windows Network Drive<a class="headerlink" href="#windows-network-drive" title="Permalink to this headline">¶</a></h3>
+<p>Windows Network Drive runs only on Linux servers because it requires the Samba
+client, which is included in all Linux distributions.</p>
+<p><tt class="docutils literal"><span class="pre">php5-libsmbclient</span></tt> is also required, and there may be issues with older
+versions of <tt class="docutils literal"><span class="pre">libsmbclient</span></tt>; see Using External Storage > Installing and
+Configuring the Windows Network Drive App in the Enterprise Admin manual for
+more information.</p>
+<p>By default CentOS has activated SELinux, and the <tt class="docutils literal"><span class="pre">httpd</span></tt> process can not make
+outgoing network connections. This will cause problems with curl, ldap and
+samba
+libraries. Again, see Using External Storage > Installing and Configuring the
+Windows Network Drive App in the Enterprise Admin manual for instructions.</p>
+</div>
+<div class="section" id="sharepoint-drive-ssl">
+<h3>Sharepoint Drive SSL<a class="headerlink" href="#sharepoint-drive-ssl" title="Permalink to this headline">¶</a></h3>
+<p>The SharePoint Drive app does not verify the SSL certificate of the SharePoint
+server or the ownCloud server, as it is expected that both devices are in the
+same trusted environment.</p>
+</div>
+<div class="section" id="shibboleth-and-webdav-incompatible">
+<h3>Shibboleth and WebDAV Incompatible<a class="headerlink" href="#shibboleth-and-webdav-incompatible" title="Permalink to this headline">¶</a></h3>
+<p>Shibboleth and standard WebDAV are incompatible, and cannot be used together in
+ownCloud. If Shibboleth is enabled, the ownCloud client uses an extended WebDAV
+protocol</p>
+</div>
+<div class="section" id="no-sqlite">
+<h3>No SQLite<a class="headerlink" href="#no-sqlite" title="Permalink to this headline">¶</a></h3>
+<p>SQLite is no longer an installation option for ownCloud Enterprise Edition, as
+it not suitable for multiple-user installations or managing large numbers of
+files.</p>
+</div>
+<div class="section" id="no-app-store">
+<h3>No App Store<a class="headerlink" href="#no-app-store" title="Permalink to this headline">¶</a></h3>
+<p>The App Store is disabled for the Enterprise Edition.</p>
+</div>
+<div class="section" id="ldap-home-connector-linux-only">
+<h3>LDAP Home Connector Linux Only<a class="headerlink" href="#ldap-home-connector-linux-only" title="Permalink to this headline">¶</a></h3>
+<p>The LDAP Home Connector application requires Linux (with MySQL, MariaDB,
+or PostgreSQL) to operate correctly.</p>
+</div>
+</div>
+</div>
+
+
+ </div>
+ </div>
+ </div>
+
+ </div>
+</div>
+ </body>
+</html>
diff --cc version.php
index 2b38f2a,a5670a4..03d0a72
--- a/version.php
+++ b/version.php
@@@ -1,6 -1,19 +1,6 @@@
-<?php
-
-// We only can count up. The 4. digit is only for the internal patchlevel to trigger DB upgrades
-// between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel
-// when updating major/minor version number.
-$OC_Version=array(7, 0, 11, 2);
-
-// The human readable string
-$OC_VersionString='7.0.11';
-
-// The ownCloud edition
-$OC_Edition='';
-
-// The ownCloud channel
-$OC_Channel='git';
-
-// The build number
-$OC_Build='';
-
+<?php
- $OC_Version = array(7,0,11,1);
- $OC_VersionString = '7.0.11 RC2';
++$OC_Version = array(7,0,11,2);
++$OC_VersionString = '7.0.11';
+$OC_Edition = '';
- $OC_Channel = 'testing';
- $OC_Build = '2015-10-28T16:07:48+00:00 912e346229f358bb7166e4d5befff3beafa5b576';
++$OC_Channel = 'stable';
++$OC_Build = '2015-10-30T17:49:55+00:00 119cd08c93b4d16e5b51e5a6f1008536a1892f8b';
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git
More information about the Pkg-owncloud-commits
mailing list