Nextcloud проверка на ошибки

При работе в Nextcloud возникают ошибки.
Для их устранения необходимо перевести облачное хранилище в режим обслуживания. Сделаем это с помощью утилиты occ находящаяся в корне web-проекта.

Переводим в режим обслуживания выполнив команду:

# sudo -u www-data php occ maintenance:mode --on

Для отключения режима обслуживания выполним команду:

# sudo -u www-data php occ maintenance:mode --off

В режиме обслуживания на Desktop-клиентах будет запрошен пароль пользователя.

Ошибка «File is locked»

Ошибка при использовании серверов с медленной дисковой подсистемой.
Для исправления потребует перевести хранилища в режим обслуживания и выполненить SQL-запрос по очистке таблицы блокировок.

> delete from oc_file_locks;

Ошибка «Файл был удален с сервера» («File was deleted from server»)

Это довольно распространенная не блокирующая ошибка и синхронизация будет продолжаться, но в логах клиента будут присутствовать соответствующие ошибки.

Для устранения этой ошибки необходимо воспользоваться встроенной функцией сканирования файлового хранилища. Эта функция может быть запущена для всех пользователей:

# sudo -u www-data php occ files:scan --all

Это доволно длительная операция и зависящая от того сколько пользователей и файлов и для устранения проблем у одного пользователя можно указать вместо параметра его имя или идентификатор из Active Directory:

# sudo -u www-data php occ files:scan 2718B513-40C2-497A-8461-5CA930CEC4E9

Если вам известно расположение сбойного файла, то можно указать какой каталог требуется пересканировать:

# sudo -u www-data php occ files:scan 2718B513-40C2-497A-8461-5CA930CEC4E9 
--path="2718B513-40C2-497A-8461-5CA930CEC4E9/files_versions/"

Когда штатные средства не помогают, придется удалить записи о файлах напрямую из базы данных, подключаемся базе данных mysql и выполняем запрос файлового идентификатора искомого файла.

> select fileid,path from oc_filecache where path like '%data/4.%';

Где, ‘%data/4.%’ — это запрос части имени файла вызывающего ошибку.

Следующим этапом удаляем идентификаторы сбойных файлов:

> delete from oc_filecache where fileid=589434;

589434 — соответственно идентификатор сбойного файла.

Ошибка «Precondition failed (An If-Match header was specified and the resource did not exist)»

Ошибка возникает на стороне клиента и оптимальным решением является переместить файл на временное хранение в другой каталог и после окончания синхронизации переместить файл обратно.

При работе в Nextcloud возникают ошибки.
Для их устранения необходимо перевести облачное хранилище в режим обслуживания. Сделаем это с помощью утилиты occ находящаяся в корне web-проекта.

Переводим в режим обслуживания выполнив команду:

# sudo -u www-data php occ maintenance:mode --on

Для отключения режима обслуживания выполним команду:

# sudo -u www-data php occ maintenance:mode --off

В режиме обслуживания на Desktop-клиентах будет запрошен пароль пользователя.

Ошибка «File is locked»

Ошибка при использовании серверов с медленной дисковой подсистемой.
Для исправления потребует перевести хранилища в режим обслуживания и выполненить SQL-запрос по очистке таблицы блокировок.

> delete from oc_file_locks;

Ошибка «Файл был удален с сервера» («File was deleted from server»)

Это довольно распространенная не блокирующая ошибка и синхронизация будет продолжаться, но в логах клиента будут присутствовать соответствующие ошибки.

Для устранения этой ошибки необходимо воспользоваться встроенной функцией сканирования файлового хранилища. Эта функция может быть запущена для всех пользователей:

# sudo -u www-data php occ files:scan --all

Это доволно длительная операция и зависящая от того сколько пользователей и файлов и для устранения проблем у одного пользователя можно указать вместо параметра его имя или идентификатор из Active Directory:

# sudo -u www-data php occ files:scan 2718B513-40C2-497A-8461-5CA930CEC4E9

Если вам известно расположение сбойного файла, то можно указать какой каталог требуется пересканировать:

# sudo -u www-data php occ files:scan 2718B513-40C2-497A-8461-5CA930CEC4E9 
--path="2718B513-40C2-497A-8461-5CA930CEC4E9/files_versions/"

Когда штатные средства не помогают, придется удалить записи о файлах напрямую из базы данных, подключаемся базе данных mysql и выполняем запрос файлового идентификатора искомого файла.

> select fileid,path from oc_filecache where path like '%data/4.%';

Где, ‘%data/4.%’ — это запрос части имени файла вызывающего ошибку.

Следующим этапом удаляем идентификаторы сбойных файлов:

> delete from oc_filecache where fileid=589434;

589434 — соответственно идентификатор сбойного файла.

Ошибка «Precondition failed (An If-Match header was specified and the resource did not exist)»

Ошибка возникает на стороне клиента и оптимальным решением является переместить файл на временное хранение в другой каталог и после окончания синхронизации переместить файл обратно.

Steps to reproduce

  1. Login as Admin
  2. Go to Settings -> Administration -> Overview

Expected behaviour

Checking server setup should pass.

Actual behaviour

Get error under «Security & setup warning»

grafik

Server configuration

Operating system: CentsOS 7.5

Web server: nginx 1.15.3

Database: mariadb 10.3.9

PHP version: 7.2.9

Nextcloud version: 14.0.0

Updated from an older Nextcloud/ownCloud or fresh install: yes

Where did you install Nextcloud from: docker image

Signing status:
The error is about the server setup checking.

Are you using encryption: No

Are you using an external user-backend, if yes which one: No

Client configuration

Browser: Firefox 62.0

Operating system: ArchLinux

Logs

Web server error log

nothing here

Nextcloud log (data/nextcloud.log)

Nextcloud log

{"reqId":"qruZgYucXWF7sk27q0O9","level":3,"time":"2018-09-06T12:57:27+02:00","remoteAddr":"xx.xx.xx.x","user":"admin_user","app":"index","method":"GET","url":"/settings/ajax/checksetup","message":"Exception":"TypeError","Message":"Argument 1 passed to OCSettingsControllerCheckSetupController::getAppDirsWithDifferentOwnerForAppRoot() must be of the type array, boolean given, called in /nextcloud/settings/Controller/CheckSetupController.php on line 551","Code":0,"Trace":[{"file":"/nextcloud/settings/Controller/CheckSetupController.php","line":551,"function":"getAppDirsWithDifferentOwnerForAppRoot","class":"OCSettingsControllerCheckSetupController","type":"->","args":[false,{"path":"/apps2","url":"/apps2","writable":true}]},{"file":"/nextcloud/settings/Controller/CheckSetupController.php","line":624,"function":"getAppDirsWithDifferentOwner","class":"OCSettingsControllerCheckSetupController","type":"->","args":[]},{"file":"/nextcloud/lib/private/AppFramework/Http/Dispatcher.php","line":166,"function":"check","class":"OCSettingsControllerCheckSetupController","type":"->","args":[]},{"file":"/nextcloud/lib/private/AppFramework/Http/Dispatcher.php","line":99,"function":"executeController","class":"OCAppFrameworkHttpDispatcher","type":"->","args":[{"__class__":"OCSettingsControllerCheckSetupController"},"check"]},{"file":"/nextcloud/lib/private/AppFramework/App.php","line":118,"function":"dispatch","class":"OCAppFrameworkHttpDispatcher","type":"->","args":[{"__class__":"OCSettingsControllerCheckSetupController"},"check"]},{"file":"/nextcloud/lib/private/AppFramework/Routing/RouteActionHandler.php","line":47,"function":"main","class":"OCAppFrameworkApp","type":"::","args":["OCSettingsControllerCheckSetupController","check",{"__class__":"OCAppFrameworkDependencyInjectionDIContainer"},{"_route":"settings.CheckSetup.check"}]},{"function":"__invoke","class":"OCAppFrameworkRoutingRouteActionHandler","type":"->","args":{"_route":"settings.CheckSetup.check"}]},{"file":"/nextcloud/lib/private/Route/Router.php","line":297,"function":"call_user_func","args":[{"__class__":"OCAppFrameworkRoutingRouteActionHandler"},{"_route":"settings.CheckSetup.check"}]},{"file":"/nextcloud/lib/base.php","line":989,"function":"match","class":"OCRouteRouter","type":"->","args":["/settings/ajax/checksetup"]},{"file":"/nextcloud/index.php","line":42,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/nextcloud/settings/Controller/CheckSetupController.php","Line":568,"CustomMessage":"--"},"userAgent":"Mozilla/5.0 (X11; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0","version":"14.0.0.19"}

Browser log

nothing

Steps to reproduce

  1. Login as Admin
  2. Go to Settings -> Administration -> Overview

Expected behaviour

Checking server setup should pass.

Actual behaviour

Get error under «Security & setup warning»

grafik

Server configuration

Operating system: CentsOS 7.5

Web server: nginx 1.15.3

Database: mariadb 10.3.9

PHP version: 7.2.9

Nextcloud version: 14.0.0

Updated from an older Nextcloud/ownCloud or fresh install: yes

Where did you install Nextcloud from: docker image

Signing status:
The error is about the server setup checking.

Are you using encryption: No

Are you using an external user-backend, if yes which one: No

Client configuration

Browser: Firefox 62.0

Operating system: ArchLinux

Logs

Web server error log

nothing here

Nextcloud log (data/nextcloud.log)

Nextcloud log

{"reqId":"qruZgYucXWF7sk27q0O9","level":3,"time":"2018-09-06T12:57:27+02:00","remoteAddr":"xx.xx.xx.x","user":"admin_user","app":"index","method":"GET","url":"/settings/ajax/checksetup","message":"Exception":"TypeError","Message":"Argument 1 passed to OCSettingsControllerCheckSetupController::getAppDirsWithDifferentOwnerForAppRoot() must be of the type array, boolean given, called in /nextcloud/settings/Controller/CheckSetupController.php on line 551","Code":0,"Trace":[{"file":"/nextcloud/settings/Controller/CheckSetupController.php","line":551,"function":"getAppDirsWithDifferentOwnerForAppRoot","class":"OCSettingsControllerCheckSetupController","type":"->","args":[false,{"path":"/apps2","url":"/apps2","writable":true}]},{"file":"/nextcloud/settings/Controller/CheckSetupController.php","line":624,"function":"getAppDirsWithDifferentOwner","class":"OCSettingsControllerCheckSetupController","type":"->","args":[]},{"file":"/nextcloud/lib/private/AppFramework/Http/Dispatcher.php","line":166,"function":"check","class":"OCSettingsControllerCheckSetupController","type":"->","args":[]},{"file":"/nextcloud/lib/private/AppFramework/Http/Dispatcher.php","line":99,"function":"executeController","class":"OCAppFrameworkHttpDispatcher","type":"->","args":[{"__class__":"OCSettingsControllerCheckSetupController"},"check"]},{"file":"/nextcloud/lib/private/AppFramework/App.php","line":118,"function":"dispatch","class":"OCAppFrameworkHttpDispatcher","type":"->","args":[{"__class__":"OCSettingsControllerCheckSetupController"},"check"]},{"file":"/nextcloud/lib/private/AppFramework/Routing/RouteActionHandler.php","line":47,"function":"main","class":"OCAppFrameworkApp","type":"::","args":["OCSettingsControllerCheckSetupController","check",{"__class__":"OCAppFrameworkDependencyInjectionDIContainer"},{"_route":"settings.CheckSetup.check"}]},{"function":"__invoke","class":"OCAppFrameworkRoutingRouteActionHandler","type":"->","args":{"_route":"settings.CheckSetup.check"}]},{"file":"/nextcloud/lib/private/Route/Router.php","line":297,"function":"call_user_func","args":[{"__class__":"OCAppFrameworkRoutingRouteActionHandler"},{"_route":"settings.CheckSetup.check"}]},{"file":"/nextcloud/lib/base.php","line":989,"function":"match","class":"OCRouteRouter","type":"->","args":["/settings/ajax/checksetup"]},{"file":"/nextcloud/index.php","line":42,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/nextcloud/settings/Controller/CheckSetupController.php","Line":568,"CustomMessage":"--"},"userAgent":"Mozilla/5.0 (X11; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0","version":"14.0.0.19"}

Browser log

nothing

Print Friendly, PDF & Email

Задача:

Troubleshooting – Найти причину возникновения ошибки и устранить

—————————————————————

После обновления nextcloud появилась ошибка:

Некоторые файлы не прошли проверку целостности. Дополнительная информация о способах решения этой проблемы содержится в документации. (Список проблемных файлов… / Выполнить повторное сканирование…)

Если перейти по ссылке “Список проблемных файлов”, получим более детальную информацию об ошибке

Technical information
=====================
The following list covers which files have failed the integrity check. Please read
the previous linked documentation to learn more about the errors and how to fix
them.

Results
=======
- user_external
	- INVALID_HASH
		- appinfo/info.xml
		- lib/smb.php

Raw output
==========
Array
(
    [user_external] => Array
        (
            [INVALID_HASH] => Array
                (
                    [appinfo/info.xml] => Array
                        (
                            [expected] => 06b250c3a2c2ae01c8a2c4b963d6449c99645dca36ee197c3aa513fb74243dac3e90e42dc1408ee6957408d85f9f9a973b8983719e9c15125d42211d43f0853c7bf75
                            [current] => e5da848ca44b3b60abb1c99a3d26455d78464f94ea1f5f522b0234d2345d7d642096a771dcde9a1a5289e271805292659edc42925a86b5d6ad22ffa98b79ecec5bfed69ff
                        )

                    [lib/smb.php] => Array
                        (
                            [expected] => 283a99667fd865e54423d575953423bc6e15862b7683885cb567234d234d55aafdb3b2cbc1400a1318ec81cdbd90ce827c3f839aa6daf6a0f6e3ac6bd2742947498dd14f9
                            [current] => 1c12005d92f88017564fb4135a53s234522810aab33ffab22eac67c19501a59d213518e417cceb83f5e9ea4b448ea81fff3149da37eefb0100a61bce3140ce67f8decc
                        )

                )

        )

)

Проверяем версию установленного nextcloud

root@cloud:/ # sudo -u www php /usr/local/www/nextcloud/occ status
The process control (PCNTL) extensions are required in case you want to interrupt long running commands - see http://php.net/manual/en/book.pcntl.php
  - installed: true
  - version: 18.0.1.3
  - versionstring: 18.0.1
  - edition:
root@cloud:/ #

Проверяем установленные приложения

root@cloud:~ # sudo -u www php /usr/local/www/nextcloud/occ app:list
The process control (PCNTL) extensions are required in case you want to interrupt long running commands - see http://php.net/manual/en/book.pcntl.php
Enabled:
  - accessibility: 1.4.0
  - activity: 2.11.0
  - admin_audit: 1.8.0
  - audioplayer_editor: 0.2.0
  - audioplayer_sonos: 1.1.0
  - bruteforcesettings: 1.5.0
  - checksum: 0.4.4
  - cloud_federation_api: 1.1.0
  - comments: 1.8.0
  - dav: 1.14.0
  - extract: 1.2.3
  - federatedfilesharing: 1.8.0
  - federation: 1.8.0
  - files: 1.13.1
  - files_external: 1.9.0
  - files_pdfviewer: 1.7.0
  - files_sharing: 1.10.1
  - files_trashbin: 1.8.0
  - files_versions: 1.11.0
  - files_videoplayer: 1.7.0
  - firstrunwizard: 2.7.0
  - impersonate: 1.5.0
  - logreader: 2.3.0
  - lookup_server_connector: 1.6.0
  - mail: 1.1.2
  - music: 0.13.0
  - news: 14.1.3
  - nextcloud_announcements: 1.7.0
  - notifications: 2.6.0
  - oauth2: 1.6.0
  - onlyoffice: 4.1.4
  - password_policy: 1.8.0
  - passwords: 2020.2.1
  - photos: 1.0.0
  - privacy: 1.2.0
  - provisioning_api: 1.8.0
  - richdocuments: 3.5.2
  - serverinfo: 1.8.0
  - settings: 1.0.0
  - sharebymail: 1.8.0
  - support: 1.1.0
  - survey_client: 1.6.0
  - systemtags: 1.8.0
  - text: 2.0.0
  - theming: 1.9.0
  - twofactor_backupcodes: 1.7.0
  - twofactor_gateway: 0.15.1
  - twofactor_totp: 4.1.2
  - twofactor_u2f: 5.0.2
  - updatenotification: 1.8.0
  - viewer: 1.2.0
  - workflowengine: 2.0.0
Disabled:
  - audioplayer
  - encryption
  - files_external_gdrive
  - files_rightclick
  - keeweb
  - radio
  - recommendations
  - user_external
  - user_ldap
root@cloud:~ #

Как выяснилось это отключенный плагин, поэтому можно его удалить

rmdir /usr/local/www/nextcloud/apps/user_external/

После, повторной проверки ошибка пропала. При необходимости, можно заново установить приложение.

Другие статьи

При работе с NextCloud может возникнуть ситуация, когда потребуется заново просканировать файловую систему и проанализировать находящиеся на ней файлы. Неправильное отображение в веб-интерфейсе количества файлов и папок или их некорректные размеры, это частые ситуации этой облачной платформы. Используемый метод проверен на работоспособность с OwnCloud 10.6, а также его форка, NextCloud версии 21 на операционной системе Ubuntu 20.10.

Для реализации исправления и пересканирования файловой системы в NextCloud нам потребуется утилита occ, название происходит от «ownCloud Console». С её помощью можно выполнять множество стандартных операций с сервером, например, устанавливать, обновлять Nextcloud, управлять пользователями, шифрованием, паролями, настройками LDAP и многое другое. Кроме того нужен будет консольный доступ на сервер где расположен наш веб-сервер.

Облачная платформа установлена в директорию: /var/www/nextcloud.
Для полного сканирования выполним команду с правили пользователя веб-сервера www-datа. Ключ files:scan ищет новые файлы и обновляет файловый кеш.

cd /var/www/nextcloud
sudo -u www-data php occ files:scan --all

Для одного пользователя, например с именем username, команда немного отличается.

cd /var/www/nextcloud
sudo -u www-data php occ files:scan username

Выполнение команды может занять от нескольких минут, до нескольких часов, в зависимости от объема хранилища.

I would have been able to delete and add files.

App list
«`
Enabled:
— activity: 2.6.1
— bruteforcesettings: 1.0.3
— calendar: 1.6.1
— comments: 1.3.0
— contacts: 2.1.3
— dav: 1.4.6
— encryption: 2.0.0
— federatedfilesharing: 1.3.1
— federation: 1.3.0
— files: 1.8.0
— files_sharing: 1.5.0
— files_texteditor: 2.5.1
— files_trashbin: 1.3.0
— files_versions: 1.6.0
— files_videoplayer: 1.2.0
— firstrunwizard: 2.2.1
— gallery: 18.0.0
— logreader: 2.0.0
— lookup_server_connector: 1.1.0
— nextcloud_announcements: 1.2.0
— notifications: 2.1.2
— oauth2: 1.1.0
— password_policy: 1.3.0
— provisioning_api: 1.3.0
— serverinfo: 1.3.0
— sharebymail: 1.3.0
— socialsharing_email: 1.0.3
— survey_client: 1.1.0
— systemtags: 1.3.0
— theming: 1.4.4
— twofactor_backupcodes: 1.2.3
— updatenotification: 1.3.0
— workflowengine: 1.3.0
«`

Are you using an external user-backend, if yes which one: LDAP/ActiveDirectory/Webdav/…
No

[Fri May 25 02:54:51.794124 2018] [autoindex:error] [pid 32151:tid 3740799035136] [client <IPv6-ADDRESS-CENSORED>:48112] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 02:54:54.026892 2018] [access_compat:error] [pid 32151:tid 3740808410880] [client <IPv6-ADDRESS-CENSORED>:48192] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/index.php [Fri May 25 02:54:54.027220 2018] [autoindex:error] [pid 32151:tid 3740808410880] [client <IPv6-ADDRESS-CENSORED>:48192] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 02:55:00.387064 2018] [access_compat:error] [pid 32151:tid 3740825995008] [client <IPv6-ADDRESS-CENSORED>:48492] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/index.php [Fri May 25 02:55:00.387453 2018] [autoindex:error] [pid 32151:tid 3740825995008] [client <IPv6-ADDRESS-CENSORED>:48492] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 02:55:07.648162 2018] [access_compat:error] [pid 32151:tid 3741038806784] [client <IPv6-ADDRESS-CENSORED>:48758] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/index.php [Fri May 25 02:55:07.648549 2018] [autoindex:error] [pid 32151:tid 3741038806784] [client <IPv6-ADDRESS-CENSORED>:48758] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 02:55:12.968438 2018] [core:crit] [pid 32151:tid 3740808410880] (13)Permission denied: [client <IPv6-ADDRESS-CENSORED>:48988] AH00529: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/' is executable [Fri May 25 02:55:17.277842 2018] [core:crit] [pid 32151:tid 3740729218816] (13)Permission denied: [client <IPv6-ADDRESS-CENSORED>:49152] AH00529: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/' is executable [Fri May 25 02:55:29.097826 2018] [core:crit] [pid 32151:tid 3741180827392] (13)Permission denied: [client <IPv6-ADDRESS-CENSORED>:49546] AH00529: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/' is executable [Fri May 25 02:56:01.491981 2018] [access_compat:error] [pid 32151:tid 3740638271232] [client <IPv6-ADDRESS-CENSORED>:50806] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/ocs/v2.php [Fri May 25 02:56:01.492370 2018] [autoindex:error] [pid 32151:tid 3740638271232] [client <IPv6-ADDRESS-CENSORED>:50806] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 02:56:02.488297 2018] [access_compat:error] [pid 32151:tid 3741128419072] [client <IPv6-ADDRESS-CENSORED>:50846] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/ocs/v2.php [Fri May 25 02:56:02.488682 2018] [autoindex:error] [pid 32151:tid 3741128419072] [client <IPv6-ADDRESS-CENSORED>:50846] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 02:56:02.989914 2018] [access_compat:error] [pid 32151:tid 3740896470784] [client <IPv6-ADDRESS-CENSORED>:50864] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/ocs/v2.php [Fri May 25 02:56:02.990268 2018] [autoindex:error] [pid 32151:tid 3740896470784] [client <IPv6-ADDRESS-CENSORED>:50864] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 02:56:03.437206 2018] [access_compat:error] [pid 32151:tid 3741119448832] [client <IPv6-ADDRESS-CENSORED>:50882] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/ocs/v2.php [Fri May 25 02:56:03.437546 2018] [autoindex:error] [pid 32151:tid 3741119448832] [client <IPv6-ADDRESS-CENSORED>:50882] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 02:56:04.468103 2018] [access_compat:error] [pid 32151:tid 3740647089920] [client <IPv6-ADDRESS-CENSORED>:50930] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/ocs/v2.php [Fri May 25 02:56:04.468482 2018] [autoindex:error] [pid 32151:tid 3740647089920] [client <IPv6-ADDRESS-CENSORED>:50930] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 02:56:28.872598 2018] [core:crit] [pid 32151:tid 3741119448832] (13)Permission denied: [client <IPv6-ADDRESS-CENSORED>:52088] AH00529: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/' is executable [Fri May 25 02:56:38.227468 2018] [core:crit] [pid 32151:tid 3740764317440] (13)Permission denied: [client <IPv6-ADDRESS-CENSORED>:52558] AH00529: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/' is executable [Fri May 25 02:56:46.134918 2018] [core:crit] [pid 32151:tid 3740692653824] (13)Permission denied: [client <IPv6-ADDRESS-CENSORED>:52802] AH00529: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/' is executable [Fri May 25 02:57:01.079870 2018] [core:crit] [pid 32151:tid 3741251434240] (13)Permission denied: [client <IPv6-ADDRESS-CENSORED>:53496] AH00529: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/' is executable [Fri May 25 02:57:09.616049 2018] [core:crit] [pid 32151:tid 3741327640320] (13)Permission denied: [client <IPv6-ADDRESS-CENSORED>:47866] AH00529: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/' is executable [Fri May 25 02:57:24.527515 2018] [core:crit] [pid 32151:tid 3741206984448] (13)Permission denied: [client <IPv6-ADDRESS-CENSORED>:48454] AH00529: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/' is executable [Fri May 25 02:57:55.273419 2018] [access_compat:error] [pid 32151:tid 3740755728128] [client <IPv6-ADDRESS-CENSORED>:49720] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/ocs/v2.php [Fri May 25 02:57:55.273758 2018] [autoindex:error] [pid 32151:tid 3740755728128] [client <IPv6-ADDRESS-CENSORED>:49720] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 02:57:56.724951 2018] [access_compat:error] [pid 32151:tid 3740905355008] [client <IPv6-ADDRESS-CENSORED>:49782] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/ocs/v2.php [Fri May 25 02:57:56.725348 2018] [autoindex:error] [pid 32151:tid 3740905355008] [client <IPv6-ADDRESS-CENSORED>:49782] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 02:58:42.354289 2018] [core:crit] [pid 32151:tid 3741198284544] (13)Permission denied: [client <IPv6-ADDRESS-CENSORED>:52550] AH00529: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/' is executable [Fri May 25 02:58:46.993585 2018] [core:crit] [pid 32151:tid 3740940932864] (13)Permission denied: [client <IPv6-ADDRESS-CENSORED>:52906] AH00529: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/' is executable [Fri May 25 02:58:49.584155 2018] [access_compat:error] [pid 32151:tid 3741110175488] [client <IPv6-ADDRESS-CENSORED>:53072] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/index.php [Fri May 25 02:58:49.584484 2018] [autoindex:error] [pid 32151:tid 3741110175488] [client <IPv6-ADDRESS-CENSORED>:53072] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 02:58:50.368691 2018] [access_compat:error] [pid 32151:tid 3741128419072] [client <IPv6-ADDRESS-CENSORED>:53140] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/index.php [Fri May 25 02:58:50.369067 2018] [autoindex:error] [pid 32151:tid 3741128419072] [client <IPv6-ADDRESS-CENSORED>:53140] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 02:59:05.734193 2018] [access_compat:error] [pid 32151:tid 3740853008128] [client <IPv6-ADDRESS-CENSORED>:53914] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/index.php [Fri May 25 02:59:05.734520 2018] [autoindex:error] [pid 32151:tid 3740853008128] [client <IPv6-ADDRESS-CENSORED>:53914] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:07.574428 2018] [access_compat:error] [pid 32151:tid 3741155059456] [client <IPv6-ADDRESS-CENSORED>:60444] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:07.574843 2018] [autoindex:error] [pid 32151:tid 3741155059456] [client <IPv6-ADDRESS-CENSORED>:60444] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:07.640673 2018] [access_compat:error] [pid 32151:tid 3740879070976] [client <IPv6-ADDRESS-CENSORED>:60446] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:07.641020 2018] [autoindex:error] [pid 32151:tid 3740879070976] [client <IPv6-ADDRESS-CENSORED>:60446] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:07.692490 2018] [access_compat:error] [pid 32151:tid 3741021337344] [client <IPv6-ADDRESS-CENSORED>:60448] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:07.692830 2018] [autoindex:error] [pid 32151:tid 3741021337344] [client <IPv6-ADDRESS-CENSORED>:60448] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:07.752776 2018] [access_compat:error] [pid 32151:tid 3740949509888] [client <IPv6-ADDRESS-CENSORED>:60456] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:07.753166 2018] [autoindex:error] [pid 32151:tid 3740949509888] [client <IPv6-ADDRESS-CENSORED>:60456] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:07.769986 2018] [access_compat:error] [pid 32151:tid 3740656506624] [client <IPv6-ADDRESS-CENSORED>:60458] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:07.770345 2018] [autoindex:error] [pid 32151:tid 3740656506624] [client <IPv6-ADDRESS-CENSORED>:60458] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:07.828302 2018] [access_compat:error] [pid 32151:tid 3740914231040] [client <IPv6-ADDRESS-CENSORED>:60460] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:07.828629 2018] [autoindex:error] [pid 32151:tid 3740914231040] [client <IPv6-ADDRESS-CENSORED>:60460] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:07.898265 2018] [access_compat:error] [pid 32151:tid 3740985313024] [client <IPv6-ADDRESS-CENSORED>:60464] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:07.898623 2018] [autoindex:error] [pid 32151:tid 3740985313024] [client <IPv6-ADDRESS-CENSORED>:60464] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:08.038809 2018] [access_compat:error] [pid 32151:tid 3740994672384] [client <IPv6-ADDRESS-CENSORED>:60470] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:08.039139 2018] [autoindex:error] [pid 32151:tid 3740994672384] [client <IPv6-ADDRESS-CENSORED>:60470] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:14.792413 2018] [access_compat:error] [pid 32151:tid 3740710930176] [client <IPv6-ADDRESS-CENSORED>:60760] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:14.792772 2018] [autoindex:error] [pid 32151:tid 3740710930176] [client <IPv6-ADDRESS-CENSORED>:60760] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:14.845042 2018] [access_compat:error] [pid 32151:tid 3740638271232] [client <IPv6-ADDRESS-CENSORED>:60766] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:14.845413 2018] [autoindex:error] [pid 32151:tid 3740638271232] [client <IPv6-ADDRESS-CENSORED>:60766] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:14.907512 2018] [access_compat:error] [pid 32151:tid 3740843882240] [client <IPv6-ADDRESS-CENSORED>:60774] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:14.907867 2018] [autoindex:error] [pid 32151:tid 3740843882240] [client <IPv6-ADDRESS-CENSORED>:60774] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:14.958783 2018] [access_compat:error] [pid 32151:tid 3740720125696] [client <IPv6-ADDRESS-CENSORED>:60778] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:14.959119 2018] [autoindex:error] [pid 32151:tid 3740720125696] [client <IPv6-ADDRESS-CENSORED>:60778] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:14.977760 2018] [access_compat:error] [pid 32151:tid 3740647089920] [client <IPv6-ADDRESS-CENSORED>:60782] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:14.978094 2018] [autoindex:error] [pid 32151:tid 3740647089920] [client <IPv6-ADDRESS-CENSORED>:60782] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:15.042139 2018] [access_compat:error] [pid 32151:tid 3740692653824] [client <IPv6-ADDRESS-CENSORED>:60784] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:15.042476 2018] [autoindex:error] [pid 32151:tid 3740692653824] [client <IPv6-ADDRESS-CENSORED>:60784] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:15.095036 2018] [access_compat:error] [pid 32151:tid 3741224720128] [client <IPv6-ADDRESS-CENSORED>:60788] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:15.095367 2018] [autoindex:error] [pid 32151:tid 3741224720128] [client <IPv6-ADDRESS-CENSORED>:60788] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:15.173597 2018] [access_compat:error] [pid 32151:tid 3740790302464] [client <IPv6-ADDRESS-CENSORED>:60796] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:15.173924 2018] [autoindex:error] [pid 32151:tid 3740790302464] [client <IPv6-ADDRESS-CENSORED>:60796] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:15.213255 2018] [access_compat:error] [pid 32151:tid 3740940932864] [client <IPv6-ADDRESS-CENSORED>:60800] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:15.213579 2018] [autoindex:error] [pid 32151:tid 3740940932864] [client <IPv6-ADDRESS-CENSORED>:60800] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:15.270900 2018] [access_compat:error] [pid 32151:tid 3740976555776] [client <IPv6-ADDRESS-CENSORED>:60806] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:15.271228 2018] [autoindex:error] [pid 32151:tid 3740976555776] [client <IPv6-ADDRESS-CENSORED>:60806] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:15.412179 2018] [access_compat:error] [pid 32151:tid 3741180827392] [client <IPv6-ADDRESS-CENSORED>:60812] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:15.412574 2018] [autoindex:error] [pid 32151:tid 3741180827392] [client <IPv6-ADDRESS-CENSORED>:60812] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:15.478139 2018] [access_compat:error] [pid 32151:tid 3740896470784] [client <IPv6-ADDRESS-CENSORED>:60816] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:15.478478 2018] [autoindex:error] [pid 32151:tid 3740896470784] [client <IPv6-ADDRESS-CENSORED>:60816] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:15.973518 2018] [access_compat:error] [pid 32151:tid 3741119448832] [client <IPv6-ADDRESS-CENSORED>:60844] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:15.973849 2018] [autoindex:error] [pid 32151:tid 3741119448832] [client <IPv6-ADDRESS-CENSORED>:60844] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:16.031222 2018] [access_compat:error] [pid 32151:tid 3740781516544] [client <IPv6-ADDRESS-CENSORED>:60848] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:16.031522 2018] [autoindex:error] [pid 32151:tid 3740781516544] [client <IPv6-ADDRESS-CENSORED>:60848] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:16.082764 2018] [access_compat:error] [pid 32151:tid 3740665648896] [client <IPv6-ADDRESS-CENSORED>:60850] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:16.083106 2018] [autoindex:error] [pid 32151:tid 3740665648896] [client <IPv6-ADDRESS-CENSORED>:60850] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:16.277208 2018] [access_compat:error] [pid 32151:tid 3741064746752] [client <IPv6-ADDRESS-CENSORED>:60854] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:16.277527 2018] [autoindex:error] [pid 32151:tid 3741064746752] [client <IPv6-ADDRESS-CENSORED>:60854] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:16.298320 2018] [access_compat:error] [pid 32151:tid 3740772914944] [client <IPv6-ADDRESS-CENSORED>:60858] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:16.298636 2018] [autoindex:error] [pid 32151:tid 3740772914944] [client <IPv6-ADDRESS-CENSORED>:60858] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:16.371337 2018] [access_compat:error] [pid 32151:tid 3741336217344] [client <IPv6-ADDRESS-CENSORED>:60864] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:16.371662 2018] [autoindex:error] [pid 32151:tid 3741336217344] [client <IPv6-ADDRESS-CENSORED>:60864] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:16.557060 2018] [access_compat:error] [pid 32151:tid 3741056194304] [client <IPv6-ADDRESS-CENSORED>:60866] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:16.557373 2018] [autoindex:error] [pid 32151:tid 3741056194304] [client <IPv6-ADDRESS-CENSORED>:60866] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:16.625053 2018] [access_compat:error] [pid 32151:tid 3740905355008] [client <IPv6-ADDRESS-CENSORED>:60870] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:16.625398 2018] [autoindex:error] [pid 32151:tid 3740905355008] [client <IPv6-ADDRESS-CENSORED>:60870] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:26.308510 2018] [access_compat:error] [pid 32151:tid 3741047527168] [client <IPv6-ADDRESS-CENSORED>:57812] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:26.308860 2018] [autoindex:error] [pid 32151:tid 3741047527168] [client <IPv6-ADDRESS-CENSORED>:57812] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:26.309942 2018] [access_compat:error] [pid 32151:tid 3740746700544] [client <IPv6-ADDRESS-CENSORED>:57816] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:26.310281 2018] [autoindex:error] [pid 32151:tid 3740746700544] [client <IPv6-ADDRESS-CENSORED>:57816] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:26.311127 2018] [access_compat:error] [pid 32151:tid 3741251434240] [client <IPv6-ADDRESS-CENSORED>:57814] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:26.311436 2018] [autoindex:error] [pid 32151:tid 3741251434240] [client <IPv6-ADDRESS-CENSORED>:57814] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:27.372127 2018] [access_compat:error] [pid 32151:tid 3741163804416] [client <IPv6-ADDRESS-CENSORED>:57860] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:27.372477 2018] [autoindex:error] [pid 32151:tid 3741163804416] [client <IPv6-ADDRESS-CENSORED>:57860] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:27.379162 2018] [access_compat:error] [pid 32151:tid 3741198284544] [client <IPv6-ADDRESS-CENSORED>:57864] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:27.379478 2018] [autoindex:error] [pid 32151:tid 3741198284544] [client <IPv6-ADDRESS-CENSORED>:57864] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:27.389138 2018] [access_compat:error] [pid 32151:tid 3741233415936] [client <IPv6-ADDRESS-CENSORED>:57868] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:27.389459 2018] [autoindex:error] [pid 32151:tid 3741233415936] [client <IPv6-ADDRESS-CENSORED>:57868] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:50.228254 2018] [access_compat:error] [pid 32151:tid 3740746700544] [client <IPv6-ADDRESS-CENSORED>:62098] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:50.228624 2018] [autoindex:error] [pid 32151:tid 3740746700544] [client <IPv6-ADDRESS-CENSORED>:62098] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:50.279252 2018] [access_compat:error] [pid 32151:tid 3740808410880] [client <IPv6-ADDRESS-CENSORED>:62104] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:50.279609 2018] [autoindex:error] [pid 32151:tid 3740808410880] [client <IPv6-ADDRESS-CENSORED>:62104] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:50.341665 2018] [access_compat:error] [pid 32151:tid 3740870334208] [client <IPv6-ADDRESS-CENSORED>:62108] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:50.341995 2018] [autoindex:error] [pid 32151:tid 3740870334208] [client <IPv6-ADDRESS-CENSORED>:62108] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:50.390965 2018] [access_compat:error] [pid 32151:tid 3741163804416] [client <IPv6-ADDRESS-CENSORED>:62110] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:50.391294 2018] [autoindex:error] [pid 32151:tid 3741163804416] [client <IPv6-ADDRESS-CENSORED>:62110] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:50.667764 2018] [access_compat:error] [pid 32151:tid 3741216261888] [client <IPv6-ADDRESS-CENSORED>:62118] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:50.668065 2018] [autoindex:error] [pid 32151:tid 3741216261888] [client <IPv6-ADDRESS-CENSORED>:62118] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:50.931967 2018] [access_compat:error] [pid 32151:tid 3740710930176] [client <IPv6-ADDRESS-CENSORED>:62126] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:50.932302 2018] [autoindex:error] [pid 32151:tid 3740710930176] [client <IPv6-ADDRESS-CENSORED>:62126] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:50.995229 2018] [access_compat:error] [pid 32151:tid 3740638271232] [client <IPv6-ADDRESS-CENSORED>:62128] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:50.995588 2018] [autoindex:error] [pid 32151:tid 3740638271232] [client <IPv6-ADDRESS-CENSORED>:62128] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:51.043776 2018] [access_compat:error] [pid 32151:tid 3740843882240] [client <IPv6-ADDRESS-CENSORED>:62132] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:51.044113 2018] [autoindex:error] [pid 32151:tid 3740843882240] [client <IPv6-ADDRESS-CENSORED>:62132] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:51.281939 2018] [access_compat:error] [pid 32151:tid 3740692653824] [client <IPv6-ADDRESS-CENSORED>:62148] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:51.282281 2018] [autoindex:error] [pid 32151:tid 3740692653824] [client <IPv6-ADDRESS-CENSORED>:62148] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:51.332326 2018] [access_compat:error] [pid 32151:tid 3741224720128] [client <IPv6-ADDRESS-CENSORED>:62154] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:51.332667 2018] [autoindex:error] [pid 32151:tid 3741224720128] [client <IPv6-ADDRESS-CENSORED>:62154] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:51.383035 2018] [access_compat:error] [pid 32151:tid 3740790302464] [client <IPv6-ADDRESS-CENSORED>:62160] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:51.383363 2018] [autoindex:error] [pid 32151:tid 3740790302464] [client <IPv6-ADDRESS-CENSORED>:62160] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:00:51.484149 2018] [access_compat:error] [pid 32151:tid 3740940932864] [client <IPv6-ADDRESS-CENSORED>:62162] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:00:51.484488 2018] [autoindex:error] [pid 32151:tid 3740940932864] [client <IPv6-ADDRESS-CENSORED>:62162] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:04:33.914382 2018] [access_compat:error] [pid 32151:tid 3740799035136] [client <IPv6-ADDRESS-CENSORED>:26224] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/index.php [Fri May 25 03:04:33.914711 2018] [autoindex:error] [pid 32151:tid 3740799035136] [client <IPv6-ADDRESS-CENSORED>:26224] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:04:40.752300 2018] [core:crit] [pid 32151:tid 3741251434240] (13)Permission denied: [client <IPv6-ADDRESS-CENSORED>:26616] AH00529: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/' is executable [Fri May 25 03:04:43.866602 2018] [core:crit] [pid 32151:tid 3740940932864] (13)Permission denied: [client <IPv6-ADDRESS-CENSORED>:26832] AH00529: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/' is executable [Fri May 25 03:08:42.379121 2018] [access_compat:error] [pid 32151:tid 3741224720128] [client <IPv6-ADDRESS-CENSORED>:32844] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/index.php [Fri May 25 03:08:42.379434 2018] [autoindex:error] [pid 32151:tid 3741224720128] [client <IPv6-ADDRESS-CENSORED>:32844] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:09:25.257203 2018] [access_compat:error] [pid 32151:tid 3740772914944] [client <IPv6-ADDRESS-CENSORED>:34478] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/index.php [Fri May 25 03:09:25.257552 2018] [autoindex:error] [pid 32151:tid 3740772914944] [client <IPv6-ADDRESS-CENSORED>:34478] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:09:28.653234 2018] [access_compat:error] [pid 32151:tid 3741242545920] [client <IPv6-ADDRESS-CENSORED>:34652] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:09:28.653371 2018] [access_compat:error] [pid 32151:tid 3741064746752] [client <IPv6-ADDRESS-CENSORED>:34648] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:09:28.653573 2018] [autoindex:error] [pid 32151:tid 3741242545920] [client <IPv6-ADDRESS-CENSORED>:34652] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:09:28.653708 2018] [autoindex:error] [pid 32151:tid 3741064746752] [client <IPv6-ADDRESS-CENSORED>:34648] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:09:28.656550 2018] [access_compat:error] [pid 32151:tid 3740985313024] [client <IPv6-ADDRESS-CENSORED>:34650] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:09:28.656876 2018] [autoindex:error] [pid 32151:tid 3740985313024] [client <IPv6-ADDRESS-CENSORED>:34650] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:11:08.403808 2018] [core:crit] [pid 32151:tid 3740967139072] (13)Permission denied: [client <IPv6-ADDRESS-CENSORED>:37824] AH00529: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/' is executable [Fri May 25 03:11:11.915514 2018] [core:crit] [pid 32151:tid 3740620158720] (13)Permission denied: [client <IPv6-ADDRESS-CENSORED>:37976] AH00529: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/' is executable [Fri May 25 03:11:31.101463 2018] [autoindex:error] [pid 32151:tid 3741242545920] [client 166.90.186.75:38556] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:11:55.585306 2018] [core:crit] [pid 32151:tid 3740729218816] (13)Permission denied: [client <IPv6-ADDRESS-CENSORED>:39344] AH00529: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/' is executable [Fri May 25 03:12:01.773049 2018] [core:crit] [pid 32151:tid 3740665648896] (13)Permission denied: [client <IPv6-ADDRESS-CENSORED>:39592] AH00529: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/' is executable [Fri May 25 03:12:06.631450 2018] [core:crit] [pid 32151:tid 3741198284544] (13)Permission denied: [client <IPv6-ADDRESS-CENSORED>:45646] AH00529: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/' is executable [Fri May 25 03:12:08.639567 2018] [core:crit] [pid 32151:tid 3741092304640] (13)Permission denied: [client <IPv6-ADDRESS-CENSORED>:45756] AH00529: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/' is executable [Fri May 25 03:12:10.263376 2018] [core:crit] [pid 32151:tid 3740647089920] (13)Permission denied: [client <IPv6-ADDRESS-CENSORED>:45824] AH00529: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/' is executable [Fri May 25 03:12:14.707090 2018] [core:crit] [pid 32151:tid 3740683564800] (13)Permission denied: [client <IPv6-ADDRESS-CENSORED>:46002] AH00529: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/' is executable [Fri May 25 03:12:18.414929 2018] [core:crit] [pid 32151:tid 3740843882240] (13)Permission denied: [client <IPv6-ADDRESS-CENSORED>:46176] AH00529: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/' is executable [Fri May 25 03:12:21.093580 2018] [core:crit] [pid 32151:tid 3740755728128] (13)Permission denied: [client <IPv6-ADDRESS-CENSORED>:46280] AH00529: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/' is executable [Fri May 25 03:12:23.060826 2018] [core:crit] [pid 32151:tid 3741224720128] (13)Permission denied: [client <IPv6-ADDRESS-CENSORED>:46370] AH00529: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/' is executable [Fri May 25 03:16:31.911758 2018] [access_compat:error] [pid 32151:tid 3740647089920] [client 91.153.228.8:48856] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/ocs/v2.php [Fri May 25 03:16:31.912080 2018] [autoindex:error] [pid 32151:tid 3740647089920] [client 91.153.228.8:48856] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:16:45.590181 2018] [access_compat:error] [pid 32151:tid 3740932364032] [client 91.153.228.8:49346] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:16:45.590521 2018] [autoindex:error] [pid 32151:tid 3740932364032] [client 91.153.228.8:49346] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:20:00.717032 2018] [access_compat:error] [pid 32151:tid 3740647089920] [client <IPv6-ADDRESS-CENSORED>:18282] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/index.php [Fri May 25 03:20:00.717369 2018] [autoindex:error] [pid 32151:tid 3740647089920] [client <IPv6-ADDRESS-CENSORED>:18282] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:20:05.978818 2018] [access_compat:error] [pid 32151:tid 3741003994880] [client <IPv6-ADDRESS-CENSORED>:18590] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:20:05.979190 2018] [autoindex:error] [pid 32151:tid 3741003994880] [client <IPv6-ADDRESS-CENSORED>:18590] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:20:14.178119 2018] [access_compat:error] [pid 32151:tid 3740674279168] [client <IPv6-ADDRESS-CENSORED>:18926] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:20:14.178487 2018] [autoindex:error] [pid 32151:tid 3740674279168] [client <IPv6-ADDRESS-CENSORED>:18926] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:21:03.691691 2018] [access_compat:error] [pid 32151:tid 3740710930176] [client <IPv6-ADDRESS-CENSORED>:59858] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:21:03.692041 2018] [autoindex:error] [pid 32151:tid 3740710930176] [client <IPv6-ADDRESS-CENSORED>:59858] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:21:03.696601 2018] [access_compat:error] [pid 32151:tid 3740772914944] [client <IPv6-ADDRESS-CENSORED>:59854] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:21:03.696625 2018] [access_compat:error] [pid 32151:tid 3740683564800] [client <IPv6-ADDRESS-CENSORED>:59860] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:21:03.696762 2018] [access_compat:error] [pid 32151:tid 3740825995008] [client <IPv6-ADDRESS-CENSORED>:59864] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:21:03.696886 2018] [access_compat:error] [pid 32151:tid 3740985313024] [client <IPv6-ADDRESS-CENSORED>:59852] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:21:03.696956 2018] [autoindex:error] [pid 32151:tid 3740772914944] [client <IPv6-ADDRESS-CENSORED>:59854] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:21:03.697142 2018] [autoindex:error] [pid 32151:tid 3740683564800] [client <IPv6-ADDRESS-CENSORED>:59860] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:21:03.697154 2018] [autoindex:error] [pid 32151:tid 3740825995008] [client <IPv6-ADDRESS-CENSORED>:59864] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:21:03.697263 2018] [autoindex:error] [pid 32151:tid 3740985313024] [client <IPv6-ADDRESS-CENSORED>:59852] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:21:03.704381 2018] [access_compat:error] [pid 32151:tid 3740790302464] [client <IPv6-ADDRESS-CENSORED>:59862] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:21:03.704730 2018] [autoindex:error] [pid 32151:tid 3740790302464] [client <IPv6-ADDRESS-CENSORED>:59862] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:21:21.161904 2018] [access_compat:error] [pid 32151:tid 3740629239552] [client <IPv6-ADDRESS-CENSORED>] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:21:21.162040 2018] [access_compat:error] [pid 32151:tid 3740923352832] [client <IPv6-ADDRESS-CENSORED>] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:21:21.162274 2018] [autoindex:error] [pid 32151:tid 3740629239552] [client <IPv6-ADDRESS-CENSORED>] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:21:21.162407 2018] [autoindex:error] [pid 32151:tid 3740923352832] [client <IPv6-ADDRESS-CENSORED>] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:21:21.165330 2018] [access_compat:error] [pid 32151:tid 3740861835008] [client <IPv6-ADDRESS-CENSORED>:60682] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:21:21.165680 2018] [autoindex:error] [pid 32151:tid 3740861835008] [client <IPv6-ADDRESS-CENSORED>:60682] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:30:39.162582 2018] [access_compat:error] [pid 32151:tid 3740629239552] [client <IPv6-ADDRESS-CENSORED>:36520] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:30:39.162607 2018] [access_compat:error] [pid 32151:tid 3740647089920] [client <IPv6-ADDRESS-CENSORED>:36522] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:30:39.162646 2018] [access_compat:error] [pid 32151:tid 3741216261888] [client <IPv6-ADDRESS-CENSORED>:36526] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:30:39.162981 2018] [autoindex:error] [pid 32151:tid 3740647089920] [client <IPv6-ADDRESS-CENSORED>:36522] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:30:39.162981 2018] [autoindex:error] [pid 32151:tid 3740629239552] [client <IPv6-ADDRESS-CENSORED>:36520] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:30:39.163702 2018] [autoindex:error] [pid 32151:tid 3741216261888] [client <IPv6-ADDRESS-CENSORED>:36526] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:30:39.166115 2018] [access_compat:error] [pid 32151:tid 3741242545920] [client <IPv6-ADDRESS-CENSORED>:36524] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:30:39.166473 2018] [autoindex:error] [pid 32151:tid 3741242545920] [client <IPv6-ADDRESS-CENSORED>:36524] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:30:39.185738 2018] [access_compat:error] [pid 32151:tid 3740656506624] [client <IPv6-ADDRESS-CENSORED>:36518] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:30:39.186073 2018] [autoindex:error] [pid 32151:tid 3740656506624] [client <IPv6-ADDRESS-CENSORED>:36518] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:30:39.188349 2018] [access_compat:error] [pid 32151:tid 3741074106112] [client <IPv6-ADDRESS-CENSORED>:36558] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:30:39.188683 2018] [autoindex:error] [pid 32151:tid 3741074106112] [client <IPv6-ADDRESS-CENSORED>:36558] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:30:55.272816 2018] [access_compat:error] [pid 32151:tid 3740923352832] [client <IPv6-ADDRESS-CENSORED>:48806] AH01797: client denied by server configuration: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/remote.php [Fri May 25 03:30:55.273194 2018] [autoindex:error] [pid 32151:tid 3740923352832] [client <IPv6-ADDRESS-CENSORED>:48806] AH01276: Cannot serve directory /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/: No matching DirectoryIndex (index.html,index.cgi,index.php,index.xhtml,index.htm,index.fcgi,index.shtml) found, and server-generated directory index forbidden by Options directive [Fri May 25 03:30:59.904631 2018] [core:crit] [pid 32151:tid 3741038806784] (13)Permission denied: [client <IPv6-ADDRESS-CENSORED>:49098] AH00529: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/' is executable [Fri May 25 03:31:09.805489 2018] [core:crit] [pid 32151:tid 3740835251968] (13)Permission denied: [client <IPv6-ADDRESS-CENSORED>:49594] AH00529: /siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/siilo/users/samip537/sites/<SENSITIVE-INFORMATION-CENSORED>/www/cloud/data/' is executable 

На чтение 7 мин. Просмотров 169 Опубликовано 29.11.2022

Ниже перечислены некоторые проблемы, с которыми часто сталкиваются администраторы Nextcloud, и способы их решения. Потому что дисплей, изображенный на картинке ниже, — это все.

Содержание

  1. Направление
  2. Устранение неполадок
  3. Некоторые файлы не прошли проверку целостности
  4. MySQL используется в качестве базы данных, но не поддерживает 4-байтовые символы
  5. HTTP-заголовок «X-Content-Type-Options» не установлен на «nosniff»
  6. HTTP-заголовок «X-Robots-Tag» не установлен на «none»
  7. В настоящее время в качестве базы данных бэкенда используется SQLite
  8. В некоторых столбцах базы данных отсутствует преобразование в big int.
  9. PHP OPcache не настроен должным образом.
  10. В базе данных отсутствуют некоторые индексы.
  11. В базе данных отсутствуют некоторые необязательные столбцы.
  12. В данном экземпляре отсутствуют некоторые рекомендуемые модули PHP.
  13. Кэш-память не настроена.

Направление

В этой статье несколько полей записаны так {TEXT} в командной строке, которая будет выполняться. Здесь описаны поля, которые появляются, и что нужно делать.


Устранение неполадок

Некоторые файлы не прошли проверку целостности

Полное сообщение о проблеме следующее,

Как решить эту проблему,

  1. Откройте ссылку List of invalid files... и посмотрите, какие файлы/папки отображаются.
  2. Проверьте существование файла, если он найден, немедленно удалите его.

MySQL используется в качестве базы данных, но не поддерживает 4-байтовые символы

Полное сообщение о проблеме следующее,

Решение проблемы,

  1. Войдите в mysql (не используйте root).
  2. Введите show variables like 'innodb_file_format';, затем проверьте колонку Value, если она = Barracuda. Если да, перейдите к шагу № 5.
  3. Если Value окажется Antelope или другим, отредактируйте конфигурационный файл /etc/mysql/conf.d/mysql.cnf, добавьте код ниже.
[mysqld]
innodb_large_prefix=true
innodb_file_format=barracuda
innodb_file_per_table=1

Войдите в полноэкранный режим Выход из полноэкранного режима

  1. Войдите в mysql и проверьте, не изменился ли он.
  2. Если да, выполните следующую команду.
ALTER DATABASE {DB_NAME} CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;

Войдите в полноэкранный режим Выход из полноэкранного режима

  1. Выйдите из mysql, последовательно выполните приведенные ниже команды из пути к месту Nextcloud.

Для CentOS

sudo -u {USERNAME} /opt/rh/{PHP_VERSION}/root/bin/php occ config:system:set mysql.utf8mb4 --type boolean --value="true"
sudo -u {USERNAME} /opt/rh/{PHP_VERSION}/root/bin/php occ maintenance:repair

Войдите в полноэкранный режим Выход из полноэкранного режима

Для Ubuntu

sudo -u {USERNAME} php occ config:system:set mysql.utf8mb4 --type boolean --value="true"
sudo -u {USERNAME} php occ maintenance:repair

Войдите в полноэкранный режим Выход из полноэкранного режима


HTTP-заголовок «X-Content-Type-Options» не установлен на «nosniff»

Полное сообщение о проблеме следующее,

Как решить эту проблему,

  1. В терминале выполните следующую команду.
curl -vvv https://URL_NEXTCLOUD

Войдите в полноэкранный режим Выход из полноэкранного режима

  1. Убедитесь в наличии записи X-Content-Type-Options: nosniff.
  2. Если он появляется несколько раз, проверьте файл /etc/httpd/conf/httpd.conf. Вероятно, эта запись существовала как часть настроек более старой версии. Удалите его, если он обнаружен.

HTTP-заголовок «X-Robots-Tag» не установлен на «none»

Полное сообщение о проблеме следующее,

Как решить эту проблему,

  1. В терминале выполните следующую команду.
curl -vvv https://URL_NEXTCLOUD

Войдите в полноэкранный режим Выход из полноэкранного режима

  1. Убедитесь в наличии записи X-Robots-Tag: none.
  2. Если он появляется несколько раз, проверьте файл /etc/httpd/conf/httpd.conf. Скорее всего, эта запись была частью настроек более старой версии. Удалите его, если он там есть.

В настоящее время в качестве базы данных бэкенда используется SQLite

Полное сообщение о проблеме следующее,

Решение проблемы,

  1. Создайте новую базу данных mysql.
  2. Выполните следующую команду в установленной папке Nextcloud.

Для CentOS

  sudo -u {USERNAME} /opt/rh/{PHP_VERSION}/root/bin/php occ db:convert-type --all-apps mysql {DB_USERNAME} localhost {DB_NAME}

Войдите в полноэкранный режим Выход из полноэкранного режима

Для Ubuntu

  sudo -u {USERNAME} php occ db:convert-type --all-apps mysql {DB_USERNAME} localhost {DB_NAME}

Войдите в полноэкранный режим Выход из полноэкранного режима

  1. Введите db pass, если появится запрос.

В некоторых столбцах базы данных отсутствует преобразование в big int.

Полное сообщение о проблеме следующее,

Как решить эту проблему,

Выполните следующую команду в установленной папке Nextcloud.

Для CentOS

sudo -u {USERNAME} /opt/rh/{PVP_VERSION}/root/bin/php occ db:convert-filecache-bigint

Войдите в полноэкранный режим Выход из полноэкранного режима

Для Ubuntu

sudo -u {USERNAME} php occ db:convert-filecache-bigint

Войдите в полноэкранный режим Выход из полноэкранного режима


PHP OPcache не настроен должным образом.

Полное сообщение о проблеме следующее,

Как решить эту проблему,

  1. Отредактируйте файл /etc/opt/rh/{PHP_VERSION}/php.d/10-opcache.ini в соответствии с конфигурацией, предложенной на странице администратора Nextcloud.
  2. Не забудьте также включить opcache.enable_cli=1.
  3. Сохраните, и перезапустите с помощью systemctl restart httpd.

В базе данных отсутствуют некоторые индексы.

Полное сообщение о проблеме следующее,

Решение проблемы,

Выполните следующую команду в установленной папке Nextcloud.

Для CentOS

sudo -u {USERNAME} /opt/rh/{PHP_VERSION}/root/bin/php occ db:add-missing-indices

Войдите в полноэкранный режим Выход из полноэкранного режима

Для Ubuntu

sudo -u {USERNAME} php occ db:add-missing-indices

Войдите в полноэкранный режим Выход из полноэкранного режима


В базе данных отсутствуют некоторые необязательные столбцы.

Полное сообщение о проблеме следующее,

Как решить эту проблему,

Выполните следующую команду в папке установки Nextcloud.

Для CentOS

sudo -u {USERNAME} /opt/rh/{PVP_VERSION}/root/bin/php occ db:add-missing-columns

Войдите в полноэкранный режим Выход из полноэкранного режима

Для Ubuntu

sudo -u {USERNAME} php occ db:add-missing-columns

Войдите в полноэкранный режим Выход из полноэкранного режима


В данном экземпляре отсутствуют некоторые рекомендуемые модули PHP.

Полное сообщение о проблеме следующее,

Как решить эту проблему,

  1. Установите требуемый модуль PHP. Пример,

Для CentOS

sudo yum install php7.0-gmp -y

Войдите в полноэкранный режим Выход из полноэкранного режима

Для Ubuntu

sudo apt install php7.0-gmp -y

Войдите в полноэкранный режим Выход из полноэкранного режима

  1. Выясните расположение файла php.ini на сервере с помощью команды,
php --ini

Войдите в полноэкранный режим Выход из полноэкранного режима

  1. Затем добавьте в файл php.ini строку ниже, в разделе Dynamic Extension.
extension=php_gmp.so

Войдите в полноэкранный режим Выход из полноэкранного режима

  1. Последний шаг, перезапустите httpd с помощью следующей команды.
systemctl restart httpd

Войдите в полноэкранный режим Выход из полноэкранного режима


Кэш-память не настроена.

Полное сообщение о проблеме следующее,

Предупреждение:

Согласно документации Nextcloud, APCu будет занимать большой ресурс оперативной памяти, мы рекомендуем использовать кэширование Redis, если память сервера составляет 2 ГБ.

Решение проблемы,

  1. Для серверов Nextcloud, которые имеют небольшой масштаб, один сервер, с количеством активных пользователей < 10, рекомендуется использовать кэш данных APCu. Метод установки следующий.
sudo apt install php7.4-apcu -y

Войдите в полноэкранный режим Выход из полноэкранного режима

  1. После установки перезапустите php7.4-fpm и nginx.
 sudo systemctl restart php7.4-fpm
sudo systemctl restart nginx

Войдите в полноэкранный режим Выход из полноэкранного режима

  1. Откройте файл php.ini следующей командой.
sudo nano /etc/php/7.4/cli/php.ini

Войдите в полноэкранный режим Выход из полноэкранного режима

  1. Найдите раздел Dynamic Extensions, затем добавьте в этот раздел строку ниже.
apc.enable_cli=1

Войдите в полноэкранный режим Выход из полноэкранного режима

  1. Сохраните изменения в этом файле и перейдите к открытию файла Nextcloud config.php.
sudo nano /var/www/nextcloud/config/config.php

Войдите в полноэкранный режим Выход из полноэкранного режима

  1. Скопируйте и добавьте в файл приведенные ниже строки.
'memcache.local' => 'OCMemcacheAPCu',

Войдите в полноэкранный режим Выход из полноэкранного режима

  1. Сохраните изменения в файле и перезапустите php7.4-fpm и nginx.
 sudo systemctl restart php7.4-fpm
sudo systemctl restart nginx

Войдите в полноэкранный режим Выход из полноэкранного режима

Для серверов Nextcloud среднего и большого масштаба рекомендуется комбинировать использование APCu + Redis. Метод установки Redis можно посмотреть в статье руководства по Redis от Tech and Me.

Подробное описание инструментов командной строки OCC

  • Подробное описание инструмента командной строки ownCloud / Nextcloud OCC (1)
  • Подробное описание инструмента командной строки ownCloud / Nextcloud OCC (2)
  • Подробное описание инструмента командной строки ownCloud / Nextcloud OCC (3)

Проверка целостности

Плагины (приложения) с официальными тегами должны использовать код с подписью Nextcloud. Официальные приложения без подписей не будут установлены. Для сторонних плагинов подпись кода (Code Sigining) является необязательной.

целостность целостности: check-app # Проверка целостности приложений, использующих подписи. целостность: проверка-ядро # Проверка целостности ядра с помощью целостности подписи: sign-app # Подписание частного приложения с целостностью Yue целостность: sign-core # Подпись ядра с помощью частного Yue

После создания ключа подписи используйте этот пример для подписи приложения:

sudo -u www-data php occ integrity:sign-app --privateKey=/Users/lukasreschke/contacts.key --certificate=/Users/lukasreschke/CA/contacts.crt --path=/Users/lukasreschke/Programming/contacts

Проверьте вашу заявку:

sudo -u www-data php occ integrity:check-app --path=/pathto/app appname

Если подпись вашего приложения верна, информация не будет выводиться. Если возвращается сообщение об ошибке, вы можете обратиться к документации разработчикаCode SigningПолучите подробную информацию. Что делать при публикации приложения: обновите номер версии.

integrity:sign-core

Только для разработчиков ядра Nextcloud.

понять больше:Code Signing

Команды LDAP

Команды LDAP могут использоваться только после активации приложения «Пользователь и группа LDAP»

Эти команды LDAP будут отображаться только в том случае, если вы включили приложение LDAP.

ldap ldap: check-user # Проверьте, существует ли пользователь в LDAP ldap: create-empty-config # Создать пустую конфигурацию LDAP ldap: delete-config # Удалить конфигурацию LDAP ldap: search # Найти пользователей или группы ldap: set -config # Модифицировать конфигурацию LDAP ldap: show-config # Показать параметры LDAP ldap: show-remnants # Показать, что у этих пользователей нет информации о LDAP, но ldap: test-config все еще существует в Nextcloud # Конфигурация LDAP тестирования

Используйте следующий синтаксис для поиска пользователей LDAP:

sudo -u www-data php occ ldap:search [--group] [--offset="..."]
[--limit="..."] search

Результаты поиска совпадают с начала ключевого слова, вы можете увидеть следующий пример поискового ключевого слова «rob»:

sudo -u www-data php occ ldap:search "rob"

Будет выполнен поиск всех слов, начинающихся с «rob», таких как robbie, roberta или robin. Если вы хотите найти все слова, которые содержат «rob», вы можете использовать подстановочные знаки:

sudo -u www-data php occ ldap:search "*rob"

Доступны атрибуты поиска пользователя

ldap:set-config

Чтобы установить атрибуты поиска. Например, если вы установите свойство в

givenName

с

sn

Вы можете быстро найти по фамилии + имени. Например: используйте пропущенные буквы

te ha

Вместо полного имени

Terri Hanson

Выполните поиск. Пробелы, которые следуют, будут опущены.

Проверьте, существует ли пользователь LDAP. (Доступно только после подключения Nextcloud к серверу LDAP)

sudo -u www-data php occ ldap:check-user robert

Когда обнаруживается, что некоторые соединения LDAP отключены,

ldap:check-user

Он не будет работать. Это предотвратит ошибочную пометку пользователя как «несуществующего», поскольку его нельзя найти на отключенном сервере LDAP. Если вы уверены, что искомый пользователь не подключен к отключенному соединению LDAP, вы можете использовать

-force

Ce Принудительно выполнять поиск по всем неразрывным соединениям:

sudo -u www-data php occ ldap:check-user --force robert
ldap:create-empty-config

Будет создана пустая конфигурация LDAP. Первая созданная конфигурация не

configID

Нравится:

sudo -u www-data php occ ldap:create-empty-config Created new configuration with configID ''

В случае, когда никакая другая конфигурация не создана, вторая конфигурация, созданная и конфигурация, созданная после этого, будет автоматически назначаться ID:

sudo -u www-data php occ ldap:create-empty-config Created new configuration with configID 's01'

Далее вы можете перечислить все ваши конфигурации:

sudo -u www-data php occ ldap:show-config

Затем просмотрите определенную конфигурацию на основе настроенного идентификатора:

sudo -u www-data php occ ldap:show-config s01
ldap:delete-config [configID]

Может использоваться для удаления существующей конфигурации:

sudo -u www-data php occ ldap:delete s01
Deleted configuration with configID 's01'
ldap:set-config

Используется для настройки операции, такой как установка атрибутов поиска, упомянутых ранее:

sudo -u www-data php occ ldap:set-config s01 ldapAttributesForUserSearch
"cn;givenname;sn;displayname;mail"
ldap:test-config

Используется для проверки правильности вашей конфигурации и ее применения на сервере:

sudo -u www-data php occ ldap:test-config s01
The configuration is valid and the connection could be established!
 # Конфигурация действительна, и соединение может быть установлено!
ldap:show-remnants

Может быть использован для очистки таблицы сопоставления LDAP, вы можете просмотреть конкретные документыLDAP User Cleanup

Команда журнала

Следующие команды могут использоваться для просмотра или настройки параметров ведения журнала:

log log: управлять # Управление журналом конфигурации журнала: owncloud #operate Nextcloud backend log

запустить

log:owncloud

Вы можете просмотреть свой текущий статус журнала:

sudo -u www-data php occ log:owncloud
 Backend журнала Nextcloud: включено #Nextcloud фоновый журнал: включено
 Файл журнала: /opt/nextcloud/data/nextcloud.log # Место хранения журнала
 Поворот в: отключен # Поворот журнала: отключен

использование

--enable

Чтобы включить ведение журнала. использование

--file

Изменить место хранения журнала. использование

--rotate-size

Установите размер файла ротации журнала, 0 означает отключить ротацию журнала.

log:manage

Установите свой бэкэнд журнала, уровень журнала и часовой пояс, конфигурация по умолчанию соответственно

owncloud

 .

Warning

UTC

Опциональные конфигурации

  • –backend [owncloud, syslog, errorlog]
  • –level [debug, info, warning, error]

Команды режима обслуживания

При обновлении Nextcloud, настройке шифрования, выполнении резервного копирования или других задач, которые временно запрещают пользователям использовать, вы можете использовать следующую команду для настройки режима обслуживания:

техническое обслуживание: data-fingerprint # Обновление системного отпечатка данных после резервного копирования и восстановления. обслуживание: mimetype: update-db # Обновление mimetype и update файлового кэша базы данных: mimetype: update-js #Update. ремонт # Ремонт и установка обслуживания: обновление: htaccess # Обновление .htaccess файл
maintenance:mode

Все вошедшие в систему пользователи (включая администраторов) будут заблокированы, и отобразится страница состояния, чтобы предложить серверу перейти в режим обслуживания. Пользователи, которые не вошли в систему, временно не смогут войти в систему, пока режим обслуживания не будет отключен. После выхода сервера из режима обслуживания вошедший в систему пользователь должен обновить страницу браузера, чтобы продолжить ее использование.

sudo -u www-data php occ maintenance:mode --on
sudo -u www-data php occ maintenance:mode --off

После сброса резервной копии данных или базы данных, она должна быть использована в первую очередь

maintenance:data-fingerprint

, Это изменит ETag (значение сущности запрошенной переменной), используемое всеми файлами при взаимодействии с клиентом синхронизации, что позволит клиенту узнать, что файл был изменен.

maintenance:repair

Он будет автоматически запускаться во время процесса обновления для очистки базы данных, поэтому часто нет необходимости запускать его специально:

sudo -u www-data php occ maintenance:repair
maintenance:mimetype:update-db

В соответствии сconfig/mimetypemapping.jsonЧтобы определить файлы, которые изменили тип MIME, а также обновить базу данных и файловый кеш. Эта команда часто модифицируетсяconfig/mimetypemapping.jsonПосле использования. Если вы переместите MIME-тип, вы можете запустить

maintenance:mimetype:update-db --repair-filecache

Чтобы применить изменения к существующим файлам.

безопасности

Используйте эти команды для управления SSL-сертификатами на уровне сервера. Эти функции полезны при создании общего ресурса с использованием других серверов Nextcloud с самозаверяющими сертификатами:

security security:certificates list trusted certificates security:certificates:import import trusted certificate security:certificates:remove remove trusted certificate

Список всех установленных сертификатов:

sudo -u www-data php occ security:certificates

Импортировать новый сертификат:

sudo -u www-data php occ security:import /path/to/certificate

Удалить сертификат:

sudo -u www-data php occ security: удалить [имя файла сертификата]

Мусорный бак (мусорная корзина)

Эта команда доступна только тогда, когда плагин (приложение) file_trashbin включен. После включения плагина (приложения) удаленные пользователем файлы не будут немедленно удалены на сервере

trashbin:cleanup

Используется для удаления файлов, удаленных конкретным пользователем, несколько имен пользователей разделяются пробелами. Если пользователь не указан, все файлы, удаленные пользователем, будут удалены.

мусорное ведро мусорное ведро: очистка удаляет удаленные файлы

Ниже приведен пример очистки файлов, которые были удалены всеми пользователями:

sudo -u www-data php occ trashbin:cleanup
Remove all deleted files
Remove deleted files for users on backend Database freda molly stash rosa edward

Вот пример очистки удаленных файлов определенных пользователей Молли и Фрида:

sudo -u www-data php occ trashbin:cleanup molly freda
Remove deleted files of molly
Remove deleted files of freda

Команды управления пользователями

Команды управления пользователями

user

Используется для создания и удаления пользователей, сброса паролей и отображения простого отчета о количестве пользователей и времени их последнего входа в систему:

user user: add # Добавить пользователя user: delete # Удалить определенного пользователя user: disable # Отключить определенного пользователя user: enable # Активировать определенное имя user: lastseen # Показать последний раз, когда пользователь вошел в систему: report # Показать, сколько было Пользователь с правами доступа: пароль для сброса # Сброс пароля для пользователя: настройка # Читать или изменить настройки пользователя

ты можешь использовать этоdisplay-nameЧтобы добавить пользователя с логином и групповым отношением пользователя, используйте следующий синтаксис:

user:add [--password-from-env] [--display-name[="..."]] [-g|--group[="..."]]
uid

display-nameОтносится к полному имени на странице пользователя в браузере, uid относится к пользователюUsername, Который является именем учетной записи, используемой пользователем для входа в систему. Например, добавьте нового пользователя по имени Лейла Смит и добавьте его вusersсdb-adminsГруппа, если группа не существует, она будет создана автоматически:

sudo -u www-data php occ user:add --display-name="Layla Smith" --group="users" --group="db-admins" layla Enter password: Confirm password: The user "layla" was created successfully Display name set to "Layla Smith" User "layla" added to group "users" User "layla" added to group "db-admins"

Перейдите на страницу пользователя, и вы увидите нового пользователя, которого вы только что добавили.

password-from-env

Позволяет установить пароль пользователя из переменных среды. Это предотвращает раскрытие пароля всем пользователям через список процессов и может отображаться только в истории пользователя, запустившего команду (root). Это также позволяет создавать сценарии, которые добавляют несколько новых пользователей.

password-from-env

Требуется запуск под учетной записью root вместо использования sudo для получения прав root. Потому что sudo удаляет переменные окружения. Вот пример добавления нового пользователя с именем Fred:

export OC_PASS = Новый пароль
su -s /bin/sh www-data -c 'php occ user:add --password-from-env --display-name="Fred Jones" --group="users" fred'
The user "fred" was created successfully
Display name set to "Fred Jones"
User "fred" added to group "users"

Вы можете сбросить пароль пользователя, включая пароль администратора. Для получения дополнительной информации, пожалуйста, обратитесь к:ownCloud / Nextcloud использует команду OCC для сброса пароля

sudo -u www-data php occ user:resetpassword layla Enter a new password: Confirm the new password: Successfully reset password for layla

Вы также можете использовать

password-from-env

Чтобы сбросить пароль пользователя:

export OC_PASS = Новый пароль
su -s /bin/sh www-data -c 'php occ user:resetpassword --password-from-env
layla'
Successfully reset password for layla

удалить пользователей:

sudo -u www-data php occ user:delete fred

Просмотр последнего входа пользователя:

sudo -u www-data php occ user:lastseen layla layla's last login: 09.01.2015 18:46

Прочитайте конфигурацию пользователя:

sudo -u www-data php occ user:setting layla - core: - lang: en - login: - lastLogin: 1465910968 - settings: - email: [email protected]

Настройка фильтра по плагину (приложению):

sudo -u www-data php occ user:setting layla core
- core:
- lang: en

Получите определенную конфигурацию отдельно:

sudo -u www-data php occ user:setting layla core lang
en

Изменить пользовательскую конфигурацию

sudo -u www-data php occ user:setting layla settings email "[email protected]"

Удалить определенную конфигурацию:

sudo -u www-data php occ user:setting layla settings email --delete

Создайте простой отчет, который подсчитывает всех пользователей, включая внешне аутентифицированных пользователей (таких как LDAP):

sudo -u www-data php occ user:report
+------------------+----+
| User Report | |
+------------------+----+
| Database | 12 |
| LDAP | 86 |
| | |
| total users | 98 |
| | |
| user directories | 2 |
+------------------+----+

управление версиями

Этот набор команд доступен только при включенном плагине управления версиями (приложении)

Используйте эту команду, чтобы удалить версию файла определенного пользователя или удалить версию файла для всех пользователей, не указав:

версии версий: очистка # Удалить версии

Это пример удаления всех пользовательских версий:

sudo -u www-data php occ versions:cleanup
Delete all versions
Delete versions for users on backend Database freda molly stash rosa edward

Вы можете удалить версии для конкретных пользователей, несколько пользователей разделены пробелами

sudo -u www-data php occ versions:cleanup freda molly
Delete versions of freda
Delete versions of molly

Установите Nextcloud с помощью инструмента командной строки

Установите Nextcloud с помощью командной строки


Перевод инструмента командной строки OCC завершен. Исправление ошибок приветствуется!

// Сначала введите каталог команд OCC, который является корневым каталогом owncloud
cd /var/www/html/owncloud

2. Новые пользователи:

sudo -u apache php occ user:add —display-name=»neo» —group=»users» —group=»admin» neo

General troubleshooting

If you have trouble installing, configuring or maintaining Nextcloud, please
refer to our community support channels:

  • The Nextcloud Forums
    The Nextcloud forums have a FAQ page where each topic corresponds
    to typical mistakes or frequently occurring issues

Please understand that all these channels essentially consist of users like you
helping each other out. Consider helping others out where you can, to contribute
back for the help you get. This is the only way to keep a community like
Nextcloud healthy and sustainable!

If you are using Nextcloud in a business or otherwise large scale deployment,
note that Nextcloud GmbH offers commercial support options.

Bugs

If you think you have found a bug in Nextcloud, please:

  • Search for a solution (see the options above)
  • Double-check your configuration

If you can’t find a solution, please use our bugtracker. You can generate a
configuration report with the :ref:`occ config command
<config_commands_label>`
, with passwords automatically obscured.

General troubleshooting

Check the Nextcloud :doc:`../installation/system_requirements`, especially
supported browser versions.

When you see warnings about code integrity, refer to :doc:`code_signing`.

Disable 3rdparty / non-shipped apps

It might be possible that 3rd party / non-shipped apps are causing various
different issues. Always disable 3rd party apps before upgrades, and for
troubleshooting. Please refer to the :ref:`apps_commands_label` on how
to disable an app from command line.

Nextcloud logfiles

In a standard Nextcloud installation the log level is set to Normal. To find
any issues you need to raise the log level to All in your config.php
file, or to Everything on your Nextcloud Admin page. Please see
:doc:`../configuration_server/logging_configuration` for more information on
these log levels.

Some logging — for example JavaScript console logging — needs debugging
enabled. Edit :file:`config/config.php` and change 'debug' => false, to
'debug' => true, Be sure to change it back when you are finished.

For JavaScript issues you will also need to view the javascript console. All
major browsers have developer tools for viewing the console, and you
usually access them by pressing F12.

Note

The logfile of Nextcloud is located in the data directory
nextcloud/data/nextcloud.log.

PHP version and information

You will need to know your PHP version and configurations. To do this, create a
plain-text file named phpinfo.php and place it in your Web root, for
example /var/www/html/phpinfo.php. (Your Web root may be in a different
location; your Linux distribution documentation will tell you where.) This file
contains just this line:

<?php phpinfo(); ?>

Open this file in a Web browser by pointing your browser to
localhost/phpinfo.php:

../images/phpinfo.png

Your PHP version is at the top, and the rest of the page contains abundant
system information such as active modules, active .ini files, and much more.
When you are finished reviewing your information you must delete
phpinfo.php, or move it outside of your Web directory, because it is a
security risk to expose such sensitive data.

Debugging sync issues

Warning

The data directory on the server is exclusive to Nextcloud and must
not be modified manually.

Disregarding this can lead to unwanted behaviors like:

  • Problems with sync clients
  • Undetected changes due to caching in the database

If you need to directly upload files from the same server please use a WebDAV
command line client like cadaver to upload files to the WebDAV interface at:

https://example.com/nextcloud/remote.php/dav

Common problems / error messages

Some common problems / error messages found in your logfiles as described above:

  • SQLSTATE[HY000] [1040] Too many connections -> You need to increase the
    connection limit of your database, please refer to the manual of your database
    for more information.
  • SQLSTATE[HY000]: General error: 5 database is locked -> You’re using
    SQLite
    which can’t handle a lot of parallel requests. Please consider converting to
    another database like described in
    :doc:`../configuration_database/db_conversion`.
  • SQLSTATE[HY000]: General error: 2006 MySQL server has gone away -> Please
    refer to :ref:`db-troubleshooting-label` for more information.
  • SQLSTATE[HY000] [2002] No such file or directory -> There is a problem
    accessing your SQLite database file in your data directory
    (data/nextcloud.db). Please check the permissions of this folder/file or
    if it exists at all. If you’re using MySQL please start your database.
  • Connection closed / Operation cancelled -> This could be caused by wrong
    KeepAlive settings within your Apache config. Make sure that
    KeepAlive is set to On and also try to raise the limits of
    KeepAliveTimeout and MaxKeepAliveRequests.
  • No basic authentication headers were found -> This error is shown in your
    data/nextcloud.log file. Some Apache modules like mod_fastcgi, mod_fcgid
    or mod_proxy_fcgi are not passing the needed authentication headers to
    PHP and so the login to Nextcloud via WebDAV, CalDAV and CardDAV clients is
    failing.

Troubleshooting Web server and PHP problems

Logfiles

When having issues the first step is to check the logfiles provided by PHP, the
Web server and Nextcloud itself.

Note

In the following the paths to the logfiles of a default Debian
installation running Apache2 with mod_php is assumed. On other Web servers,
Linux distros or operating systems they can differ.

  • The logfile of Apache2 is located in /var/log/apache2/error.log.
  • The logfile of PHP can be configured in your /etc/php/8.0/apache2/php.ini.
    You need to set the directive log_errors to On and choose the path
    to store the logfile in the error_log directive. After those changes you
    need to restart your Web server.
  • The logfile of Nextcloud is located in the data directory
    /var/www/nextcloud/data/nextcloud.log.

Web server and PHP modules

Note

Lighttpd is not supported with Nextcloud, and some Nextcloud features
may not work at all on Lighttpd.

There are some Web server or PHP modules which are known to cause various
problems like broken uploads/downloads. The following shows a draft overview of
these modules:

  1. Apache
  • mod_pagespeed
  • mod_evasive
  • mod_security
  • mod_reqtimeout
  • mod_deflate
  • libapache2-mod-php*filter (use libapache2-mod-php8.0 instead)
  • mod_spdy together with libapache2-mod-php5 / mod_php (use fcgi or php-fpm
    instead)
  • mod_dav
  • mod_xsendfile / X-Sendfile (causing broken downloads if not configured
    correctly)
  1. NginX
  • ngx_pagespeed
  • HttpDavModule
  • X-Sendfile (causing broken downloads if not configured correctly)
  1. PHP
  • eAccelerator

Troubleshooting WebDAV

Nextcloud uses SabreDAV, and the SabreDAV documentation is comprehensive and
helpful.

See:

  • SabreDAV FAQ
  • Web servers (Lists lighttpd as not
    recommended)
  • Working with large files (Shows a PHP
    bug in older SabreDAV versions and information for mod_security problems)
  • 0 byte files (Reasons for empty files on the
    server)
  • Clients (A comprehensive list of WebDAV
    clients, and possible problems with each one)
  • Finder, OS X’s built-in WebDAV client
    (Describes problems with Finder on various Web servers)

There is also a well maintained FAQ thread available at the ownCloud Forums
which contains various additional information about WebDAV problems.

Service discovery

Some clients — especially on iOS/macOS — have problems finding the proper
sync URL, even when explicitly configured to use it.

If you want to use CalDAV or CardDAV clients or other clients that require service discovery
together with Nextcloud it is important to have a correct working setup of the following
URLs:

https://example.com/.well-known/carddav

https://example.com/.well-known/caldav

Those need to be redirecting your clients to the correct endpoints. If Nextcloud
is running at the document root of your Web server the correct URL is
https://example.com/remote.php/dav for CardDAV and CalDAV and if running in a
subfolder like nextcloud, then https://example.com/nextcloud/remote.php/dav.

For the first case the :file:`.htaccess` file shipped with Nextcloud should do
this work for you when you’re running Apache. You need to make sure that your
Web server is using this file. Additionally, you need the mod_rewrite Apache
module installed to process these redirects. When running Nginx please refer to
:doc:`../installation/nginx`.

If your Nextcloud instance is installed in a subfolder called nextcloud and
you’re running Apache, create or edit the :file:`.htaccess` file within the
document root of your Web server and add the following lines:

<IfModule mod_rewrite.c>
  RewriteEngine on
  RewriteRule ^/.well-known/carddav /nextcloud/remote.php/dav [R=301,L]
  RewriteRule ^/.well-known/caldav /nextcloud/remote.php/dav [R=301,L]
  RewriteRule ^/.well-known/webfinger /nextcloud/index.php/.well-known/webfinger [R=301,L]
  RewriteRule ^/.well-known/nodeinfo /nextcloud/index.php/.well-known/nodeinfo [R=301,L]
</IfModule>

Make sure to change /nextcloud to the actual subfolder your Nextcloud instance is running in.

If you are running NGINX, make sure location = /.well-known/carddav { and location = /.well-known/caldav { are properly configured as described in :doc:`../installation/nginx`, adapt to use a subfolder if necessary.

Now change the URL in the client settings to just use:

https://example.com

instead of e.g.

https://example.com/nextcloud/remote.php/dav/principals/username.

There are also several techniques to remedy this, which are described extensively at
the Sabre DAV website.

Troubleshooting sharing

Users’ Federated Cloud IDs not updated after a domain name change

  1. run Database query

DELETE FROM oc_cards_properties WHERE name = 'CLOUD' AND addressbookid = (select id from oc_addressbooks where principaluri = 'principals/system/system' AND uri = 'system');

  1. run occ commands

occ dav:sync-system-addressbook

occ federation:sync-addressbooks

Troubleshooting file encoding on external storages

When using external storage, it can happen that some files with special characters will not
appear in the file listing, or they will appear and not be accessible.

When this happens, please run the :ref:`files scanner<occ_files_scan_label>`, for example with:

sudo -u www-data php occ files:scan --all

If the scanner tells about an encoding issue on the affected file, please enable Mac encoding compatibility in the :ref:`mount options<external_storage_mount_options_label>`
and then :ref:`rescan the external storage<occ_files_scan_label>`.

Note

This mode comes with a performance impact because Nextcloud will always try both encodings when detecting files
on external storages.

Mac computers are using the NFD Unicode Normalization for file names which is different than NFC, the one used
by other operating systems. Mac users might upload files directly to the external storage using NFD normalized
file names. When uploading through Nextcloud, file names will always be normalized to the NFC standard for consistency.

It is recommended to let Nextcloud use external storages exclusively to avoid such issues.

See also technical explanation about NFC vs NFD normalizations.

Troubleshooting contacts & calendar

Unable to update contacts or events

If you get an error like:

PATCH https://example.com/remote.php/dav HTTP/1.0 501 Not Implemented

it is likely caused by one of the following reasons:

Using Pound reverse-proxy/load balancer
As of writing this Pound doesn’t support the HTTP/1.1 verb.
Pound is easily patched
to support HTTP/1.1.
Misconfigured Web server
Your Web server is misconfigured and blocks the needed DAV methods.
Please refer to :ref:`trouble-webdav-label` above for troubleshooting steps.

Troubleshooting data-directory

If you have a fresh install, consider reinstalling with your preferred directory location.

Unofficially moving the data directory can be done as follows:

  1. Make sure no cron jobs are running
  2. Stop apache
  3. Move /data to the new location
  4. Change the config.php entry
  5. Edit the database: In oc_storages change the path on the local::/old-data-dir/ entry
  6. Ensure permissions are still correct
  7. Restart apache

For a safe moving of data directory, supported by Nextcloud, recommended actions are:

  1. Make sure no cron jobs are running
  2. Stop apache
  3. Move /data to the new location
  4. Create a symlink from the original location to the new location
  5. Ensure permissions are still correct
  6. Restart apache

Troubleshooting quota or size issues

Sometimes it can happen that the used space reported in the web UI or with occ user:info $userId
does not match the actual data stored in the user’s data/$userId/files directory.

Note

Metadata, versions, trashbin and encryption keys are not counted in the used space above.
Please refer to the quota documentation for details.

Running the following command can help fix the sizes and quota for a given user:

sudo -u www-data php occ files:scan -vvv <user-id>

If encryption was enabled earlier on the instance and disabled later on, it is likely that some
size values in the database did not correctly get reset upon decrypting.
You can run the following SQL query to reset those after backing up the database:

UPDATE oc_filecache SET unencrypted_size=0 WHERE encrypted=0;

Troubleshooting downloading or decrypting files

Bad signature error

In some rare cases it can happen that encrypted files cannot be downloaded
and return a «500 Internal Server Error». If the Nextcloud log contains an error about
«Bad Signature», then the following command can be used to repair affected files:

occ encryption:fix-encrypted-version userId --path=/path/to/broken/file.txt

Replace «userId» and the path accordingly.
The command will do a test decryption for all files and automatically repair the ones with a signature error.

Encryption key cannot be found

If the logs contain an error stating that the encryption key cannot be found, you can manually search the data directory for a folder that has the same name as the file name.
For example if a file «example.md» cannot be decrypted, run:

find path/to/datadir -name example.md -type d

Then check the results located in the files_encryption folder.
If the key folder is in the wrong location, you can move it to the correct folder and try again.

The data/files_encryption folder contains encryption keys for group folders and system-wide external storages
while data/$userid/files_encryption contains the keys for specific user storage files.

Note

This can happen if encryption was disabled at some point but the :ref:`occ command for decrypt-all<occ_disable_encryption_label>` was not run, and
then someone moved the files to another location. Since encryption was disabled, the keys did not get moved.

Encryption key cannot be found with external storage or group folders

To resolve this issue, please run the following command:

sudo -u www-data php occ encryption:fix-key-location <user-id>

This will attempt to recover keys that were not moved properly.

If this doesn’t resolve the problem, please refer to the section :ref:`Encryption key cannot be found<troubleshooting_encryption_key_not_found>` for a manual procedure.

Note

There were two known issues where:

  • moving files between an encrypted and non-encrypted storage like external storage or group folder would not move the keys with the files.
  • putting files on system-wide external storage would store the keys in the wrong location.

Fair Use Policy

Nextcloud is open source and you can host it for free on your own server or at a provider.

Nextcloud recommends Using Nextcloud Enterprise for deploying instances with more than 500 users. With that size, issues like a broken server or a data leak become very serious.

If there is an issue with the server, 500 people can’t work. A data leak would risk the data of many users. In short, the server should be considered mission-critical. We believe you and your users would have a better experience with Nextcloud Enterprise.

Nextcloud Enterprise is pre-configured and optimised for the needs of professional organisations rather than home users. It comes with support, security and scaling benefits, compliance expertise, and access to our knowledge about running a successful Nextcloud, to get the best possible experience for users and admins. This also reduces the load on our home user forum http://help.nextcloud.com from issues unique to big deployments.

Nextcloud provides some infrastructure components needed for Nextcloud servers to run reliably. This includes notification, our app store and more. To ensure these resources do not get overloaded by administrators who run Nextcloud for thousands of users without providing financial resources to Nextcloud in return, these components are limited and will not work for more than 500 users.

We believe all organisations who run Nextcloud for hundreds of users should be officially supported. We know there can be financial restrictions for non-profit organisations and, as we want everybody to have a chance to get the most out of Nextcloud, we have special offers for NGOs, small schools and other non-profits. Please reach out to talk to us about what is possible through the contact form on our site or ask your system administrator to reach out.

Other issues

Some services like Cloudflare can cause issues by minimizing JavaScript
and loading it only when needed. When having issues like a not working
login button or creating new users make sure to disable such services
first.

Понравилась статья? Поделить с друзьями:
  • Nextcloud ошибка 403
  • Nextcloud внутренняя ошибка сервера
  • Next rp ошибка сс23
  • Next rp ошибка запускайте игру через лаунчер
  • Next rp ошибка cd09 как решить