Dietpi: help me Nextcloud

Created on 29 Sep 2020  ·  91Comments  ·  Source: MichaIng/DietPi

DietPi Version | ```cat /DietPi/dietpi/.version 6.32.2
SBC Device (EG: RPi 3)
Power supply used (EG: 5v 1A RAVpower) yes
SD card used EG: Sandisk ultra 32 Go
Distro (EG: Jessie) | François

hello for a few days I can no longer open nextcloud could - you help me
thank you

InkedCapture_LI

All 91 comments

Many thanks for your report.

Please paste the output of the following command:

journalctl -u apache2

here is the newspaper

Capture

Looks like you have SSL/HTTPS enabled but there is no certificate found. If needed try to recreate the certificate.

Looks like you have SSL/HTTPS enabled but there is no certificate found. If needed try to recreate the certificate.

how? can you explain me

did you used something like Let’s Encrypt to create the certificate before? And do you need SSL/HTTPS?

Also it is the default-ssl.conf that is enabled, not the one that Certbot would place (000-default-le-ssl.conf), so probably that config got accidentally enabled? Solution would be:

a2dissite default-ssl
systemctl restart apache2

I did what you told me.

Capture

ADMIN edit: I removed you screen print because it contains personal data (web site address). Pls mask personal data, always. Joulinar

pls can you post again

journalctl -u apache2

BTW: without SSL/HTTPS your system is reachable via HTTP only. Pls ensure you are using HTTP instead of HTTPS.

Pls run dietpi-letsencrypt ff you like to enable HTTPS again

Capture

Capture

ok looks like Apache is running now, as well you created the certificate? Are you able to access NextCloud from local network?

And pls remove your domain name from the screen shots

how to find my local network

Try to access your Nextcloud now from a computer or mobile phone that is in the same LAN or WLAN as your Nextcloud server (=local network), respectively from you home.

and you should use the same IP address (192.168.x.x) to connect, like you use to access your system via SSH (putty).

I can't access the site all the time

Okay lets check the binary error log:

tail -10 /var/log/apache2/error.log

If this is empty, please restart Apache (systemctl restart apache2), try to access Nextcloud to trigger the 50X error and run the above log tail again.

And lets check the Nextcloud logs:

tail -10 /mnt/dietpi_userdata/nextcloud_data/nextcloug.log

@Joulinar
The webroot btw is Nextcloud itself in this case: https://github.com/MichaIng/DietPi/issues/1554
Probably this was not the best idea considering the confusion/additional effort on support requests.

Another thing that confuses me is the missing ServerName directive, as we explicitly set it that time: https://github.com/MichaIng/DietPi/issues/1554#issuecomment-368225992
@ludji49
Did you change something in the meantime, flashed new DietPi, upgraded the distribution or such? Probably we should get an overview about which Apache2 configs and sites are actually enabled:

ls -al /etc/apache2/{conf,sites}-enabled/*.conf

Capture

Capture

I only changed my internet box and since then I have no more access to the site.

I only changed my internet box and since then I have no more access to the site.

I guess then you simply need to recreate the port forwarding rules? Did you try to access your Nextcloud via plain IP address instead of domain name? Most browsers will at least throw a warning since you enabled HSTS and certificates do not support IP addresses reasonably, but you should be able to ignore this warning to access Nextcloud.

Btw, since you use PuTTY to access your console:

  • Do not create screenshots.
  • Instead select the relevant lines within the PuTTY window, so that they are highlighted. This will automatically copy the text into your clipboard.
  • Then go to GitHub and hit ctrl + v keys to paste the content.
  • Then, in GitHub, select the lines again and hit the < >/Insert code button to make the logs nicely readable, like:
2020-09-30 13:42:21 root@micha:/var/log# ls -al /etc/apache2/{conf,sites}-enabled/*.conf
lrwxrwxrwx 1 root root 42 Sep 17 03:16 /etc/apache2/conf-enabled/dietpi-dav_redirect.conf -> ../conf-available/dietpi-dav_redirect.conf
lrwxrwxrwx 1 root root 28 Sep 17 03:35 /etc/apache2/conf-enabled/micha.conf -> ../conf-available/micha.conf
lrwxrwxrwx 1 root root 42 Sep 17 03:44 /etc/apache2/sites-enabled/000-default-le-ssl.conf -> ../sites-available/000-default-le-ssl.conf
lrwxrwxrwx 1 root root 40 Sep 17 03:16 /etc/apache2/sites-enabled/dietpi-nextcloud.conf -> ../sites-available/dietpi-nextcloud.conf

even with the local ip address this site is inaccessible

Capture

Port 80 is forwarded as UDP. Pls can you forward it as TCP. Same like port 443.

this website is inaccessible

What is the exact error message the browser shows when you connect via local IP? As said, due to HSTS, it is expected that it at least throws a warning, probably blocks access completely.

And yes, TCP port is required, UDP protocol forwarding can actually be removed.

About Nextcloud log, I see in the old threads that yours is stored at a different location, please paste:

tail -10 /datastore/nextcloud.log

And to rule out the ServerName directive as issue:

G_CONFIG_INJECT 'ServerName' 'ServerName nextcloud-myweb.ddns.net' /etc/apache2/apache2.conf 'DocumentRoot'
sed -i '/^[[:blank:]]*ServerName/c\ServerName nextcloud-myweb.ddns.net' /etc/apache2/sites-available/000-default.conf
sed -i '/^[[:blank:]]*ServerName/c\ServerName nextcloud-myweb.ddns.net' /etc/apache2/sites-available/000-default-le-ssl.conf

And actually, since something has changed inside, lets review the Apache2 config:

cat /etc/apache2/apache2.conf
:~# cat /etc/apache2/apache2.conf
Mutex file:${APACHE_LOCK_DIR} default

PidFile ${APACHE_PID_FILE}

Timeout 60

KeepAlive On

MaxKeepAliveRequests 20

KeepAliveTimeout 5

User ${APACHE_RUN_USER}
Group ${APACHE_RUN_GROUP}

HostnameLookups Off

ErrorLog ${APACHE_LOG_DIR}/error.log

LogLevel error

# Include module configuration:
IncludeOptional mods-enabled/*.load
IncludeOptional mods-enabled/*.conf

# Include list of ports to listen on
Include ports.conf

<Directory />
        Options FollowSymLinks
        AllowOverride None
        Require all denied
</Directory>

<Directory /usr/share>
        AllowOverride None
        Require all granted
</Directory>

<Directory /var/www/>
        DirectoryIndex index.php index.html
        Options Indexes FollowSymLinks
        AllowOverride None
        Require all granted
</Directory>

AccessFileName .htaccess

<FilesMatch "^\.ht">
        Require all denied
</FilesMatch>

LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" v                                               host_combined
LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combine                                               d
LogFormat "%h %l %u %t \"%r\" %>s %O" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent

# Include generic snippets of statements
IncludeOptional conf-enabled/*.conf

# Include the virtual host configurations:
IncludeOptional sites-enabled/*.conf
root@DietPi:~#

Ah I forgot that we set DocumentRoot via vhost only, hence the following should work:

G_CONFIG_INJECT 'ServerName' 'ServerName nextcloud-myweb.ddns.net' /etc/apache2/apache2.conf 'HostnameLookups'

Can you also paste the content of the vhosts:

cat /etc/apache2/sites-available/000-default{,-le-ssl}.conf

And the nextcloud.log tail, wherever it's stored, in your Nextcloud data directory.

# Include the virtual host configurations:
IncludeOptional sites-enabled/*.conf
root@DietPi:~# G_CONFIG_INJECT 'ServerName' 'ServerName nextcloud-myweb.ddns.net' /etc/apache2/apache2.conf 'HostnameLookups'
[  OK  ] G_CONFIG_INJECT | Added setting ServerName nextcloud-myweb.ddns.net to /etc/apache2/apache2.conf after line HostnameLookups Off
root@DietPi:~# cat /etc/apache2/sites-available/000-default{,-le-ssl}.conf
<VirtualHost *:80>
ServerAdmin webmaster@localhost
        ServerName nextcloud-myweb.ddns.net
        Redirect permanent / https://nextcloud-myweb.ddns.net/
DocumentRoot /var/www/nextcloud

        #CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerAdmin webmaster@localhost
        ServerName nextcloud-myweb.ddns.net
        ServerName nextcloud-myweb.ddns.net
DocumentRoot /var/www/nextcloud

        ErrorLog ${APACHE_LOG_DIR}/error.log
        #CustomLog ${APACHE_LOG_DIR}/access.log combined
SSLCertificateFile /etc/letsencrypt/live/nextcloud-myweb.ddns.net/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/nextcloud-myweb.ddns.net/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
Header always set Strict-Transport-Security "max-age=31536000"
</VirtualHost>
</IfModule>
root@DietPi:~#

Okay, that looks all correct. There is a doubled ServerName directive in /etc/apache2/sites-available/000-default-le-ssl.conf but that does not cause issues.

If you don't know where your Nextcloud data dir is located, search for the log file:

find / -name nextcloud.log

And to exclude PHP/Nextcloud internal issues, you could do the following:

echo success > /var/www/nextcloud/index.htm

Then try to access this file via local IP address, like: https://192.168.1.100/index.htm (replace the IP withe the true local IP of your server)
And also try it from console:

curl -ILk https://192.168.1.100/index.htm

Access from an unapproved domain
Please contact your administrator. If you are an administrator, edit the variable "trusted_domains" in the config/config.php file as the example in the config/config.sample.php file.

Further information on configuration can be found in the documentation .

Capture

root@DietPi:~# curl -ILk https://192.168.0.00/index.htm
HTTP/1.1 400 Bad Request
Date: Wed, 30 Sep 2020 16:12:24 GMT
Server: Apache/2.4.25 (Raspbian)
Strict-Transport-Security: max-age=31536000
Referrer-Policy: no-referrer
X-Content-Type-Options: nosniff
X-Download-Options: noopen
X-Frame-Options: SAMEORIGIN
X-Permitted-Cross-Domain-Policies: none
X-Robots-Tag: none
X-XSS-Protection: 1; mode=block
Set-Cookie: oc5cbhxlsgns=jcuf35dc1n173dc9e5i3e8p2mj; path=/; secure; HttpOnly
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate
Pragma: no-cache
Set-Cookie: oc_sessionPassphrase=HXqI4TvBwJPA74nmPYPnZIAtVUt7rFm%2FvgdjBYhOeECplhc0awTakY6Lxc8dwDFFULI8EZQ1BTiTSnSACwEqQMvfhBzM                          Xj7uENDMbQytZKkHg3yvW82wTL2PJaub5jy1; path=/; secure; HttpOnly
Content-Security-Policy: default-src 'self'; script-src 'self' 'nonce-cFR4QjNCbFE4dlBydmQ5cXhMZkNJdzRaU1NvaDljRXF0YVBwNkdHT0tyb                          z06NUZFT25WQTJ3TWU1K0xBRHNmU1JkenBnSjBRVmdvcDZqY21kaFFPNlRPaz0='; style-src 'self' 'unsafe-inline'; frame-src *; img-src * data                          : blob:; font-src 'self' data:; media-src *; connect-src *; object-src 'none'; base-uri 'self';
Set-Cookie: __Host-nc_sameSiteCookielax=true; path=/; httponly;secure; expires=Fri, 31-Dec-2100 23:59:59 GMT; SameSite=lax
Set-Cookie: __Host-nc_sameSiteCookiestrict=true; path=/; httponly;secure; expires=Fri, 31-Dec-2100 23:59:59 GMT; SameSite=stric                          t
Connection: close
Content-Type: text/html; charset=UTF-8

root@DietPi:~#

Okay so far so good, the webserver reacts as expected. Let's now check the same with domain:

curl -ILk https://nextcloud-myweb.ddns.net/index.htm

@MichaIng
If I'm not mistaken, webserver is reachable again according this post https://github.com/MichaIng/DietPi/issues/3798#issuecomment-701491019

does not work

 DietPi Team     : MichaIng (lead), Daniel Knight (founder), Joulinar (support)
 Web             : https://dietpi.com | https://twitter.com/DietPi_
 Patreon Legends : Bryce
 Donate          : https://dietpi.com/#donate
 DietPi Hosting  : Powered by https://myvirtualserver.com

 dietpi-launcher : All the DietPi programs in one place.
 dietpi-config   : Feature rich configuration tool for your device.
 dietpi-software : Select optimized software for installation.
 htop            : Resource monitor.
 cpu             : Shows CPU information and stats.

root@DietPi:~# curl -ILk https://nextcloud-myweb.ddns.net/index.htm
curl: (7) Failed to connect to nextcloud-myweb.ddns.net port 443: Connexion terminée par expiration du délai d'at                   tente
root@DietPi:~#


Then this is an issue with your router connection or port forwarding. Please try to follow the recommendation of Joulinar and remove the port 80 UDP forwarding and replace it with port 80 TCP.

Also check your No-IP account. I remember one needs to login at their web UI every 30 days manually? And check the client state: systemctl status noip2

 dietpi-launcher : All the DietPi programs in one place.
 dietpi-config   : Feature rich configuration tool for your device.
 dietpi-software : Select optimized software for installation.
 htop            : Resource monitor.
 cpu             : Shows CPU information and stats.

root@DietPi:~# systemctl status noip2
● noip2.service - noip2
   Loaded: loaded (/etc/systemd/system/noip2.service; disabled; vendor preset: e
nabled)
   Active: active (running) since Wed 2020-09-30 13:42:56 CEST; 16h a
go
  Process: 860 ExecStart=/usr/local/bin/noip2 (code=exited, status=0/SUCCESS)
 Main PID: 861 (noip2)
    Tasks: 1 (limit: 4915)
   CGroup: /system.slice/noip2.service
           └─861 /usr/local/bin/noip2

sept. 30 13:42:56 DietPi systemd[1]: Starting noip2...
sept. 30 13:42:56 DietPi noip2[861]: v2.1.9 daemon started with NAT enabled
sept. 30 13:42:56 DietPi systemd[1]: Started noip2.
sept. 30 13:42:59 DietPi noip2[861]: No user '' found at dynupdate.no-ip
.com.
sept. 30 14:13:19 DietPi noip2[861]: Can't gethostbyname for dynupdate.n
o-ip.com
sept. 30 14:13:19 DietPi noip2[861]: Can't get our visible IP address fr
om ip1.dynupdate.no-ip.com
root@DietPi:~#

can the error come from ip?
because I'm not the same ip since I've changed my place of residence

The server is unable to execute your request.

If this happens again, please send the technical details below to the server administrator.

The server log file may provide more information.

Technical details
Remote address: 192.168.0...
Application ID: A..............................

can you login to NoIP website and check status of your account

The No-IP client was definitely not able to report your IP, hence your domain is pointing to a wrong IP, which explains all the issues. Please redo the No-IP client config:

mkdir -p /usr/local/etc
noip2 -C
# ... follow the instructions
systemctl restart noip2

EDIT: And yes, as well login into your No-IP account at their website, to refresh the 30 days timeout.

root@DietPi:~# systemctl restart noip2
root@DietPi:~# mkdir -p /usr/local/etc
root@DietPi:~# noip2 -C

Configuration file '/usr/local/etc/no-ip2.conf' is in use by process 7474.
Ending!

root@DietPi:~# # ... follow the instructions
root@DietPi:~# systemctl restart noip2
root@DietPi:~#
systemctl stop noip2
noip2 -C
systemctl start noip2
 dietpi-launcher : All the DietPi programs in one place.
 dietpi-config   : Feature rich configuration tool for your device.
 dietpi-software : Select optimized software for installation.
 htop            : Resource monitor.
 cpu             : Shows CPU information and stats.

root@DietPi:~# systemctl stop noip2
root@DietPi:~# noip2 -C

Auto configuration for Linux client of no-ip.com.

Please enter the login/email string for no-ip.com

Yes go ahead to reconfigure the client with your No-IP account credentials. The errors before indicated that this information was somehow lost.

I have modified my ip

Capture

Ok for me it's working now and I'm able to connect to your Nextcloud installation.

The server is unable to execute your request.

If this happens again, please send the technical details below to the server administrator.

The server log file may provide more information.

Technical details
Remote address: 192.168.0.254
Application ID: GTB23136MkqsAUytOFxd
Capture

Can you check all services running

dietpi-service status

 dietpi-launcher : All the DietPi programs in one place.
 dietpi-config   : Feature rich configuration tool for your device.
 dietpi-software : Select optimized software for installation.
 htop            : Resource monitor.
 cpu             : Shows CPU information and stats.

root@DietPi:~# dietpi-service status
-bash: dietpi-service : commande introuvable
root@DietPi:~#

sorry my fault.

dietpi-services status

That is a Nextcloud-internal error, we need the Nextcloud logs to identify those. I forgot the CLI which makes it easy to see the last log entries. Please run and paste the output of: ncc log:tail
dietpi-services status is good as well, just to be sure.

root@DietPi:~# dietpi-services status

 DietPi-Services
─────────────────────────────────────────────────────
 Mode: status

[  OK  ] DietPi-Services | redis-server         active (running) since Thu 2020-                                                                   10-01 14:48:24 CEST; 3h 35min ago
[  OK  ] DietPi-Services | mariadb              active (running) since Thu 2020-                                                                   10-01 14:48:28 CEST; 3h 35min ago
[  OK  ] DietPi-Services | apache2              active (running) since Thu 2020-                                                                   10-01 14:48:29 CEST; 3h 35min ago
[  OK  ] DietPi-Services | urbackupsrv          active (running) since Thu 2020-                                                                   10-01 14:48:30 CEST; 3h 35min ago
[ INFO ] DietPi-Services | noip2                inactive (dead)
[  OK  ] DietPi-Services | cron                 active (running) since Thu 2020-                                                                   10-01 14:48:30 CEST; 3h 35min ago
[  OK  ] DietPi-Services | dropbear             active (running) since Thu 2020-                                                                   10-01 14:48:17 CEST; 3h 35min ago
[  OK  ] DietPi-Services | dietpi-ramlog        active (exited) since Thu 2020-1                                                                   0-01 14:17:08 CEST; 4h 6min ago
[  OK  ] DietPi-Services | dietpi-preboot       active (exited) since Thu 2020-1                                                                   0-01 14:17:08 CEST; 4h 6min ago
[  OK  ] DietPi-Services | dietpi-boot          active (exited) since Thu 2020-1                                                                   0-01 14:48:17 CEST; 3h 35min ago
[  OK  ] DietPi-Services | dietpi-postboot      active (exited) since Thu 2020-1                                                                   0-01 14:48:17 CEST; 3h 35min ago
[ INFO ] DietPi-Services | dietpi-wifi-monitor  inactive (dead)

ncc log:tail


NextCloud Logfile attached. Click to expand!

root@DietPi:~# ncc log:tail
 --------- ------------------- --------------------------------------------------------------------- --------------------------                    -
  Level     App                 Message                                                               Time                                         
 --------- ------------------- --------------------------------------------------------------------- --------------------------                    -
  Error     index               OCP\Files\NotPermittedException: Could not create path at             2020-10-01T14:37:20+00:00                    
                                lib/private/Files/Node/Folder.php line 185                                                                         

                                 0. .../SimpleFolder.php line 83                                                                                   
                                    OC\Files\Node\Folder->newFile("4039-7dda-merged.css.gzip")                                                     
                                 1. .../SCSSCacher.php line 342                                                                                    
                                    OC\Files\SimpleFS\SimpleFolder->newFile("4039-7dda-merg ... p")                                                
                                 2. .../SCSSCacher.php line 181                                                                                    
                                    OC\Template\SCSSCacher->cache(                                                                                 
                                      "\/var\/www\/nextcloud\/a ... s",                                                                            
                                      "4039-7dda-merged.css",                                                                                      
                                      "merged.scss",                                                                                               
                                      OC\Files\SimpleFS\SimpleF ... {},                                                                            
                                      "\/apps\/files\/css"                                                                                         
                                    )                                                                                                              
                                 3. .../CSSResourceLocator.php line 109                                                                            
                                    OC\Template\SCSSCacher->process(                                                                               
                                      "\/var\/www\/nextcloud\ ... s",                                                                              
                                      "css\/merged.scss",                                                                                          
                                      "files"                                                                                                      
                                    )                                                                                                              
                                 4. .../CSSResourceLocator.php line 84                                                                             
                                    OC\Template\CSSResourceLocator->cacheAndAppendScssIfExist(                                                     
                                      "\/var\/www\/nextcloud\/apps\/fil ... s",                                                                    
                                      "css\/merged.sc ... s",                                                                                      
                                      "fil ... s"                                                                                                  
                                    )                                                                                                              
                                 5. .../ResourceLocator.php line 78                                                                                
                                    OC\Template\CSSResourceLocator->doFind("css\/merged")                                                          
                                 6. .../TemplateLayout.php line 305                                                                                
                                    OC\Template\ResourceLocator->find(["css\/server","css\/ ... "])                                                
                                 7. .../TemplateLayout.php line 210                                                                                
                                    OC\TemplateLayout::findStylesheetFiles(["css\/server"," ... "])                                                
                                 8. .../legacy/template.php line 183                                                                               
                                    OC\TemplateLayout->__construct("user", "files")                                                                
                                 9. .../Http/TemplateResponse.php line 165                                                                         
                                    OC_Template->fetchPage({usedSpacePercent:12,owner:"My_c ... ]})                                                
                                10. .../Dispatcher.php line 123                                                                                    
                                    OCP\AppFramework\Http\TemplateResponse->render(                                                                

                                    )                                                                                                              
                                11. .../App.php line 126                                                                                           
                                    OC\AppFramework\Http\Dispatcher->dispatch(                                                                     
                                      OCA\Files\Con ... {},                                                                                        
                                      "index"                                                                                                      
                                    )                                                                                                              
                                12. .../RouteActionHandler.php line 47                                                                             
                                    OC\AppFramework\App::main(                                                                                     
                                      "OCA\\Files\\Controller\\View ... r",                                                                        
                                      "index",                                                                                                     
                                      OC\AppFramework\DependencyInj ... {},                                                                        
                                      {_route:"files.view.index"}                                                                                  
                                    )                                                                                                              
                                13. <<closure>>                                                                                                    
                                    OC\AppFramework\Routing\RouteActionHandler->__invoke({_ ... "})                                                
                                14. lib/private/Route/Router.php line 297                                                                          
                                    call_user_func(                                                                                                
                                      OC\AppFramework\Routing\RouteActionHandler {},                                                               
                                      {_route:"files.view.index"}                                                                                  
                                    )                                                                                                              
                                15. lib/base.php line 997                                                                                          
                                    OC\Route\Router->match("\/apps\/files\/")                                                                      
                                16. index.php line 42                                                                                              
                                    OC::handleRequest(                                                                                             

                                    )                                                                                                              

  Error     index               OCP\Files\NotPermittedException: Could not create path at             2020-10-01T14:37:27+00:00                    
                                lib/private/Files/Node/Folder.php line 185                                                                         

                                 0. .../SimpleFolder.php line 83                                                                                   
                                    OC\Files\Node\Folder->newFile("4039-7dda-merged.css.gzip")                                                     
                                 1. .../SCSSCacher.php line 342                                                                                    
                                    OC\Files\SimpleFS\SimpleFolder->newFile("4039-7dda-merg ... p")                                                
                                 2. .../SCSSCacher.php line 181                                                                                    
                                    OC\Template\SCSSCacher->cache(                                                                                 
                                      "\/var\/www\/nextcloud\/a ... s",                                                                            
                                      "4039-7dda-merged.css",                                                                                      
                                      "merged.scss",                                                                                               
                                      OC\Files\SimpleFS\SimpleF ... {},                                                                            
                                      "\/apps\/files\/css"                                                                                         
                                    )                                                                                                              
                                 3. .../CSSResourceLocator.php line 109                                                                            
                                    OC\Template\SCSSCacher->process(                                                                               
                                      "\/var\/www\/nextcloud\ ... s",                                                                              
                                      "css\/merged.scss",                                                                                          
                                      "files"                                                                                                      
                                    )                                                                                                              
                                 4. .../CSSResourceLocator.php line 84                                                                             
                                    OC\Template\CSSResourceLocator->cacheAndAppendScssIfExist(                                                     
                                      "\/var\/www\/nextcloud\/apps\/fil ... s",                                                                    
                                      "css\/merged.sc ... s",                                                                                      
                                      "fil ... s"                                                                                                  
                                    )                                                                                                              
                                 5. .../ResourceLocator.php line 78                                                                                
                                    OC\Template\CSSResourceLocator->doFind("css\/merged")                                                          
                                 6. .../TemplateLayout.php line 305                                                                                
                                    OC\Template\ResourceLocator->find(["css\/server","css\/ ... "])                                                
                                 7. .../TemplateLayout.php line 210                                                                                
                                    OC\TemplateLayout::findStylesheetFiles(["css\/server"," ... "])                                                
                                 8. .../legacy/template.php line 183                                                                               
                                    OC\TemplateLayout->__construct("user", "files")                                                                
                                 9. .../Http/TemplateResponse.php line 165                                                                         
                                    OC_Template->fetchPage({usedSpacePercent:12,owner:"My_c ... ]})                                                
                                10. .../Dispatcher.php line 123                                                                                    
                                    OCP\AppFramework\Http\TemplateResponse->render(                                                                

                                    )                                                                                                              
                                11. .../App.php line 126                                                                                           
                                    OC\AppFramework\Http\Dispatcher->dispatch(                                                                     
                                      OCA\Files\Con ... {},                                                                                        
                                      "index"                                                                                                      
                                    )                                                                                                              
                                12. .../RouteActionHandler.php line 47                                                                             
                                    OC\AppFramework\App::main(                                                                                     
                                      "OCA\\Files\\Controller\\View ... r",                                                                        
                                      "index",                                                                                                     
                                      OC\AppFramework\DependencyInj ... {},                                                                        
                                      {_route:"files.view.index"}                                                                                  
                                    )                                                                                                              
                                13. <<closure>>                                                                                                    
                                    OC\AppFramework\Routing\RouteActionHandler->__invoke({_ ... "})                                                
                                14. lib/private/Route/Router.php line 297                                                                          
                                    call_user_func(                                                                                                
                                      OC\AppFramework\Routing\RouteActionHandler {},                                                               
                                      {_route:"files.view.index"}                                                                                  
                                    )                                                                                                              
                                15. lib/base.php line 997                                                                                          
                                    OC\Route\Router->match("\/apps\/files\/")                                                                      
                                16. index.php line 42                                                                                              
                                    OC::handleRequest(                                                                                             

                                    )                                                                                                              

  Error     index               OCP\Files\NotPermittedException: Could not create path at             2020-10-01T14:37:32+00:00                    
                                lib/private/Files/Node/Folder.php line 185                                                                         

                                 0. .../SimpleFolder.php line 83                                                                                   
                                    OC\Files\Node\Folder->newFile("4039-7dda-merged.css.gzip")                                                     
                                 1. .../SCSSCacher.php line 342                                                                                    
                                    OC\Files\SimpleFS\SimpleFolder->newFile("4039-7dda-merg ... p")                                                
                                 2. .../SCSSCacher.php line 181                                                                                    
                                    OC\Template\SCSSCacher->cache(                                                                                 
                                      "\/var\/www\/nextcloud\/a ... s",                                                                            
                                      "4039-7dda-merged.css",                                                                                      
                                      "merged.scss",                                                                                               
                                      OC\Files\SimpleFS\SimpleF ... {},                                                                            
                                      "\/apps\/files\/css"                                                                                         
                                    )                                                                                                              
                                 3. .../CSSResourceLocator.php line 109                                                                            
                                    OC\Template\SCSSCacher->process(                                                                               
                                      "\/var\/www\/nextcloud\ ... s",                                                                              
                                      "css\/merged.scss",                                                                                          
                                      "files"                                                                                                      
                                    )                                                                                                              
                                 4. .../CSSResourceLocator.php line 84                                                                             
                                    OC\Template\CSSResourceLocator->cacheAndAppendScssIfExist(                                                     
                                      "\/var\/www\/nextcloud\/apps\/fil ... s",                                                                    
                                      "css\/merged.sc ... s",                                                                                      
                                      "fil ... s"                                                                                                  
                                    )                                                                                                              
                                 5. .../ResourceLocator.php line 78                                                                                
                                    OC\Template\CSSResourceLocator->doFind("css\/merged")                                                          
                                 6. .../TemplateLayout.php line 305                                                                                
                                    OC\Template\ResourceLocator->find(["css\/server","css\/ ... "])                                                
                                 7. .../TemplateLayout.php line 210                                                                                
                                    OC\TemplateLayout::findStylesheetFiles(["css\/server"," ... "])                                                
                                 8. .../legacy/template.php line 183                                                                               
                                    OC\TemplateLayout->__construct("user", "files")                                                                
                                 9. .../Http/TemplateResponse.php line 165                                                                         
                                    OC_Template->fetchPage({usedSpacePercent:12,owner:"My_c ... ]})                                                
                                10. .../Dispatcher.php line 123                                                                                    
                                    OCP\AppFramework\Http\TemplateResponse->render(                                                                

                                    )                                                                                                              
                                11. .../App.php line 126                                                                                           
                                    OC\AppFramework\Http\Dispatcher->dispatch(                                                                     
                                      OCA\Files\Con ... {},                                                                                        
                                      "index"                                                                                                      
                                    )                                                                                                              
                                12. .../RouteActionHandler.php line 47                                                                             
                                    OC\AppFramework\App::main(                                                                                     
                                      "OCA\\Files\\Controller\\View ... r",                                                                        
                                      "index",                                                                                                     
                                      OC\AppFramework\DependencyInj ... {},                                                                        
                                      {_route:"files.view.index"}                                                                                  
                                    )                                                                                                              
                                13. <<closure>>                                                                                                    
                                    OC\AppFramework\Routing\RouteActionHandler->__invoke({_ ... "})                                                
                                14. lib/private/Route/Router.php line 297                                                                          
                                    call_user_func(                                                                                                
                                      OC\AppFramework\Routing\RouteActionHandler {},                                                               
                                      {_route:"files.view.index"}                                                                                  
                                    )                                                                                                              
                                15. lib/base.php line 997                                                                                          
                                    OC\Route\Router->match("\/apps\/files\/")                                                                      
                                16. index.php line 42                                                                                              
                                    OC::handleRequest(                                                                                             

                                    )                                                                                                              

  Error     index               OCP\Files\NotPermittedException: Could not create path at             2020-10-01T14:37:37+00:00                    
                                lib/private/Files/Node/Folder.php line 185                                                                         

                                 0. .../SimpleFolder.php line 83                                                                                   
                                    OC\Files\Node\Folder->newFile("4039-7dda-merged.css.gzip")                                                     
                                 1. .../SCSSCacher.php line 342                                                                                    
                                    OC\Files\SimpleFS\SimpleFolder->newFile("4039-7dda-merg ... p")                                                
                                 2. .../SCSSCacher.php line 181                                                                                    
                                    OC\Template\SCSSCacher->cache(                                                                                 
                                      "\/var\/www\/nextcloud\/a ... s",                                                                            
                                      "4039-7dda-merged.css",                                                                                      
                                      "merged.scss",                                                                                               
                                      OC\Files\SimpleFS\SimpleF ... {},                                                                            
                                      "\/apps\/files\/css"                                                                                         
                                    )                                                                                                              
                                 3. .../CSSResourceLocator.php line 109                                                                            
                                    OC\Template\SCSSCacher->process(                                                                               
                                      "\/var\/www\/nextcloud\ ... s",                                                                              
                                      "css\/merged.scss",                                                                                          
                                      "files"                                                                                                      
                                    )                                                                                                              
                                 4. .../CSSResourceLocator.php line 84                                                                             
                                    OC\Template\CSSResourceLocator->cacheAndAppendScssIfExist(                                                     
                                      "\/var\/www\/nextcloud\/apps\/fil ... s",                                                                    
                                      "css\/merged.sc ... s",                                                                                      
                                      "fil ... s"                                                                                                  
                                    )                                                                                                              
                                 5. .../ResourceLocator.php line 78                                                                                
                                    OC\Template\CSSResourceLocator->doFind("css\/merged")                                                          
                                 6. .../TemplateLayout.php line 305                                                                                
                                    OC\Template\ResourceLocator->find(["css\/server","css\/ ... "])                                                
                                 7. .../TemplateLayout.php line 210                                                                                
                                    OC\TemplateLayout::findStylesheetFiles(["css\/server"," ... "])                                                
                                 8. .../legacy/template.php line 183                                                                               
                                    OC\TemplateLayout->__construct("user", "files")                                                                
                                 9. .../Http/TemplateResponse.php line 165                                                                         
                                    OC_Template->fetchPage({usedSpacePercent:12,owner:"My_c ... ]})                                                
                                10. .../Dispatcher.php line 123                                                                                    
                                    OCP\AppFramework\Http\TemplateResponse->render(                                                                

                                    )                                                                                                              
                                11. .../App.php line 126                                                                                           
                                    OC\AppFramework\Http\Dispatcher->dispatch(                                                                     
                                      OCA\Files\Con ... {},                                                                                        
                                      "index"                                                                                                      
                                    )                                                                                                              
                                12. .../RouteActionHandler.php line 47                                                                             
                                    OC\AppFramework\App::main(                                                                                     
                                      "OCA\\Files\\Controller\\View ... r",                                                                        
                                      "index",                                                                                                     
                                      OC\AppFramework\DependencyInj ... {},                                                                        
                                      {_route:"files.view.index"}                                                                                  
                                    )                                                                                                              
                                13. <<closure>>                                                                                                    
                                    OC\AppFramework\Routing\RouteActionHandler->__invoke({_ ... "})                                                
                                14. lib/private/Route/Router.php line 297                                                                          
                                    call_user_func(                                                                                                
                                      OC\AppFramework\Routing\RouteActionHandler {},                                                               
                                      {_route:"files.view.index"}                                                                                  
                                    )                                                                                                              
                                15. lib/base.php line 997                                                                                          
                                    OC\Route\Router->match("\/apps\/files\/")                                                                      
                                16. index.php line 42                                                                                              
                                    OC::handleRequest(                                                                                             

                                    )                                                                                                              

  Error     index               OCP\Files\NotPermittedException: Could not create path at             2020-10-01T14:37:41+00:00                    
                                lib/private/Files/Node/Folder.php line 185                                                                         

                                 0. .../SimpleFolder.php line 83                                                                                   
                                    OC\Files\Node\Folder->newFile("4039-7dda-merged.css.gzip")                                                     
                                 1. .../SCSSCacher.php line 342                                                                                    
                                    OC\Files\SimpleFS\SimpleFolder->newFile("4039-7dda-merg ... p")                                                
                                 2. .../SCSSCacher.php line 181                                                                                    
                                    OC\Template\SCSSCacher->cache(                                                                                 
                                      "\/var\/www\/nextcloud\/a ... s",                                                                            
                                      "4039-7dda-merged.css",                                                                                      
                                      "merged.scss",                                                                                               
                                      OC\Files\SimpleFS\SimpleF ... {},                                                                            
                                      "\/apps\/files\/css"                                                                                         
                                    )                                                                                                              
                                 3. .../CSSResourceLocator.php line 109                                                                            
                                    OC\Template\SCSSCacher->process(                                                                               
                                      "\/var\/www\/nextcloud\ ... s",                                                                              
                                      "css\/merged.scss",                                                                                          
                                      "files"                                                                                                      
                                    )                                                                                                              
                                 4. .../CSSResourceLocator.php line 84                                                                             
                                    OC\Template\CSSResourceLocator->cacheAndAppendScssIfExist(                                                     
                                      "\/var\/www\/nextcloud\/apps\/fil ... s",                                                                    
                                      "css\/merged.sc ... s",                                                                                      
                                      "fil ... s"                                                                                                  
                                    )                                                                                                              
                                 5. .../ResourceLocator.php line 78                                                                                
                                    OC\Template\CSSResourceLocator->doFind("css\/merged")                                                          
                                 6. .../TemplateLayout.php line 305                                                                                
                                    OC\Template\ResourceLocator->find(["css\/server","css\/ ... "])                                                
                                 7. .../TemplateLayout.php line 210                                                                                
                                    OC\TemplateLayout::findStylesheetFiles(["css\/server"," ... "])                                                
                                 8. .../legacy/template.php line 183                                                                               
                                    OC\TemplateLayout->__construct("user", "files")                                                                
                                 9. .../Http/TemplateResponse.php line 165                                                                         
                                    OC_Template->fetchPage({usedSpacePercent:12,owner:"My_c ... ]})                                                
                                10. .../Dispatcher.php line 123                                                                                    
                                    OCP\AppFramework\Http\TemplateResponse->render(                                                                

                                    )                                                                                                              
                                11. .../App.php line 126                                                                                           
                                    OC\AppFramework\Http\Dispatcher->dispatch(                                                                     
                                      OCA\Files\Con ... {},                                                                                        
                                      "index"                                                                                                      
                                    )                                                                                                              
                                12. .../RouteActionHandler.php line 47                                                                             
                                    OC\AppFramework\App::main(                                                                                     
                                      "OCA\\Files\\Controller\\View ... r",                                                                        
                                      "index",                                                                                                     
                                      OC\AppFramework\DependencyInj ... {},                                                                        
                                      {_route:"files.view.index"}                                                                                  
                                    )                                                                                                              
                                13. <<closure>>                                                                                                    
                                    OC\AppFramework\Routing\RouteActionHandler->__invoke({_ ... "})                                                
                                14. lib/private/Route/Router.php line 297                                                                          
                                    call_user_func(                                                                                                
                                      OC\AppFramework\Routing\RouteActionHandler {},                                                               
                                      {_route:"files.view.index"}                                                                                  
                                    )                                                                                                              
                                15. lib/base.php line 997                                                                                          
                                    OC\Route\Router->match("\/apps\/files\/")                                                                      
                                16. index.php line 42                                                                                              
                                    OC::handleRequest(                                                                                             

                                    )                                                                                                              

  Error     index               OCP\Files\NotPermittedException: Could not create path at             2020-10-01T14:37:48+00:00                    
                                lib/private/Files/Node/Folder.php line 185                                                                         

                                 0. .../SimpleFolder.php line 83                                                                                   
                                    OC\Files\Node\Folder->newFile("4039-7dda-merged.css.gzip")                                                     
                                 1. .../SCSSCacher.php line 342                                                                                    
                                    OC\Files\SimpleFS\SimpleFolder->newFile("4039-7dda-merg ... p")                                                
                                 2. .../SCSSCacher.php line 181                                                                                    
                                    OC\Template\SCSSCacher->cache(                                                                                 
                                      "\/var\/www\/nextcloud\/a ... s",                                                                            
                                      "4039-7dda-merged.css",                                                                                      
                                      "merged.scss",                                                                                               
                                      OC\Files\SimpleFS\SimpleF ... {},                                                                            
                                      "\/apps\/files\/css"                                                                                         
                                    )                                                                                                              
                                 3. .../CSSResourceLocator.php line 109                                                                            
                                    OC\Template\SCSSCacher->process(                                                                               
                                      "\/var\/www\/nextcloud\ ... s",                                                                              
                                      "css\/merged.scss",                                                                                          
                                      "files"                                                                                                      
                                    )                                                                                                              
                                 4. .../CSSResourceLocator.php line 84                                                                             
                                    OC\Template\CSSResourceLocator->cacheAndAppendScssIfExist(                                                     
                                      "\/var\/www\/nextcloud\/apps\/fil ... s",                                                                    
                                      "css\/merged.sc ... s",                                                                                      
                                      "fil ... s"                                                                                                  
                                    )                                                                                                              
                                 5. .../ResourceLocator.php line 78                                                                                
                                    OC\Template\CSSResourceLocator->doFind("css\/merged")                                                          
                                 6. .../TemplateLayout.php line 305                                                                                
                                    OC\Template\ResourceLocator->find(["css\/server","css\/ ... "])                                                
                                 7. .../TemplateLayout.php line 210                                                                                
                                    OC\TemplateLayout::findStylesheetFiles(["css\/server"," ... "])                                                
                                 8. .../legacy/template.php line 183                                                                               
                                    OC\TemplateLayout->__construct("user", "files")                                                                
                                 9. .../Http/TemplateResponse.php line 165                                                                         
                                    OC_Template->fetchPage({usedSpacePercent:12,owner:"My_c ... ]})                                                
                                10. .../Dispatcher.php line 123                                                                                    
                                    OCP\AppFramework\Http\TemplateResponse->render(                                                                

                                    )                                                                                                              
                                11. .../App.php line 126                                                                                           
                                    OC\AppFramework\Http\Dispatcher->dispatch(                                                                     
                                      OCA\Files\Con ... {},                                                                                        
                                      "index"                                                                                                      
                                    )                                                                                                              
                                12. .../RouteActionHandler.php line 47                                                                             
                                    OC\AppFramework\App::main(                                                                                     
                                      "OCA\\Files\\Controller\\View ... r",                                                                        
                                      "index",                                                                                                     
                                      OC\AppFramework\DependencyInj ... {},                                                                        
                                      {_route:"files.view.index"}                                                                                  
                                    )                                                                                                              
                                13. <<closure>>                                                                                                    
                                    OC\AppFramework\Routing\RouteActionHandler->__invoke({_ ... "})                                                
                                14. lib/private/Route/Router.php line 297                                                                          
                                    call_user_func(                                                                                                
                                      OC\AppFramework\Routing\RouteActionHandler {},                                                               
                                      {_route:"files.view.index"}                                                                                  
                                    )                                                                                                              
                                15. lib/base.php line 997                                                                                          
                                    OC\Route\Router->match("\/apps\/files\/")                                                                      
                                16. index.php line 42                                                                                              
                                    OC::handleRequest(                                                                                             

                                    )                                                                                                              

  Error     index               OCP\Files\NotPermittedException: Could not create path at             2020-10-01T14:37:52+00:00                    
                                lib/private/Files/Node/Folder.php line 185                                                                         

                                 0. .../SimpleFolder.php line 83                                                                                   
                                    OC\Files\Node\Folder->newFile("4039-7dda-merged.css.gzip")                                                     
                                 1. .../SCSSCacher.php line 342                                                                                    
                                    OC\Files\SimpleFS\SimpleFolder->newFile("4039-7dda-merg ... p")                                                
                                 2. .../SCSSCacher.php line 181                                                                                    
                                    OC\Template\SCSSCacher->cache(                                                                                 
                                      "\/var\/www\/nextcloud\/a ... s",                                                                            
                                      "4039-7dda-merged.css",                                                                                      
                                      "merged.scss",                                                                                               
                                      OC\Files\SimpleFS\SimpleF ... {},                                                                            
                                      "\/apps\/files\/css"                                                                                         
                                    )                                                                                                              
                                 3. .../CSSResourceLocator.php line 109                                                                            
                                    OC\Template\SCSSCacher->process(                                                                               
                                      "\/var\/www\/nextcloud\ ... s",                                                                              
                                      "css\/merged.scss",                                                                                          
                                      "files"                                                                                                      
                                    )                                                                                                              
                                 4. .../CSSResourceLocator.php line 84                                                                             
                                    OC\Template\CSSResourceLocator->cacheAndAppendScssIfExist(                                                     
                                      "\/var\/www\/nextcloud\/apps\/fil ... s",                                                                    
                                      "css\/merged.sc ... s",                                                                                      
                                      "fil ... s"                                                                                                  
                                    )                                                                                                              
                                 5. .../ResourceLocator.php line 78                                                                                
                                    OC\Template\CSSResourceLocator->doFind("css\/merged")                                                          
                                 6. .../TemplateLayout.php line 305                                                                                
                                    OC\Template\ResourceLocator->find(["css\/server","css\/ ... "])                                                
                                 7. .../TemplateLayout.php line 210                                                                                
                                    OC\TemplateLayout::findStylesheetFiles(["css\/server"," ... "])                                                
                                 8. .../legacy/template.php line 183                                                                               
                                    OC\TemplateLayout->__construct("user", "files")                                                                
                                 9. .../Http/TemplateResponse.php line 165                                                                         
                                    OC_Template->fetchPage({usedSpacePercent:12,owner:"My_c ... ]})                                                
                                10. .../Dispatcher.php line 123                                                                                    
                                    OCP\AppFramework\Http\TemplateResponse->render(                                                                

                                    )                                                                                                              
                                11. .../App.php line 126                                                                                           
                                    OC\AppFramework\Http\Dispatcher->dispatch(                                                                     
                                      OCA\Files\Con ... {},                                                                                        
                                      "index"                                                                                                      
                                    )                                                                                                              
                                12. .../RouteActionHandler.php line 47                                                                             
                                    OC\AppFramework\App::main(                                                                                     
                                      "OCA\\Files\\Controller\\View ... r",                                                                        
                                      "index",                                                                                                     
                                      OC\AppFramework\DependencyInj ... {},                                                                        
                                      {_route:"files.view.index"}                                                                                  
                                    )                                                                                                              
                                13. <<closure>>                                                                                                    
                                    OC\AppFramework\Routing\RouteActionHandler->__invoke({_ ... "})                                                
                                14. lib/private/Route/Router.php line 297                                                                          
                                    call_user_func(                                                                                                
                                      OC\AppFramework\Routing\RouteActionHandler {},                                                               
                                      {_route:"files.view.index"}                                                                                  
                                    )                                                                                                              
                                15. lib/base.php line 997                                                                                          
                                    OC\Route\Router->match("\/apps\/files\/")                                                                      
                                16. index.php line 42                                                                                              
                                    OC::handleRequest(                                                                                             

                                    )                                                                                                              

  Error     index               OCP\Files\NotPermittedException: Could not create path at             2020-10-01T14:37:58+00:00                    
                                lib/private/Files/Node/Folder.php line 185                                                                         

                                 0. .../SimpleFolder.php line 83                                                                                   
                                    OC\Files\Node\Folder->newFile("4039-7dda-merged.css.gzip")                                                     
                                 1. .../SCSSCacher.php line 342                                                                                    
                                    OC\Files\SimpleFS\SimpleFolder->newFile("4039-7dda-merg ... p")                                                
                                 2. .../SCSSCacher.php line 181                                                                                    
                                    OC\Template\SCSSCacher->cache(                                                                                 
                                      "\/var\/www\/nextcloud\/a ... s",                                                                            
                                      "4039-7dda-merged.css",                                                                                      
                                      "merged.scss",                                                                                               
                                      OC\Files\SimpleFS\SimpleF ... {},                                                                            
                                      "\/apps\/files\/css"                                                                                         
                                    )                                                                                                              
                                 3. .../CSSResourceLocator.php line 109                                                                            
                                    OC\Template\SCSSCacher->process(                                                                               
                                      "\/var\/www\/nextcloud\ ... s",                                                                              
                                      "css\/merged.scss",                                                                                          
                                      "files"                                                                                                      
                                    )                                                                                                              
                                 4. .../CSSResourceLocator.php line 84                                                                             
                                    OC\Template\CSSResourceLocator->cacheAndAppendScssIfExist(                                                     
                                      "\/var\/www\/nextcloud\/apps\/fil ... s",                                                                    
                                      "css\/merged.sc ... s",                                                                                      
                                      "fil ... s"                                                                                                  
                                    )                                                                                                              
                                 5. .../ResourceLocator.php line 78                                                                                
                                    OC\Template\CSSResourceLocator->doFind("css\/merged")                                                          
                                 6. .../TemplateLayout.php line 305                                                                                
                                    OC\Template\ResourceLocator->find(["css\/server","css\/ ... "])                                                
                                 7. .../TemplateLayout.php line 210                                                                                
                                    OC\TemplateLayout::findStylesheetFiles(["css\/server"," ... "])                                                
                                 8. .../legacy/template.php line 183                                                                               
                                    OC\TemplateLayout->__construct("user", "files")                                                                
                                 9. .../Http/TemplateResponse.php line 165                                                                         
                                    OC_Template->fetchPage({usedSpacePercent:12,owner:"My_c ... ]})                                                
                                10. .../Dispatcher.php line 123                                                                                    
                                    OCP\AppFramework\Http\TemplateResponse->render(                                                                

                                    )                                                                                                              
                                11. .../App.php line 126                                                                                           
                                    OC\AppFramework\Http\Dispatcher->dispatch(                                                                     
                                      OCA\Files\Con ... {},                                                                                        
                                      "index"                                                                                                      
                                    )                                                                                                              
                                12. .../RouteActionHandler.php line 47                                                                             
                                    OC\AppFramework\App::main(                                                                                     
                                      "OCA\\Files\\Controller\\View ... r",                                                                        
                                      "index",                                                                                                     
                                      OC\AppFramework\DependencyInj ... {},                                                                        
                                      {_route:"files.view.index"}                                                                                  
                                    )                                                                                                              
                                13. <<closure>>                                                                                                    
                                    OC\AppFramework\Routing\RouteActionHandler->__invoke({_ ... "})                                                
                                14. lib/private/Route/Router.php line 297                                                                          
                                    call_user_func(                                                                                                
                                      OC\AppFramework\Routing\RouteActionHandler {},                                                               
                                      {_route:"files.view.index"}                                                                                  
                                    )                                                                                                              
                                15. lib/base.php line 997                                                                                          
                                    OC\Route\Router->match("\/apps\/files\/")                                                                      
                                16. index.php line 42                                                                                              
                                    OC::handleRequest(                                                                                             

                                    )                                                                                                              

  Warning   no app in context   Login failed: text (Remote IP: 77.189.61.153)                         2020-10-01T15:56:08+00:00                    

  Warning   core                Could not send password reset email: Could not find user              2020-10-01T15:56:26+00:00                    

 --------- ------------------- --------------------------------------------------------------------- --------------------------                    -

root@DietPi:~# 

as far as I can see it has 2 issues. While I'm not sure if the secound is a result out of the first one

Could not create path at
Could not find user

@MichaIng
Could it be a persmission issue or a full file system?

Probably but not 100% sure.

@ludji49
Please try:

ncc files:scan # This might take a long time
ncc files:cleanup
ncc files:scan-app-data
chown -R www-data:www-data /datastore # In case, replace with the real location of your Nextcloud data
root@DietPi:~# ncc files:scan # This might take a long time
Please specify the user id to scan, --all to scan for all users or --path=...
root@DietPi:~# ncc files:cleanup
0 orphaned file cache entries deleted
root@DietPi:~# ncc files:scan-app-data

Scanning AppData for files

+---------+-------+--------------+
| Folders | Files | Elapsed time |
+---------+-------+--------------+
| 5289    | 13282 | 00:02:06     |
+---------+-------+--------------+
root@DietPi:~# chown -R www-data:www-data /datastore # In case, replace with the real location of your Nextcloud data                                                                                                                        chown: modification du propriétaire de '/datastore/appdata_oc5cbhxlsgns/css/files/4039-7dda-merged.css.gzip': La structure a besoin d'un nettoyage
chown: modification du propriétaire de '/datastore/appdata_oc5cbhxlsgns/preview/25110/1024-768.jpg': Message invalide
chown: impossible de lire le répertoire '/datastore/appdata_oc5cbhxlsgns/preview/40419': Message invalide
chown: modification du propriétaire de '/datastore/appdata_oc5cbhxlsgns/preview/25111/1024-768.jpg': Message invalide
chown: impossible de lire le répertoire '/datastore/appdata_oc5cbhxlsgns/preview/40421': Message invalide
chown: impossible de lire le répertoire '/datastore/appdata_oc5cbhxlsgns/preview/40423': Message invalide
chown: impossible de lire le répertoire '/datastore/appdata_oc5cbhxlsgns/preview/40420': Message invalide
chown: impossible de lire le répertoire '/datastore/appdata_oc5cbhxlsgns/preview/40417': Message invalide
chown: modification du propriétaire de '/datastore/appdata_oc5cbhxlsgns/preview/25112/1024-768.jpg': Message invalide
chown: modification du propriétaire de '/datastore/appdata_oc5cbhxlsgns/preview/25105/1024-768.jpg': Message invalide
chown: impossible de lire le répertoire '/datastore/appdata_oc5cbhxlsgns/preview/40422': Message invalide
chown: impossible de lire le répertoire '/datastore/appdata_oc5cbhxlsgns/preview/40418': Message invalide

ncc log:tail


NextCloud Logfile attached. Click to expand!

chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp5042858973': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp0546689271': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp8444459195': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp3391550035': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp9727968722': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp2588663178': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp1679363818': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp2051887457': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp5483998778': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp4480971498': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp9884850153': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp3652694089': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp4254113145': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp8218121518': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp3750474779': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp5379239276': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp6405237999': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp7560660646': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp7219430598': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp5845950740': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp4225973237': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp1919056511': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp8786101473': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp4491999191': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp4441764539': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp7304172140': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp8278841189': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp6278488599': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp3536642998': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp3586053918': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp7017840725': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp8749060642': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp2666359536': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp8777673627': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp4037929752': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp0117674248': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp9492267772': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp4991611731': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp7742776053': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp8725130788': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp2767795254': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp5903552550': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp2908900076': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp9331547894': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp2412018724': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp5166875703': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp1782326522': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp2478005155': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp7877770587': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp9583936450': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp1933323931': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp4858039192': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp4399004524': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp7017654469': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp7255947118': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp6086645817': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp2553648839': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp4371212283': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp8271284174': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp2999953647': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp0290944517': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp1635103114': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp3824256846': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp2331407385': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp4585555527': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp3987763718': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp8293804411': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp7328150586': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp3383926671': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp9884605378': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp2158219594': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp3018763790': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp1166513120': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp6268140394': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp4523521030': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp6147557737': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp1328519870': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp3722847213': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp6727692324': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp7419945849': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp9090722467': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp8290478380': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp7587055188': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp7334470449': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp1679919761': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp7547196701': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp9597998387': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp7096495971': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp6684656897': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp4172957393': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp3080153508': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp4335787758': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp1411686938': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp6798141235': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp9093353962': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp5166875703': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp1782326522': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp2478005155': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp7877770587': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp9583936450': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp1933323931': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp4858039192': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp4399004524': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp7017654469': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp7255947118': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp6086645817': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp2553648839': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp4371212283': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp8271284174': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp2999953647': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp0290944517': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp1635103114': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp3824256846': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp2331407385': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp4585555527': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp3987763718': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp8293804411': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp7328150586': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp3383926671': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp9884605378': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp2158219594': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp3018763790': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp1166513120': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp6268140394': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp4523521030': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp6147557737': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp1328519870': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp3722847213': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp6727692324': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp7419945849': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp9090722467': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp8290478380': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp7587055188': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp7334470449': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp1679919761': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp7547196701': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp9597998387': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp7096495971': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp6684656897': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp4172957393': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp3080153508': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp4335787758': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp1411686938': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp6798141235': Aucun fichier ou dossier de ce type
chown: modification du propriétaire de '/datastore/files_external/rootcerts.crt.tmp9093353962': Aucun fichier ou dossier de ce type
root@DietPi:~#

Okay the only errors are with external storage files, in particular this temporary certificate, and a few previews or their dirs, but that should not matter.

I've forgotten the --all argument for the full file scan:

ncc files:scan --all
root@DietPi:~# ncc files:scan --all
Starting scan for user 1 out of 5 (XXXX)
Home storage for user admin not writable
Make sure you're running the scan command only as the user the web server runs as
Starting scan for user 2 out of 5 (YYYY)
Starting scan for user 3 out of 5 (ZZZZ)
Starting scan for user 4 out of 5 (AAAA)
Starting scan for user 5 out of 5 (BBBB)
+---------+-------+--------------+
| Folders | Files | Elapsed time |
+---------+-------+--------------+
| 2807    | 22519 | 00:02:41     |
+---------+-------+--------------+

Okay, as previews was something before, we could do some failsafe steps:

ncc preview:repair
ncc preview:delete_old # This errors out as long as you don't have the PreviewGenerator app enabled

If web UI access fill does not work, try it with a different browser or after clearing browser cache, i.e. reload the website via ctrl+c keys. And if it still does not work, try a Nextcloud repair step (paste the last logs again before):

ncc log:tail
ncc maintenance:repair
                            15. .../base.php line 997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                OC\Route\Router->match(                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
                                  "\ ... /"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
                                )                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
                            16. index.php line 42                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
                                OC::handleRequest(                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              

                                )

--------- ------------------- ------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- ------------------------------------------- ---------------------------

root@DietPi:~# ncc maintenance:repair
 - Repair MySQL collation
     - All tables already have the correct collation -> nothing to do
 - Repair mime types
 - Clean tags and favorites
     - 0 tags of deleted users have been removed.
     - 0 tags for delete files have been removed.
     - 0 tag entries for deleted tags have been removed.
     - 0 tags with no entries have been removed.
 - Repair invalid shares
 - Move .step file of updater to backup location
 - Fix potential broken mount points
     - No mounts updated
 - Add log rotate job
 - Clear frontend caches
     - Image cache cleared
     - SCSS cache cleared
     - JS cache cleared
 - Clear every generated avatar on major updates
 - Add preview background cleanup job
 - Queue a one-time job to cleanup old backups of the updater
 - Cleanup invalid photocache files for carddav
 - Add background job to cleanup login flow v2 tokens
 - Remove potentially over exposing share links
     - No need to remove link shares.
 - Clear access cache of projects
 - Cleanup cypress files from viewer app
 - Switches from deprecated "production" to "stable" update channel
 - Sets the enterprise logo
     - Repair step already executed
 - Cleanup of old Audio Player tables
    0 [>---------------------------]
 - Fix component of birthday calendars
     - 5 birthday calendars updated.
 - Regenerating birthday calendars to use new icons and fix old birthday events                   without year
     - Repair step already executed
 - Fix broken values of calendar objects
    0 [>---------------------------]
 - Registering building of calendar search index as background job
     - Repair step already executed
 - Registering background jobs to update cache for webcal calendars
     - Added 0 background jobs to update webcal calendars
 - Registering building of calendar reminder index as background job
     - Repair step already executed
 - Clean up orphan event and contact data
     - 0 events without a calendar have been cleaned up
     - 0 properties without an events have been cleaned up
     - 0 changes without a calendar have been cleaned up
     - 0 cached events without a calendar subscription have been cleaned up
     - 0 changes without a calendar subscription have been cleaned up
     - 0 contacts without an addressbook have been cleaned up
     - 0 properties without a contact have been cleaned up
     - 0 changes without an addressbook have been cleaned up
 - Remove activity entries of private events
     - Removed 0 activity entries
 - Fix the share type of guest shares when migrating from ownCloud
 - Copy the share password into the dedicated column
 - Update OAuth token expiration times
 - Add background job to check for backup codes
root@DietPi:~#

And? Still no access?

I have access by ipad and iphone but with windows the page doesn't open

If you have access from iPad and iPhone but not from Windows, it's a client issue and not a server one. Pls clear browser date like cache or use a different browser.

I've cleaned the cache and tried another browser and on the macbook pro it doesn't work

The MacBook Pro isn't the Windows machine, is it? Regardless it is a client side issue, either cache, or browser (did you check browser console for errors?) or OS or network config as other clients work and Joulinar and me can both access your Nextcloud login screen without issues. Also try to remove all cookies stored in your browser(s) your domain, clear all client sessions from within Nextcloud UI (from a working client). You can again check the last log entries, if there are related ones:

ncc log:tail

Probably on the Nextcloud forum you might find matches for the related error messages (if there are any) or with the specific client/browser that fails to access, but I'm afraid we cannot help much here aside of going through the generic debug steps as above 🤔.

I started again from the beginning I started again from the beginning and I still can't open the site.


Logfile attached. Click to expand!

DietPi Team     : MichaIng (lead), Daniel Knight (founder), Joulinar (support)
 Web             : https://dietpi.com | https://twitter.com/DietPi_
 Patreon Legends : Bryce
 Donate          : https://dietpi.com/#donate
 DietPi Hosting  : Powered by https://myvirtualserver.com

 dietpi-launcher : All the DietPi programs in one place.
 dietpi-config   : Feature rich configuration tool for your device.
 dietpi-software : Select optimized software for installation.
 htop            : Resource monitor.
 cpu             : Shows CPU information and stats.

root@DietPi:~# journalctl -u apache2
-- Logs begin at Thu 2016-11-03 18:16:43 CET, end at Mon 2020-10-05 08:40:22 CES
T. --
oct. 04 21:19:13 DietPi systemd[1]: Starting The Apache HTTP Server...
oct. 04 21:19:13 DietPi systemd[1]: Started The Apache HTTP Server.
oct. 05 07:51:31 DietPi systemd[1]: Stopping The Apache HTTP Server...
oct. 05 07:51:31 DietPi systemd[1]: Stopped The Apache HTTP Server.
root@DietPi:~# a2dissite default-ssl
Site default-ssl already disabled
root@DietPi:~# systemctl restart apache2
root@DietPi:~# journalctl -u apache2
-- Logs begin at Thu 2016-11-03 18:16:43 CET, end at Mon 2020-10-05 08:41:19 CES
T. --
oct. 04 21:19:13 DietPi systemd[1]: Starting The Apache HTTP Server...
oct. 04 21:19:13 DietPi systemd[1]: Started The Apache HTTP Server.
oct. 05 07:51:31 DietPi systemd[1]: Stopping The Apache HTTP Server...
oct. 05 07:51:31 DietPi systemd[1]: Stopped The Apache HTTP Server.
oct. 05 08:41:18 DietPi systemd[1]: Starting The Apache HTTP Server...
oct. 05 08:41:19 DietPi systemd[1]: Started The Apache HTTP Server.
root@DietPi:~# dietpi-letsencrypt
root@DietPi:~# tail -10 /var/log/apache2/error.log
stat: cannot stat '/datastore/appdata_oc5cbhxlsgns/js/core/merged-template-prepe                                                                             nd.js.deps': No such file or directory
stat: cannot stat '/datastore/appdata_oc5cbhxlsgns/js/core/merged-template-prepe                                                                             nd.js.deps': No such file or directory
stat: cannot stat '/datastore/appdata_oc5cbhxlsgns/js/core/merged-template-prepe                                                                             nd.js.deps': No such file or directory
stat: cannot stat '/datastore/appdata_oc5cbhxlsgns/js/core/merged-template-prepe                                                                             nd.js.deps': No such file or directory
stat: cannot stat '/datastore/appdata_oc5cbhxlsgns/js/core/merged-template-prepe                                                                             nd.js.deps': No such file or directory
stat: cannot stat '/datastore/appdata_oc5cbhxlsgns/js/core/merged-template-prepe                                                                             nd.js.deps': No such file or directory
stat: cannot stat '/datastore/appdata_oc5cbhxlsgns/js/core/merged-template-prepe                                                                             nd.js.deps': No such file or directory
[Mon Oct 05 07:51:31.827360 2020] [mpm_prefork:notice] [pid 866] AH00169: caught                                                                              SIGTERM, shutting down
[Mon Oct 05 08:41:19.599971 2020] [mpm_prefork:notice] [pid 5539] AH00163: Apach                                                                             e/2.4.25 (Raspbian) OpenSSL/1.0.2u configured -- resuming normal operations
[Mon Oct 05 08:41:19.600153 2020] [core:notice] [pid 5539] AH00094: Command line                                                                             : '/usr/sbin/apache2'
root@DietPi:~# tail -10 /mnt/dietpi_userdata/nextcloud_data/nextcloug.log
tail: impossible d'ouvrir '/mnt/dietpi_userdata/nextcloud_data/nextcloug.log' en lecture: Aucun fichier ou dossier de ce type
root@DietPi:~# ls -al /etc/apache2/{conf,sites}-enabled/*.conf
lrwxrwxrwx 1 root root 30 févr. 23  2018 /etc/apache2/conf-enabled/charset.conf -> ../conf-available/charset.conf
lrwxrwxrwx 1 root root 44 févr. 23  2018 /etc/apache2/conf-enabled/localized-error-pages.conf -> ../conf-available/localized-error-pages.conf
lrwxrwxrwx 1 root root 46 févr. 23  2018 /etc/apache2/conf-enabled/other-vhosts-access-log.conf -> ../conf-available/other-vhosts-access-log.conf
lrwxrwxrwx 1 root root 31 févr. 23  2018 /etc/apache2/conf-enabled/security.conf -> ../conf-available/security.conf
lrwxrwxrwx 1 root root 36 févr. 23  2018 /etc/apache2/conf-enabled/serve-cgi-bin.conf -> ../conf-available/serve-cgi-bin.conf
lrwxrwxrwx 1 root root 35 févr. 23  2018 /etc/apache2/sites-enabled/000-default.conf -> ../sites-available/000-default.conf
lrwxrwxrwx 1 root root 52 févr. 24  2018 /etc/apache2/sites-enabled/000-default-le-ssl.conf -> /etc/apache2/sites-available/000-default-le-ssl.conf
lrwxrwxrwx 1 root root 40 déc.  22  2018 /etc/apache2/sites-enabled/dietpi-nextcloud.conf -> ../sites-available/dietpi-nextcloud.conf
root@DietPi:~# ls -al /etc/apache2/{conf,sites}-enabled/*.conf
lrwxrwxrwx 1 root root 30 févr. 23  2018 /etc/apache2/conf-enabled/charset.conf -> ../conf-available/charset.conf
lrwxrwxrwx 1 root root 44 févr. 23  2018 /etc/apache2/conf-enabled/localized-error-pages.conf -> ../conf-available/localized-error-pages.conf
lrwxrwxrwx 1 root root 46 févr. 23  2018 /etc/apache2/conf-enabled/other-vhosts-access-log.conf -> ../conf-available/other-vhosts-access-log.conf
lrwxrwxrwx 1 root root 31 févr. 23  2018 /etc/apache2/conf-enabled/security.conf -> ../conf-available/security.conf
lrwxrwxrwx 1 root root 36 févr. 23  2018 /etc/apache2/conf-enabled/serve-cgi-bin.conf -> ../conf-available/serve-cgi-bin.conf
lrwxrwxrwx 1 root root 35 févr. 23  2018 /etc/apache2/sites-enabled/000-default.conf -> ../sites-available/000-default.conf
lrwxrwxrwx 1 root root 52 févr. 24  2018 /etc/apache2/sites-enabled/000-default-le-ssl.conf -> /etc/apache2/sites-available/000-default-le-ssl.conf
lrwxrwxrwx 1 root root 40 déc.  22  2018 /etc/apache2/sites-enabled/dietpi-nextcloud.conf -> ../sites-available/dietpi-nextcloud.conf
root@DietPi:~# G_CONFIG_INJECT 'ServerName' 'ServerName nextcloud-myweb.ddns.net' /etc/apache2/apache2.conf 'DocumentRoot'
[  OK  ] G_CONFIG_INJECT | Desired setting in /etc/apache2/apache2.conf was already set: ServerName nextcloud-myweb.ddns.net
root@DietPi:~# sed -i '/^[[:blank:]]*ServerName/c\ServerName nextcloud-myweb.ddns.net/' /etc/apache2/sites-available/000-default.conf
root@DietPi:~# sed -i '/^[[:blank:]]*ServerName/c\ServerName nextcloud-myweb.ddns.net/' /etc/apache2/sites-available/000-default-le-ssl.conf
root@DietPi:~# cat /etc/apache2/apache2.conf
Mutex file:${APACHE_LOCK_DIR} default

PidFile ${APACHE_PID_FILE}

Timeout 60

KeepAlive On

MaxKeepAliveRequests 20

KeepAliveTimeout 5

User ${APACHE_RUN_USER}
Group ${APACHE_RUN_GROUP}

HostnameLookups Off
ServerName nextcloud-myweb.ddns.net

ErrorLog ${APACHE_LOG_DIR}/error.log

LogLevel error

# Include module configuration:
IncludeOptional mods-enabled/*.load
IncludeOptional mods-enabled/*.conf

# Include list of ports to listen on
Include ports.conf

<Directory />
        Options FollowSymLinks
        AllowOverride None
        Require all denied
</Directory>

<Directory /usr/share>
        AllowOverride None
        Require all granted
</Directory>

<Directory /var/www/>
        DirectoryIndex index.php index.html
        Options Indexes FollowSymLinks
        AllowOverride None
        Require all granted
</Directory>

AccessFileName .htaccess

<FilesMatch "^\.ht">
        Require all denied
</FilesMatch>

LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %O" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent

# Include generic snippets of statements
IncludeOptional conf-enabled/*.conf

# Include the virtual host configurations:
IncludeOptional sites-enabled/*.conf
root@DietPi:~# G_CONFIG_INJECT 'ServerName' 'ServerName nextcloud-myweb.ddns.net' /etc/apache2/apache2.conf 'HostnameLookups'
[  OK  ] G_CONFIG_INJECT | Desired setting in /etc/apache2/apache2.conf was already set: ServerName nextcloud-myweb.ddns.net
root@DietPi:~# cat /etc/apache2/sites-available/000-default{,-le-ssl}.conf
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName nextcloud-myweb.ddns.net/
        Redirect permanent / https://nextcloud-myweb.ddns.net/
DocumentRoot /var/www/nextcloud

        #CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerAdmin webmaster@localhost
ServerName nextcloud-myweb.ddns.net/
ServerName nextcloud-myweb.ddns.net/
DocumentRoot /var/www/nextcloud

        ErrorLog ${APACHE_LOG_DIR}/error.log
        #CustomLog ${APACHE_LOG_DIR}/access.log combined
SSLCertificateFile /etc/letsencrypt/live/nextcloud-myweb.ddns.net/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/nextcloud-myweb.ddns.net/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
Header always set Strict-Transport-Security "max-age=31536000"
</VirtualHost>
</IfModule>
root@DietPi:~# find / -name nextcloud.log
/var/www/nextcloud/data/nextcloud.log
/datastore/nextcloud.log
/mnt/dietpi-backup/dietpi-backup_system/var/www/nextcloud/data/nextcloud.log
/mnt/dietpi-backup/dietpi-backup_userdata/nextcloud_data/nextcloud.log
/mnt/dietpi-backup/data/var/www/nextcloud/data/nextcloud.log
/mnt/dietpi-backup/data/datastore/nextcloud.log
/mnt/dietpi-backup/data/mnt/dietpi_userdata/nextcloud_data/nextcloud.log
/mnt/dietpi_userdata/nextcloud_data/nextcloud.log
root@DietPi:~# echo success > /var/www/nextcloud/index.htm
root@DietPi:~# curl -ILk https://192.168.0.33/index.htm
HTTP/1.1 500 Internal Server Error
Date: Mon, 05 Oct 2020 06:51:27 GMT
Server: Apache/2.4.25 (Raspbian)
Strict-Transport-Security: max-age=31536000
Referrer-Policy: no-referrer
X-Content-Type-Options: nosniff
X-Download-Options: noopen
X-Frame-Options: SAMEORIGIN
X-Permitted-Cross-Domain-Policies: none
X-Robots-Tag: none
X-XSS-Protection: 1; mode=block
Connection: close
Content-Type: text/plain; charset=utf-8

There are a few error messages in your Apache log, but those are truncated. Can you please paste those again:

tail -10 /var/log/apache2/error.log

Although it should not cause issues, please edit your /etc/apache2/sites-available/000-default-le-ssl.conf and replace the two lines:

ServerName nextcloud-myweb.ddns.net/
ServerName nextcloud-myweb.ddns.net/

with the single line:

ServerName nextcloud-myweb.ddns.net

and in /etc/apache2/sites-available/000-default.conf replace:

ServerName nextcloud-myweb.ddns.net/

with:

ServerName nextcloud-myweb.ddns.net

The trailing slash does not belong there, I accidentally added it with my instructions above, sorry for that.

voici

root@DietPi:~# tail -10 /var/log/apache2/error.log
[Mon Oct 05 17:27:13.716599 2020] [mpm_prefork:notice] [pid 871] AH00163 : Configuration d'Apache /2.4.25 (Raspbian) OpenSSL/1.0.2u -- reprise des opérations normales
[Mon Oct 05 17:27:13.716805 2020] [core:notice] [pid 871] AH00094 : Ligne de commande : '/usr/sbin/apache2
root@DietPi:~#

I have a lot of errors if we can't solve the problem the best thing to do is to reinstall everything and back up my documents?

root@DietPi:~# /etc/apache2/sites-available/000-default-le-ssl.conf
-bash: /etc/apache2/sites-available/000-default-le-ssl.conf: Permission non accordée
root@DietPi:~# ServerName nextcloud-myweb.ddns.net/
-bash: ServerName : commande introuvable
root@DietPi:~# ServerName nextcloud-myweb.ddns.net/
-bash: ServerName : commande introuvable
root@DietPi:~# /etc/apache2/sites-available/000-default-le-ssl.conf
-bash: /etc/apache2/sites-available/000-default-le-ssl.conf: Permission non accordée
root@DietPi:~# ServerName nextcloud-myweb.ddns.net
-bash: ServerName : commande introuvable
root@DietPi:~# /etc/apache2/sites-available/000-default.conf
-bash: /etc/apache2/sites-available/000-default.conf: Permission non accordée
root@DietPi:~# ServerName nextcloud-myweb.ddns.net/
-bash: ServerName : commande introuvable
root@DietPi:~# ServerName nextcloud-myweb.ddns.net
-bash: ServerName : commande introuvable
root@DietPi:~#

Ayayay, you are trying to execute the config file and the Apache2 config directive from console, that is of course not possible 😄. Okay lets do this via sed:

sed -i '/ServerName/d' /etc/apache2/sites-available/000-default{,-le-ssl}.conf
systemctl restart apache2

This only removes the directive from those two config files, but that is perfectly fine since apache2.conf contains it globally and we don't need to complicate things 😉.

Starting from scratch is an option, but in case of Nextcloud, without doing a proper database dump and import on the new system, this means all meta data is lost. Aside of that your Nextcloud will be accessible again only via nextcloud-myweb.ddns.net/nextcloud. Since it was failing only on a single client, if I understood you correctly, I'd prefer to have a closer look on that.

You webserver logs actually don't show any errors anymore. Can you try to access Nextcloud again (which the client that didn't work so far) and check again:

tail -10 /var/log/apache2/error.log
tail -10 /datastore/nextcloud.log

And are you able to open your browser console and check it for errors when accessing Nextcloud? If it was MacOS, then Safari, I guess? https://appuals.com/open-browser-console/ at the bottom is explained how to access the error console in Safari, How to Open the Console on Google Safari header. ("Google Safari" 🤣, a typo in that guide)

root@DietPi:~# sed -i '/ServerName/d' /etc/apache2/sites-available/000-default{,-le-ssl}.conf
root@DietPi:~# systemctl restart apache2
root@DietPi:~# tail -10 /var/log/apache2/error.log
[Mon Oct 05 18:21:35.353714 2020] [mpm_prefork:notice] [pid 871] AH00169: caught SIGTERM, shutting down
[Mon Oct 05 18:21:35.795604 2020] [mpm_prefork:notice] [pid 1479] AH00163: Apache/2.4.25 (Raspbian) OpenSSL/1.0.2u configured -- resuming normal operations
[Mon Oct 05 18:21:35.795794 2020] [core:notice] [pid 1479] AH00094: Command line : '/usr/sbin/apache2'
root@DietPi:~# tail -10 /datastore/nextcloud.log
{"reqId":"7WZn2plLltOELEwIFWFp","level":3,"time":"2020-10-05T16:14:03+00:00","remoteAddr":"216.21.170.196","user":"--","app":"PHP","method":"GET","url":"\/nextcloud","message":"stat(): stat failed for \/datastore\/appdata_oc5cbhxlsgns\/js\/core\/merged-template-prepend.js.deps at \/var\/www\/nextcloud\/lib\/private\/Files\/Storage\/Local.php#143","userAgent":"Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/84.0.4147.135 Safari\/537.36","version":"17.0.3.1"}
{"reqId":"7WZn2plLltOELEwIFWFp","level":3,"time":"2020-10-05T16:14:03+00:00","remoteAddr":"216.21.170.196","user":"--","app":"PHP","method":"GET","url":"\/nextcloud","message":"filesize(): stat failed for \/datastore\/appdata_oc5cbhxlsgns\/js\/core\/merged-template-prepend.js.deps at \/var\/www\/nextcloud\/lib\/private\/LargeFileHelper.php#171","userAgent":"Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/84.0.4147.135 Safari\/537.36","version":"17.0.3.1"}
{"reqId":"7WZn2plLltOELEwIFWFp","level":3,"time":"2020-10-05T16:14:03+00:00","remoteAddr":"216.21.170.196","user":"--","app":"PHP","method":"GET","url":"\/nextcloud","message":"file_put_contents(\/datastore\/appdata_oc5cbhxlsgns\/js\/core\/merged-template-prepend.js): failed to open stream: No such file or directory at \/var\/www\/nextcloud\/lib\/private\/Files\/Storage\/Local.php#221","userAgent":"Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/84.0.4147.135 Safari\/537.36","version":"17.0.3.1"}
{"reqId":"7WZn2plLltOELEwIFWFp","level":3,"time":"2020-10-05T16:14:03+00:00","remoteAddr":"216.21.170.196","user":"--","app":"index","method":"GET","url":"\/nextcloud","message":{"Exception":"OCP\\Files\\GenericFileException","Message":"file_put_contents failed","Code":0,"Trace":[{"file":"\/var\/www\/nextcloud\/lib\/private\/Files\/SimpleFS\/SimpleFile.php","line":106,"function":"putContent","class":"OC\\Files\\Node\\File","type":"->","args":["\/**\n * @author Roeland Jago Douma <[email protected]>\n *\n * @copyright Copyright (c) 2015, ownCloud, Inc.\n * @license AGPL-3.0\n *\n * This code is free software: you can redistribute it and\/or modify\n * it under the terms of the GNU Affero General Public License, version 3,\n * as published by the Free Software Foundation.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License, version 3,\n * along with this program.  If not, see <http:\/\/www.gnu.org\/licenses\/>\n *\n *\/\n\n\/**\n * Namespace to hold functions related to convert mimetype to icons\n *\n * @namespace\n *\/\nOC.MimeType = {\n\n\t\/**\n\t * Cache that maps mimeTypes to icon urls\n\t *\/\n\t_mimeTypeIcons: {},\n\n\t\/**\n\t * Return the file icon we want to use for the given mimeType.\n\t * The file needs to be present in the supplied file list\n\t *\n\t * @param {string} mimeType The mimeType we want an icon for\n\t * @param {array} files The available icons in this theme\n\t * @return {string} The icon to use or null if there is no match\n\t *\/\n\t_getFile: function(mimeType, files) {\n\t\tvar icon = mimeType.replace(new RegExp('\/', 'g'), '-');\n\n\t\t\/\/ Generate path\n\t\tif (mimeType === 'dir' && $.inArray('folder', files) !== -1) {\n\t\t\treturn 'folder';\n\t\t} else if (mimeType === 'dir-encrypted' && $.inArray('folder-encrypted', files) !== -1) {\n\t\t\treturn 'folder-encrypted';\n\t\t} else if (mimeType === 'dir-shared' && $.inArray('folder-shared', files) !== -1) {\n\t\t\treturn 'folder-shared';\n\t\t} else if (mimeType === 'dir-public' && $.inArray('folder-public', files) !== -1) {\n\t\t\treturn 'folder-public';\n\t\t} else if (mimeType === 'dir-external' && $.inArray('folder-external', files) !== -1) {\n\t\t\treturn 'folder-external';\n\t\t} else if ($.inArray(icon, files) !== -1) {\n\t\t\treturn icon;\n\t\t} else if ($.inArray(icon.split('-')[0], files) !== -1) {\n\t\t\treturn icon.split('-')[0];\n\t\t} else if ($.inArray('file', files) !== -1) {\n\t\t\treturn 'file';\n\t\t}\n\n\t\treturn null;\n\t},\n\n\t\/**\n\t * Return the url to icon of the given mimeType\n\t *\n\t * @param {string} mimeType The mimeType to get the icon for\n\t * @return {string} Url to the icon for mimeType\n\t *\/\n\tgetIconUrl: function(mimeType) {\n\t\tif (_.isUndefined(mimeType)) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\twhile (mimeType in OC.MimeTypeList.aliases) {\n\t\t\tmimeType = OC.MimeTypeList.aliases[mimeType];\n\t\t}\n\t\tif (mimeType in OC.MimeType._mimeTypeIcons) {\n\t\t\treturn OC.MimeType._mimeTypeIcons[mimeType];\n\t\t}\n\n\t\t\/\/ First try to get the correct icon from the current theme\n\t\tvar gotIcon = null;\n\t\tvar path = '';\n\t\tif (OC.theme.folder !== '' && $.isArray(OC.MimeTypeList.themes[OC.theme.folder])) {\n\t\t\tpath = OC.getRootPath() + '\/themes\/' + OC.theme.folder + '\/core\/img\/filetypes\/';\n\t\t\tvar icon = OC.MimeType._getFile(mimeType, OC.MimeTypeList.themes[OC.theme.folder]);\n\n\t\t\tif (icon !== null) {\n\t\t\t\tgotIcon = true;\n\t\t\t\tpath += icon;\n\t\t\t}\n\t\t}\n\t\tif(OCA.Theming && gotIcon === null) {\n\t\t\tpath = OC.generateUrl('\/apps\/theming\/img\/core\/filetypes\/');\n\t\t\tpath += OC.MimeType._getFile(mimeType, OC.MimeTypeList.files);\n\t\t\tgotIcon = true;\n\t\t}\n\n\t\t\/\/ If we do not yet have an icon fall back to the default\n\t\tif (gotIcon === null) {\n\t\t\tpath = OC.getRootPath() + '\/core\/img\/filetypes\/';\n\t\t\tpath += OC.MimeType._getFile(mimeType, OC.MimeTypeList.files);\n\t\t}\n\n\t\tpath += '.svg';\n\n\t\tif(OCA.Theming) {\n\t\t\tpath += \"?v=\" + OCA.Theming.cacheBuster;\n\t\t}\n\n\t\t\/\/ Cache the result\n\t\tOC.MimeType._mimeTypeIcons[mimeType] = path;\n\t\treturn path;\n\t}\n\n};\n\n\n\/**\n* This file is automatically generated\n* DO NOT EDIT MANUALLY!\n*\n* You can update the list of MimeType Aliases in config\/mimetypealiases.json\n* The list of files is fetched from core\/img\/filetypes\n* To regenerate this file run .\/occ maintenance:mimetype:update-js\n*\/\nOC.MimeTypeList={\n\taliases: {\n    \"application\/coreldraw\": \"image\",\n    \"application\/epub+zip\": \"text\",\n    \"application\/font-sfnt\": \"image\",\n    \"application\/font-woff\": \"image\",\n    \"application\/gpx+xml\": \"location\",\n    \"application\/illustrator\": \"image\",\n    \"application\/javascript\": \"text\/code\",\n    \"application\/json\": \"text\/code\",\n    \"application\/msaccess\": \"file\",\n    \"application\/msexcel\": \"x-office\/spreadsheet\",\n    \"application\/msonenote\": \"x-office\/document\",\n    \"application\/mspowerpoint\": \"x-office\/presentation\",\n    \"application\/msword\": \"x-office\/document\",\n    \"application\/octet-stream\": \"file\",\n    \"application\/postscript\": \"image\",\n    \"application\/rss+xml\": \"application\/xml\",\n    \"application\/vnd.android.package-archive\": \"package\/x-generic\",\n    \"application\/vnd.lotus-wordpro\": \"x-office\/document\",\n    \"application\/vnd.garmin.tcx+xml\": \"location\",\n    \"application\/vnd.google-earth.kml+xml\": \"location\",\n    \"application\/vnd.google-earth.kmz\": \"location\",\n    \"application\/vnd.ms-excel\": \"x-office\/spreadsheet\",\n    \"application\/vnd.ms-excel.addin.macroEnabled.12\": \"x-office\/spreadsheet\",\n    \"application\/vnd.ms-excel.sheet.binary.macroEnabled.12\": \"x-office\/spreadsheet\",\n    \"application\/vnd.ms-excel.sheet.macroEnabled.12\": \"x-office\/spreadsheet\",\n    \"application\/vnd.ms-excel.template.macroEnabled.12\": \"x-office\/spreadsheet\",\n    \"application\/vnd.ms-fontobject\": \"image\",\n    \"application\/vnd.ms-powerpoint\": \"x-office\/presentation\",\n    \"application\/vnd.ms-powerpoint.addin.macroEnabled.12\": \"x-office\/presentation\",\n    \"application\/vnd.ms-powerpoint.presentation.macroEnabled.12\": \"x-office\/presentation\",\n    \"application\/vnd.ms-powerpoint.slideshow.macroEnabled.12\": \"x-office\/presentation\",\n    \"application\/vnd.ms-powerpoint.template.macroEnabled.12\": \"x-office\/presentation\",\n    \"application\/vnd.ms-visio.drawing.macroEnabled.12\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-visio.drawing\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-visio.stencil.macroEnabled.12\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-visio.stencil\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-visio.template.macroEnabled.12\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-visio.template\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-word.document.macroEnabled.12\": \"x-office\/document\",\n    \"application\/vnd.ms-word.template.macroEnabled.12\": \"x-office\/document\",\n    \"application\/vnd.oasis.opendocument.presentation\": \"x-office\/presentation\",\n    \"application\/vnd.oasis.opendocument.presentation-template\": \"x-office\/presentation\",\n    \"application\/vnd.oasis.opendocument.spreadsheet\": \"x-office\/spreadsheet\",\n    \"application\/vnd.oasis.opendocument.spreadsheet-template\": \"x-office\/spreadsheet\",\n    \"application\/vnd.oasis.opendocument.text\": \"x-office\/document\",\n    \"application\/vnd.oasis.opendocument.text-master\": \"x-office\/document\",\n    \"application\/vnd.oasis.opendocument.text-template\": \"x-office\/document\",\n    \"application\/vnd.oasis.opendocument.text-web\": \"x-office\/document\",\n    \"application\/vnd.openxmlformats-officedocument.presentationml.presentation\": \"x-office\/presentation\",\n    \"application\/vnd.openxmlformats-officedocument.presentationml.slideshow\": \"x-office\/presentation\",\n    \"application\/vnd.openxmlformats-officedocument.presentationml.template\": \"x-office\/presentation\",\n    \"application\/vnd.openxmlformats-officedocument.spreadsheetml.sheet\": \"x-office\/spreadsheet\",\n    \"application\/vnd.openxmlformats-officedocument.spreadsheetml.template\": \"x-office\/spreadsheet\",\n    \"application\/vnd.openxmlformats-officedocument.wordprocessingml.document\": \"x-office\/document\",\n    \"application\/vnd.openxmlformats-officedocument.wordprocessingml.template\": \"x-office\/document\",\n    \"application\/vnd.visio\": \"x-office\/document\",\n    \"application\/vnd.wordperfect\": \"x-office\/document\",\n    \"application\/x-7z-compressed\": \"package\/x-generic\",\n    \"application\/x-bzip2\": \"package\/x-generic\",\n    \"application\/x-cbr\": \"text\",\n    \"application\/x-compressed\": \"package\/x-generic\",\n    \"application\/x-dcraw\": \"image\",\n    \"application\/x-deb\": \"package\/x-generic\",\n    \"application\/x-fictionbook+xml\": \"text\",\n    \"application\/x-font\": \"image\",\n    \"application\/x-gimp\": \"image\",\n    \"application\/x-gzip\": \"package\/x-generic\",\n    \"application\/x-iwork-keynote-sffkey\": \"x-office\/presentation\",\n    \"application\/x-iwork-numbers-sffnumbers\": \"x-office\/spreadsheet\",\n    \"application\/x-iwork-pages-sffpages\": \"x-office\/document\",\n    \"application\/x-mobipocket-ebook\": \"text\",\n    \"application\/x-perl\": \"text\/code\",\n    \"application\/x-photoshop\": \"image\",\n    \"application\/x-php\": \"text\/code\",\n    \"application\/x-rar-compressed\": \"package\/x-generic\",\n    \"application\/x-tar\": \"package\/x-generic\",\n    \"application\/x-tex\": \"text\",\n    \"application\/xml\": \"text\/html\",\n    \"application\/yaml\": \"text\/code\",\n    \"application\/zip\": \"package\/x-generic\",\n    \"database\": \"file\",\n    \"httpd\/unix-directory\": \"dir\",\n    \"text\/css\": \"text\/code\",\n    \"text\/csv\": \"x-office\/spreadsheet\",\n    \"text\/html\": \"text\/code\",\n    \"text\/x-c\": \"text\/code\",\n    \"text\/x-c++src\": \"text\/code\",\n    \"text\/x-h\": \"text\/code\",\n    \"text\/x-java-source\": \"text\/code\",\n    \"text\/x-ldif\": \"text\/code\",\n    \"text\/x-python\": \"text\/code\",\n    \"text\/x-shellscript\": \"text\/code\",\n    \"web\": \"text\/code\",\n    \"application\/internet-shortcut\": \"link\"\n},\n\tfiles: [\n    \"application\",\n    \"application-pdf\",\n    \"audio\",\n    \"file\",\n    \"folder\",\n    \"folder-drag-accept\",\n    \"folder-encrypted\",\n    \"folder-external\",\n    \"folder-public\",\n    \"folder-shared\",\n    \"folder-starred\",\n    \"image\",\n    \"link\",\n    \"location\",\n    \"package-x-generic\",\n    \"text\",\n    \"text-calendar\",\n    \"text-code\",\n    \"text-vcard\",\n    \"video\",\n    \"x-office-document\",\n    \"x-office-presentation\",\n    \"x-office-spreadsheet\"\n],\n\tthemes: []\n};\n\n\n\/*\n * Copyright (c) 2015\n *\n * This file is licensed under the Affero General Public License version 3\n * or later.\n *\n * See the COPYING-README file.\n *\n *\/\n\n\/* global Select2 *\/\n\n\/**\n * Select2 extension for toggling values in a multi-select dropdown\n *\/\n(function(Select2) {\n\n\tvar Select2FindHighlightableChoices = Select2.class.multi.prototype.findHighlightableChoices;\n\tSelect2.class.multi.prototype.findHighlightableChoices = function () {\n\t\tif (this.opts.toggleSelect) {\n\t\t\treturn this.results.find('.select2-result-selectable:not(.select2-disabled)');\n\t\t}\n\t\treturn Select2FindHighlightableChoices.apply(this, arguments);\n\t};\n\n\tvar Select2TriggerSelect = Select2.class.multi.prototype.triggerSelect;\n\tSelect2.class.multi.prototype.triggerSelect = function (data) {\n\t\tif (this.opts.toggleSelect && this.val().indexOf(this.id(data)) !== -1) {\n\t\t\tvar self = this;\n\t\t\tvar val = this.id(data);\n\n\t\t\tvar selectionEls = this.container.find('.select2-search-choice').filter(function() {\n\t\t\t\treturn (self.id($(this).data('select2-data')) === val);\n\t\t\t});\n\n\t\t\tif (this.unselect(selectionEls)) {\n\t\t\t\t\/\/ also unselect in dropdown\n\t\t\t\tthis.results.find('.select2-result.select2-selected').each(function () {\n\t\t\t\t\tvar $this = $(this);\n\t\t\t\t\tif (self.id($this.data('select2-data')) === val) {\n\t\t\t\t\t\t$this.removeClass('select2-selected');\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t\tthis.clearSearch();\n\t\t\t}\n\n\t\t\treturn false;\n\t\t} else {\n\t\t\treturn Select2TriggerSelect.apply(this, arguments);\n\t\t}\n\t};\n\n})(Select2);\n\n\n\n"]},{"file":"\/var\/www\/nextcloud\/lib\/private\/Template\/JSCombiner.php","line":194,"function":"putContent","class":"OC\\Files\\SimpleFS\\SimpleFile","type":"->","args":["\/**\n * @author Roeland Jago Douma <[email protected]>\n *\n * @copyright Copyright (c) 2015, ownCloud, Inc.\n * @license AGPL-3.0\n *\n * This code is free software: you can redistribute it and\/or modify\n * it under the terms of the GNU Affero General Public License, version 3,\n * as published by the Free Software Foundation.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License, version 3,\n * along with this program.  If not, see <http:\/\/www.gnu.org\/licenses\/>\n *\n *\/\n\n\/**\n * Namespace to hold functions related to convert mimetype to icons\n *\n * @namespace\n *\/\nOC.MimeType = {\n\n\t\/**\n\t * Cache that maps mimeTypes to icon urls\n\t *\/\n\t_mimeTypeIcons: {},\n\n\t\/**\n\t * Return the file icon we want to use for the given mimeType.\n\t * The file needs to be present in the supplied file list\n\t *\n\t * @param {string} mimeType The mimeType we want an icon for\n\t * @param {array} files The available icons in this theme\n\t * @return {string} The icon to use or null if there is no match\n\t *\/\n\t_getFile: function(mimeType, files) {\n\t\tvar icon = mimeType.replace(new RegExp('\/', 'g'), '-');\n\n\t\t\/\/ Generate path\n\t\tif (mimeType === 'dir' && $.inArray('folder', files) !== -1) {\n\t\t\treturn 'folder';\n\t\t} else if (mimeType === 'dir-encrypted' && $.inArray('folder-encrypted', files) !== -1) {\n\t\t\treturn 'folder-encrypted';\n\t\t} else if (mimeType === 'dir-shared' && $.inArray('folder-shared', files) !== -1) {\n\t\t\treturn 'folder-shared';\n\t\t} else if (mimeType === 'dir-public' && $.inArray('folder-public', files) !== -1) {\n\t\t\treturn 'folder-public';\n\t\t} else if (mimeType === 'dir-external' && $.inArray('folder-external', files) !== -1) {\n\t\t\treturn 'folder-external';\n\t\t} else if ($.inArray(icon, files) !== -1) {\n\t\t\treturn icon;\n\t\t} else if ($.inArray(icon.split('-')[0], files) !== -1) {\n\t\t\treturn icon.split('-')[0];\n\t\t} else if ($.inArray('file', files) !== -1) {\n\t\t\treturn 'file';\n\t\t}\n\n\t\treturn null;\n\t},\n\n\t\/**\n\t * Return the url to icon of the given mimeType\n\t *\n\t * @param {string} mimeType The mimeType to get the icon for\n\t * @return {string} Url to the icon for mimeType\n\t *\/\n\tgetIconUrl: function(mimeType) {\n\t\tif (_.isUndefined(mimeType)) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\twhile (mimeType in OC.MimeTypeList.aliases) {\n\t\t\tmimeType = OC.MimeTypeList.aliases[mimeType];\n\t\t}\n\t\tif (mimeType in OC.MimeType._mimeTypeIcons) {\n\t\t\treturn OC.MimeType._mimeTypeIcons[mimeType];\n\t\t}\n\n\t\t\/\/ First try to get the correct icon from the current theme\n\t\tvar gotIcon = null;\n\t\tvar path = '';\n\t\tif (OC.theme.folder !== '' && $.isArray(OC.MimeTypeList.themes[OC.theme.folder])) {\n\t\t\tpath = OC.getRootPath() + '\/themes\/' + OC.theme.folder + '\/core\/img\/filetypes\/';\n\t\t\tvar icon = OC.MimeType._getFile(mimeType, OC.MimeTypeList.themes[OC.theme.folder]);\n\n\t\t\tif (icon !== null) {\n\t\t\t\tgotIcon = true;\n\t\t\t\tpath += icon;\n\t\t\t}\n\t\t}\n\t\tif(OCA.Theming && gotIcon === null) {\n\t\t\tpath = OC.generateUrl('\/apps\/theming\/img\/core\/filetypes\/');\n\t\t\tpath += OC.MimeType._getFile(mimeType, OC.MimeTypeList.files);\n\t\t\tgotIcon = true;\n\t\t}\n\n\t\t\/\/ If we do not yet have an icon fall back to the default\n\t\tif (gotIcon === null) {\n\t\t\tpath = OC.getRootPath() + '\/core\/img\/filetypes\/';\n\t\t\tpath += OC.MimeType._getFile(mimeType, OC.MimeTypeList.files);\n\t\t}\n\n\t\tpath += '.svg';\n\n\t\tif(OCA.Theming) {\n\t\t\tpath += \"?v=\" + OCA.Theming.cacheBuster;\n\t\t}\n\n\t\t\/\/ Cache the result\n\t\tOC.MimeType._mimeTypeIcons[mimeType] = path;\n\t\treturn path;\n\t}\n\n};\n\n\n\/**\n* This file is automatically generated\n* DO NOT EDIT MANUALLY!\n*\n* You can update the list of MimeType Aliases in config\/mimetypealiases.json\n* The list of files is fetched from core\/img\/filetypes\n* To regenerate this file run .\/occ maintenance:mimetype:update-js\n*\/\nOC.MimeTypeList={\n\taliases: {\n    \"application\/coreldraw\": \"image\",\n    \"application\/epub+zip\": \"text\",\n    \"application\/font-sfnt\": \"image\",\n    \"application\/font-woff\": \"image\",\n    \"application\/gpx+xml\": \"location\",\n    \"application\/illustrator\": \"image\",\n    \"application\/javascript\": \"text\/code\",\n    \"application\/json\": \"text\/code\",\n    \"application\/msaccess\": \"file\",\n    \"application\/msexcel\": \"x-office\/spreadsheet\",\n    \"application\/msonenote\": \"x-office\/document\",\n    \"application\/mspowerpoint\": \"x-office\/presentation\",\n    \"application\/msword\": \"x-office\/document\",\n    \"application\/octet-stream\": \"file\",\n    \"application\/postscript\": \"image\",\n    \"application\/rss+xml\": \"application\/xml\",\n    \"application\/vnd.android.package-archive\": \"package\/x-generic\",\n    \"application\/vnd.lotus-wordpro\": \"x-office\/document\",\n    \"application\/vnd.garmin.tcx+xml\": \"location\",\n    \"application\/vnd.google-earth.kml+xml\": \"location\",\n    \"application\/vnd.google-earth.kmz\": \"location\",\n    \"application\/vnd.ms-excel\": \"x-office\/spreadsheet\",\n    \"application\/vnd.ms-excel.addin.macroEnabled.12\": \"x-office\/spreadsheet\",\n    \"application\/vnd.ms-excel.sheet.binary.macroEnabled.12\": \"x-office\/spreadsheet\",\n    \"application\/vnd.ms-excel.sheet.macroEnabled.12\": \"x-office\/spreadsheet\",\n    \"application\/vnd.ms-excel.template.macroEnabled.12\": \"x-office\/spreadsheet\",\n    \"application\/vnd.ms-fontobject\": \"image\",\n    \"application\/vnd.ms-powerpoint\": \"x-office\/presentation\",\n    \"application\/vnd.ms-powerpoint.addin.macroEnabled.12\": \"x-office\/presentation\",\n    \"application\/vnd.ms-powerpoint.presentation.macroEnabled.12\": \"x-office\/presentation\",\n    \"application\/vnd.ms-powerpoint.slideshow.macroEnabled.12\": \"x-office\/presentation\",\n    \"application\/vnd.ms-powerpoint.template.macroEnabled.12\": \"x-office\/presentation\",\n    \"application\/vnd.ms-visio.drawing.macroEnabled.12\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-visio.drawing\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-visio.stencil.macroEnabled.12\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-visio.stencil\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-visio.template.macroEnabled.12\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-visio.template\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-word.document.macroEnabled.12\": \"x-office\/document\",\n    \"application\/vnd.ms-word.template.macroEnabled.12\": \"x-office\/document\",\n    \"application\/vnd.oasis.opendocument.presentation\": \"x-office\/presentation\",\n    \"application\/vnd.oasis.opendocument.presentation-template\": \"x-office\/presentation\",\n    \"application\/vnd.oasis.opendocument.spreadsheet\": \"x-office\/spreadsheet\",\n    \"application\/vnd.oasis.opendocument.spreadsheet-template\": \"x-office\/spreadsheet\",\n    \"application\/vnd.oasis.opendocument.text\": \"x-office\/document\",\n    \"application\/vnd.oasis.opendocument.text-master\": \"x-office\/document\",\n    \"application\/vnd.oasis.opendocument.text-template\": \"x-office\/document\",\n    \"application\/vnd.oasis.opendocument.text-web\": \"x-office\/document\",\n    \"application\/vnd.openxmlformats-officedocument.presentationml.presentation\": \"x-office\/presentation\",\n    \"application\/vnd.openxmlformats-officedocument.presentationml.slideshow\": \"x-office\/presentation\",\n    \"application\/vnd.openxmlformats-officedocument.presentationml.template\": \"x-office\/presentation\",\n    \"application\/vnd.openxmlformats-officedocument.spreadsheetml.sheet\": \"x-office\/spreadsheet\",\n    \"application\/vnd.openxmlformats-officedocument.spreadsheetml.template\": \"x-office\/spreadsheet\",\n    \"application\/vnd.openxmlformats-officedocument.wordprocessingml.document\": \"x-office\/document\",\n    \"application\/vnd.openxmlformats-officedocument.wordprocessingml.template\": \"x-office\/document\",\n    \"application\/vnd.visio\": \"x-office\/document\",\n    \"application\/vnd.wordperfect\": \"x-office\/document\",\n    \"application\/x-7z-compressed\": \"package\/x-generic\",\n    \"application\/x-bzip2\": \"package\/x-generic\",\n    \"application\/x-cbr\": \"text\",\n    \"application\/x-compressed\": \"package\/x-generic\",\n    \"application\/x-dcraw\": \"image\",\n    \"application\/x-deb\": \"package\/x-generic\",\n    \"application\/x-fictionbook+xml\": \"text\",\n    \"application\/x-font\": \"image\",\n    \"application\/x-gimp\": \"image\",\n    \"application\/x-gzip\": \"package\/x-generic\",\n    \"application\/x-iwork-keynote-sffkey\": \"x-office\/presentation\",\n    \"application\/x-iwork-numbers-sffnumbers\": \"x-office\/spreadsheet\",\n    \"application\/x-iwork-pages-sffpages\": \"x-office\/document\",\n    \"application\/x-mobipocket-ebook\": \"text\",\n    \"application\/x-perl\": \"text\/code\",\n    \"application\/x-photoshop\": \"image\",\n    \"application\/x-php\": \"text\/code\",\n    \"application\/x-rar-compressed\": \"package\/x-generic\",\n    \"application\/x-tar\": \"package\/x-generic\",\n    \"application\/x-tex\": \"text\",\n    \"application\/xml\": \"text\/html\",\n    \"application\/yaml\": \"text\/code\",\n    \"application\/zip\": \"package\/x-generic\",\n    \"database\": \"file\",\n    \"httpd\/unix-directory\": \"dir\",\n    \"text\/css\": \"text\/code\",\n    \"text\/csv\": \"x-office\/spreadsheet\",\n    \"text\/html\": \"text\/code\",\n    \"text\/x-c\": \"text\/code\",\n    \"text\/x-c++src\": \"text\/code\",\n    \"text\/x-h\": \"text\/code\",\n    \"text\/x-java-source\": \"text\/code\",\n    \"text\/x-ldif\": \"text\/code\",\n    \"text\/x-python\": \"text\/code\",\n    \"text\/x-shellscript\": \"text\/code\",\n    \"web\": \"text\/code\",\n    \"application\/internet-shortcut\": \"link\"\n},\n\tfiles: [\n    \"application\",\n    \"application-pdf\",\n    \"audio\",\n    \"file\",\n    \"folder\",\n    \"folder-drag-accept\",\n    \"folder-encrypted\",\n    \"folder-external\",\n    \"folder-public\",\n    \"folder-shared\",\n    \"folder-starred\",\n    \"image\",\n    \"link\",\n    \"location\",\n    \"package-x-generic\",\n    \"text\",\n    \"text-calendar\",\n    \"text-code\",\n    \"text-vcard\",\n    \"video\",\n    \"x-office-document\",\n    \"x-office-presentation\",\n    \"x-office-spreadsheet\"\n],\n\tthemes: []\n};\n\n\n\/*\n * Copyright (c) 2015\n *\n * This file is licensed under the Affero General Public License version 3\n * or later.\n *\n * See the COPYING-README file.\n *\n *\/\n\n\/* global Select2 *\/\n\n\/**\n * Select2 extension for toggling values in a multi-select dropdown\n *\/\n(function(Select2) {\n\n\tvar Select2FindHighlightableChoices = Select2.class.multi.prototype.findHighlightableChoices;\n\tSelect2.class.multi.prototype.findHighlightableChoices = function () {\n\t\tif (this.opts.toggleSelect) {\n\t\t\treturn this.results.find('.select2-result-selectable:not(.select2-disabled)');\n\t\t}\n\t\treturn Select2FindHighlightableChoices.apply(this, arguments);\n\t};\n\n\tvar Select2TriggerSelect = Select2.class.multi.prototype.triggerSelect;\n\tSelect2.class.multi.prototype.triggerSelect = function (data) {\n\t\tif (this.opts.toggleSelect && this.val().indexOf(this.id(data)) !== -1) {\n\t\t\tvar self = this;\n\t\t\tvar val = this.id(data);\n\n\t\t\tvar selectionEls = this.container.find('.select2-search-choice').filter(function() {\n\t\t\t\treturn (self.id($(this).data('select2-data')) === val);\n\t\t\t});\n\n\t\t\tif (this.unselect(selectionEls)) {\n\t\t\t\t\/\/ also unselect in dropdown\n\t\t\t\tthis.results.find('.select2-result.select2-selected').each(function () {\n\t\t\t\t\tvar $this = $(this);\n\t\t\t\t\tif (self.id($this.data('select2-data')) === val) {\n\t\t\t\t\t\t$this.removeClass('select2-selected');\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t\tthis.clearSearch();\n\t\t\t}\n\n\t\t\treturn false;\n\t\t} else {\n\t\t\treturn Select2TriggerSelect.apply(this, arguments);\n\t\t}\n\t};\n\n})(Select2);\n\n\n\n"]},{"file":"\/var\/www\/nextcloud\/lib\/private\/Template\/JSCombiner.php","line":103,"function":"cache","class":"OC\\Template\\JSCombiner","type":"->","args":["\/var\/www\/nextcloud\/core\/js","merged-template-prepend.js",{"__class__":"OC\\Files\\SimpleFS\\SimpleFolder"}]},{"file":"\/var\/www\/nextcloud\/lib\/private\/Template\/JSResourceLocator.php","line":114,"function":"process","class":"OC\\Template\\JSCombiner","type":"->","args":["\/var\/www\/nextcloud","core\/js\/merged-template-prepend.json","core"]},{"file":"\/var\/www\/nextcloud\/lib\/private\/Template\/JSResourceLocator.php","line":70,"function":"cacheAndAppendCombineJsonIfExist","class":"OC\\Template\\JSResourceLocator","type":"->","args":["\/var\/www\/nextcloud","core\/js\/merged-template-prepend.json"]},{"file":"\/var\/www\/nextcloud\/lib\/private\/Template\/ResourceLocator.php","line":78,"function":"doFind","class":"OC\\Template\\JSResourceLocator","type":"->","args":["js\/merged-template-prepend"]},{"file":"\/var\/www\/nextcloud\/lib\/private\/TemplateLayout.php","line":341,"function":"find","class":"OC\\Template\\ResourceLocator","type":"->","args":[["core\/js\/dist\/main","js\/merged-template-prepend","search\/js\/search","core\/l10n\/en","search\/l10n\/en","search\/js\/searchprovider","js\/files\/fileinfo","js\/files\/client","js\/dist\/maintenance"]]},{"file":"\/var\/www\/nextcloud\/lib\/private\/TemplateLayout.php","line":169,"function":"findJavascriptFiles","class":"OC\\TemplateLayout","type":"::","args":[["core\/js\/dist\/main","js\/merged-template-prepend","search\/js\/search","core\/l10n\/en","search\/l10n\/en","search\/js\/searchprovider","js\/files\/fileinfo","js\/files\/client","js\/dist\/maintenance"]]},{"file":"\/var\/www\/nextcloud\/lib\/private\/legacy\/template.php","line":183,"function":"__construct","class":"OC\\TemplateLayout","type":"->","args":["guest",""]},{"file":"\/var\/www\/nextcloud\/lib\/private\/Template\/Base.php","line":131,"function":"fetchPage","class":"OC_Template","type":"->","args":[]},{"file":"\/var\/www\/nextcloud\/lib\/base.php","line":297,"function":"printPage","class":"OC\\Template\\Base","type":"->","args":[]},{"file":"\/var\/www\/nextcloud\/lib\/base.php","line":945,"function":"checkMaintenanceMode","class":"OC","type":"::","args":[]},{"file":"\/var\/www\/nextcloud\/index.php","line":42,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"\/var\/www\/nextcloud\/lib\/private\/Files\/Node\/File.php","Line":67,"CustomMessage":"--"},"userAgent":"Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/84.0.4147.135 Safari\/537.36","version":"17.0.3.1"}
{"reqId":"7WZn2plLltOELEwIFWFp","level":3,"time":"2020-10-05T16:14:03+00:00","remoteAddr":"216.21.170.196","user":"--","app":"PHP","method":"GET","url":"\/nextcloud","message":"file_get_contents(\/datastore\/appdata_oc5cbhxlsgns\/js\/core\/merged-template-prepend.js.deps): failed to open stream: No such file or directory at \/var\/www\/nextcloud\/lib\/private\/Files\/Storage\/Local.php#217","userAgent":"Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/84.0.4147.135 Safari\/537.36","version":"17.0.3.1"}
{"reqId":"7WZn2plLltOELEwIFWFp","level":3,"time":"2020-10-05T16:14:03+00:00","remoteAddr":"216.21.170.196","user":"--","app":"PHP","method":"GET","url":"\/nextcloud","message":"stat(): stat failed for \/datastore\/appdata_oc5cbhxlsgns\/js\/core\/merged-template-prepend.js.deps at \/var\/www\/nextcloud\/lib\/private\/Files\/Storage\/Local.php#143","userAgent":"Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/84.0.4147.135 Safari\/537.36","version":"17.0.3.1"}
{"reqId":"7WZn2plLltOELEwIFWFp","level":3,"time":"2020-10-05T16:14:03+00:00","remoteAddr":"216.21.170.196","user":"--","app":"PHP","method":"GET","url":"\/nextcloud","message":"filesize(): stat failed for \/datastore\/appdata_oc5cbhxlsgns\/js\/core\/merged-template-prepend.js.deps at \/var\/www\/nextcloud\/lib\/private\/LargeFileHelper.php#171","userAgent":"Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/84.0.4147.135 Safari\/537.36","version":"17.0.3.1"}
{"reqId":"7WZn2plLltOELEwIFWFp","level":3,"time":"2020-10-05T16:14:03+00:00","remoteAddr":"216.21.170.196","user":"--","app":"PHP","method":"GET","url":"\/nextcloud","message":"file_put_contents(\/datastore\/appdata_oc5cbhxlsgns\/js\/core\/merged-template-prepend.js): failed to open stream: No such file or directory at \/var\/www\/nextcloud\/lib\/private\/Files\/Storage\/Local.php#221","userAgent":"Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/84.0.4147.135 Safari\/537.36","version":"17.0.3.1"}
{"reqId":"7WZn2plLltOELEwIFWFp","level":3,"time":"2020-10-05T16:14:03+00:00","remoteAddr":"216.21.170.196","user":"--","app":"core","method":"GET","url":"\/nextcloud","message":{"Exception":"OCP\\Files\\GenericFileException","Message":"file_put_contents failed","Code":0,"Trace":[{"file":"\/var\/www\/nextcloud\/lib\/private\/Files\/SimpleFS\/SimpleFile.php","line":106,"function":"putContent","class":"OC\\Files\\Node\\File","type":"->","args":["\/**\n * @author Roeland Jago Douma <[email protected]>\n *\n * @copyright Copyright (c) 2015, ownCloud, Inc.\n * @license AGPL-3.0\n *\n * This code is free software: you can redistribute it and\/or modify\n * it under the terms of the GNU Affero General Public License, version 3,\n * as published by the Free Software Foundation.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License, version 3,\n * along with this program.  If not, see <http:\/\/www.gnu.org\/licenses\/>\n *\n *\/\n\n\/**\n * Namespace to hold functions related to convert mimetype to icons\n *\n * @namespace\n *\/\nOC.MimeType = {\n\n\t\/**\n\t * Cache that maps mimeTypes to icon urls\n\t *\/\n\t_mimeTypeIcons: {},\n\n\t\/**\n\t * Return the file icon we want to use for the given mimeType.\n\t * The file needs to be present in the supplied file list\n\t *\n\t * @param {string} mimeType The mimeType we want an icon for\n\t * @param {array} files The available icons in this theme\n\t * @return {string} The icon to use or null if there is no match\n\t *\/\n\t_getFile: function(mimeType, files) {\n\t\tvar icon = mimeType.replace(new RegExp('\/', 'g'), '-');\n\n\t\t\/\/ Generate path\n\t\tif (mimeType === 'dir' && $.inArray('folder', files) !== -1) {\n\t\t\treturn 'folder';\n\t\t} else if (mimeType === 'dir-encrypted' && $.inArray('folder-encrypted', files) !== -1) {\n\t\t\treturn 'folder-encrypted';\n\t\t} else if (mimeType === 'dir-shared' && $.inArray('folder-shared', files) !== -1) {\n\t\t\treturn 'folder-shared';\n\t\t} else if (mimeType === 'dir-public' && $.inArray('folder-public', files) !== -1) {\n\t\t\treturn 'folder-public';\n\t\t} else if (mimeType === 'dir-external' && $.inArray('folder-external', files) !== -1) {\n\t\t\treturn 'folder-external';\n\t\t} else if ($.inArray(icon, files) !== -1) {\n\t\t\treturn icon;\n\t\t} else if ($.inArray(icon.split('-')[0], files) !== -1) {\n\t\t\treturn icon.split('-')[0];\n\t\t} else if ($.inArray('file', files) !== -1) {\n\t\t\treturn 'file';\n\t\t}\n\n\t\treturn null;\n\t},\n\n\t\/**\n\t * Return the url to icon of the given mimeType\n\t *\n\t * @param {string} mimeType The mimeType to get the icon for\n\t * @return {string} Url to the icon for mimeType\n\t *\/\n\tgetIconUrl: function(mimeType) {\n\t\tif (_.isUndefined(mimeType)) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\twhile (mimeType in OC.MimeTypeList.aliases) {\n\t\t\tmimeType = OC.MimeTypeList.aliases[mimeType];\n\t\t}\n\t\tif (mimeType in OC.MimeType._mimeTypeIcons) {\n\t\t\treturn OC.MimeType._mimeTypeIcons[mimeType];\n\t\t}\n\n\t\t\/\/ First try to get the correct icon from the current theme\n\t\tvar gotIcon = null;\n\t\tvar path = '';\n\t\tif (OC.theme.folder !== '' && $.isArray(OC.MimeTypeList.themes[OC.theme.folder])) {\n\t\t\tpath = OC.getRootPath() + '\/themes\/' + OC.theme.folder + '\/core\/img\/filetypes\/';\n\t\t\tvar icon = OC.MimeType._getFile(mimeType, OC.MimeTypeList.themes[OC.theme.folder]);\n\n\t\t\tif (icon !== null) {\n\t\t\t\tgotIcon = true;\n\t\t\t\tpath += icon;\n\t\t\t}\n\t\t}\n\t\tif(OCA.Theming && gotIcon === null) {\n\t\t\tpath = OC.generateUrl('\/apps\/theming\/img\/core\/filetypes\/');\n\t\t\tpath += OC.MimeType._getFile(mimeType, OC.MimeTypeList.files);\n\t\t\tgotIcon = true;\n\t\t}\n\n\t\t\/\/ If we do not yet have an icon fall back to the default\n\t\tif (gotIcon === null) {\n\t\t\tpath = OC.getRootPath() + '\/core\/img\/filetypes\/';\n\t\t\tpath += OC.MimeType._getFile(mimeType, OC.MimeTypeList.files);\n\t\t}\n\n\t\tpath += '.svg';\n\n\t\tif(OCA.Theming) {\n\t\t\tpath += \"?v=\" + OCA.Theming.cacheBuster;\n\t\t}\n\n\t\t\/\/ Cache the result\n\t\tOC.MimeType._mimeTypeIcons[mimeType] = path;\n\t\treturn path;\n\t}\n\n};\n\n\n\/**\n* This file is automatically generated\n* DO NOT EDIT MANUALLY!\n*\n* You can update the list of MimeType Aliases in config\/mimetypealiases.json\n* The list of files is fetched from core\/img\/filetypes\n* To regenerate this file run .\/occ maintenance:mimetype:update-js\n*\/\nOC.MimeTypeList={\n\taliases: {\n    \"application\/coreldraw\": \"image\",\n    \"application\/epub+zip\": \"text\",\n    \"application\/font-sfnt\": \"image\",\n    \"application\/font-woff\": \"image\",\n    \"application\/gpx+xml\": \"location\",\n    \"application\/illustrator\": \"image\",\n    \"application\/javascript\": \"text\/code\",\n    \"application\/json\": \"text\/code\",\n    \"application\/msaccess\": \"file\",\n    \"application\/msexcel\": \"x-office\/spreadsheet\",\n    \"application\/msonenote\": \"x-office\/document\",\n    \"application\/mspowerpoint\": \"x-office\/presentation\",\n    \"application\/msword\": \"x-office\/document\",\n    \"application\/octet-stream\": \"file\",\n    \"application\/postscript\": \"image\",\n    \"application\/rss+xml\": \"application\/xml\",\n    \"application\/vnd.android.package-archive\": \"package\/x-generic\",\n    \"application\/vnd.lotus-wordpro\": \"x-office\/document\",\n    \"application\/vnd.garmin.tcx+xml\": \"location\",\n    \"application\/vnd.google-earth.kml+xml\": \"location\",\n    \"application\/vnd.google-earth.kmz\": \"location\",\n    \"application\/vnd.ms-excel\": \"x-office\/spreadsheet\",\n    \"application\/vnd.ms-excel.addin.macroEnabled.12\": \"x-office\/spreadsheet\",\n    \"application\/vnd.ms-excel.sheet.binary.macroEnabled.12\": \"x-office\/spreadsheet\",\n    \"application\/vnd.ms-excel.sheet.macroEnabled.12\": \"x-office\/spreadsheet\",\n    \"application\/vnd.ms-excel.template.macroEnabled.12\": \"x-office\/spreadsheet\",\n    \"application\/vnd.ms-fontobject\": \"image\",\n    \"application\/vnd.ms-powerpoint\": \"x-office\/presentation\",\n    \"application\/vnd.ms-powerpoint.addin.macroEnabled.12\": \"x-office\/presentation\",\n    \"application\/vnd.ms-powerpoint.presentation.macroEnabled.12\": \"x-office\/presentation\",\n    \"application\/vnd.ms-powerpoint.slideshow.macroEnabled.12\": \"x-office\/presentation\",\n    \"application\/vnd.ms-powerpoint.template.macroEnabled.12\": \"x-office\/presentation\",\n    \"application\/vnd.ms-visio.drawing.macroEnabled.12\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-visio.drawing\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-visio.stencil.macroEnabled.12\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-visio.stencil\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-visio.template.macroEnabled.12\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-visio.template\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-word.document.macroEnabled.12\": \"x-office\/document\",\n    \"application\/vnd.ms-word.template.macroEnabled.12\": \"x-office\/document\",\n    \"application\/vnd.oasis.opendocument.presentation\": \"x-office\/presentation\",\n    \"application\/vnd.oasis.opendocument.presentation-template\": \"x-office\/presentation\",\n    \"application\/vnd.oasis.opendocument.spreadsheet\": \"x-office\/spreadsheet\",\n    \"application\/vnd.oasis.opendocument.spreadsheet-template\": \"x-office\/spreadsheet\",\n    \"application\/vnd.oasis.opendocument.text\": \"x-office\/document\",\n    \"application\/vnd.oasis.opendocument.text-master\": \"x-office\/document\",\n    \"application\/vnd.oasis.opendocument.text-template\": \"x-office\/document\",\n    \"application\/vnd.oasis.opendocument.text-web\": \"x-office\/document\",\n    \"application\/vnd.openxmlformats-officedocument.presentationml.presentation\": \"x-office\/presentation\",\n    \"application\/vnd.openxmlformats-officedocument.presentationml.slideshow\": \"x-office\/presentation\",\n    \"application\/vnd.openxmlformats-officedocument.presentationml.template\": \"x-office\/presentation\",\n    \"application\/vnd.openxmlformats-officedocument.spreadsheetml.sheet\": \"x-office\/spreadsheet\",\n    \"application\/vnd.openxmlformats-officedocument.spreadsheetml.template\": \"x-office\/spreadsheet\",\n    \"application\/vnd.openxmlformats-officedocument.wordprocessingml.document\": \"x-office\/document\",\n    \"application\/vnd.openxmlformats-officedocument.wordprocessingml.template\": \"x-office\/document\",\n    \"application\/vnd.visio\": \"x-office\/document\",\n    \"application\/vnd.wordperfect\": \"x-office\/document\",\n    \"application\/x-7z-compressed\": \"package\/x-generic\",\n    \"application\/x-bzip2\": \"package\/x-generic\",\n    \"application\/x-cbr\": \"text\",\n    \"application\/x-compressed\": \"package\/x-generic\",\n    \"application\/x-dcraw\": \"image\",\n    \"application\/x-deb\": \"package\/x-generic\",\n    \"application\/x-fictionbook+xml\": \"text\",\n    \"application\/x-font\": \"image\",\n    \"application\/x-gimp\": \"image\",\n    \"application\/x-gzip\": \"package\/x-generic\",\n    \"application\/x-iwork-keynote-sffkey\": \"x-office\/presentation\",\n    \"application\/x-iwork-numbers-sffnumbers\": \"x-office\/spreadsheet\",\n    \"application\/x-iwork-pages-sffpages\": \"x-office\/document\",\n    \"application\/x-mobipocket-ebook\": \"text\",\n    \"application\/x-perl\": \"text\/code\",\n    \"application\/x-photoshop\": \"image\",\n    \"application\/x-php\": \"text\/code\",\n    \"application\/x-rar-compressed\": \"package\/x-generic\",\n    \"application\/x-tar\": \"package\/x-generic\",\n    \"application\/x-tex\": \"text\",\n    \"application\/xml\": \"text\/html\",\n    \"application\/yaml\": \"text\/code\",\n    \"application\/zip\": \"package\/x-generic\",\n    \"database\": \"file\",\n    \"httpd\/unix-directory\": \"dir\",\n    \"text\/css\": \"text\/code\",\n    \"text\/csv\": \"x-office\/spreadsheet\",\n    \"text\/html\": \"text\/code\",\n    \"text\/x-c\": \"text\/code\",\n    \"text\/x-c++src\": \"text\/code\",\n    \"text\/x-h\": \"text\/code\",\n    \"text\/x-java-source\": \"text\/code\",\n    \"text\/x-ldif\": \"text\/code\",\n    \"text\/x-python\": \"text\/code\",\n    \"text\/x-shellscript\": \"text\/code\",\n    \"web\": \"text\/code\",\n    \"application\/internet-shortcut\": \"link\"\n},\n\tfiles: [\n    \"application\",\n    \"application-pdf\",\n    \"audio\",\n    \"file\",\n    \"folder\",\n    \"folder-drag-accept\",\n    \"folder-encrypted\",\n    \"folder-external\",\n    \"folder-public\",\n    \"folder-shared\",\n    \"folder-starred\",\n    \"image\",\n    \"link\",\n    \"location\",\n    \"package-x-generic\",\n    \"text\",\n    \"text-calendar\",\n    \"text-code\",\n    \"text-vcard\",\n    \"video\",\n    \"x-office-document\",\n    \"x-office-presentation\",\n    \"x-office-spreadsheet\"\n],\n\tthemes: []\n};\n\n\n\/*\n * Copyright (c) 2015\n *\n * This file is licensed under the Affero General Public License version 3\n * or later.\n *\n * See the COPYING-README file.\n *\n *\/\n\n\/* global Select2 *\/\n\n\/**\n * Select2 extension for toggling values in a multi-select dropdown\n *\/\n(function(Select2) {\n\n\tvar Select2FindHighlightableChoices = Select2.class.multi.prototype.findHighlightableChoices;\n\tSelect2.class.multi.prototype.findHighlightableChoices = function () {\n\t\tif (this.opts.toggleSelect) {\n\t\t\treturn this.results.find('.select2-result-selectable:not(.select2-disabled)');\n\t\t}\n\t\treturn Select2FindHighlightableChoices.apply(this, arguments);\n\t};\n\n\tvar Select2TriggerSelect = Select2.class.multi.prototype.triggerSelect;\n\tSelect2.class.multi.prototype.triggerSelect = function (data) {\n\t\tif (this.opts.toggleSelect && this.val().indexOf(this.id(data)) !== -1) {\n\t\t\tvar self = this;\n\t\t\tvar val = this.id(data);\n\n\t\t\tvar selectionEls = this.container.find('.select2-search-choice').filter(function() {\n\t\t\t\treturn (self.id($(this).data('select2-data')) === val);\n\t\t\t});\n\n\t\t\tif (this.unselect(selectionEls)) {\n\t\t\t\t\/\/ also unselect in dropdown\n\t\t\t\tthis.results.find('.select2-result.select2-selected').each(function () {\n\t\t\t\t\tvar $this = $(this);\n\t\t\t\t\tif (self.id($this.data('select2-data')) === val) {\n\t\t\t\t\t\t$this.removeClass('select2-selected');\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t\tthis.clearSearch();\n\t\t\t}\n\n\t\t\treturn false;\n\t\t} else {\n\t\t\treturn Select2TriggerSelect.apply(this, arguments);\n\t\t}\n\t};\n\n})(Select2);\n\n\n\n"]},{"file":"\/var\/www\/nextcloud\/lib\/private\/Template\/JSCombiner.php","line":194,"function":"putContent","class":"OC\\Files\\SimpleFS\\SimpleFile","type":"->","args":["\/**\n * @author Roeland Jago Douma <[email protected]>\n *\n * @copyright Copyright (c) 2015, ownCloud, Inc.\n * @license AGPL-3.0\n *\n * This code is free software: you can redistribute it and\/or modify\n * it under the terms of the GNU Affero General Public License, version 3,\n * as published by the Free Software Foundation.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License, version 3,\n * along with this program.  If not, see <http:\/\/www.gnu.org\/licenses\/>\n *\n *\/\n\n\/**\n * Namespace to hold functions related to convert mimetype to icons\n *\n * @namespace\n *\/\nOC.MimeType = {\n\n\t\/**\n\t * Cache that maps mimeTypes to icon urls\n\t *\/\n\t_mimeTypeIcons: {},\n\n\t\/**\n\t * Return the file icon we want to use for the given mimeType.\n\t * The file needs to be present in the supplied file list\n\t *\n\t * @param {string} mimeType The mimeType we want an icon for\n\t * @param {array} files The available icons in this theme\n\t * @return {string} The icon to use or null if there is no match\n\t *\/\n\t_getFile: function(mimeType, files) {\n\t\tvar icon = mimeType.replace(new RegExp('\/', 'g'), '-');\n\n\t\t\/\/ Generate path\n\t\tif (mimeType === 'dir' && $.inArray('folder', files) !== -1) {\n\t\t\treturn 'folder';\n\t\t} else if (mimeType === 'dir-encrypted' && $.inArray('folder-encrypted', files) !== -1) {\n\t\t\treturn 'folder-encrypted';\n\t\t} else if (mimeType === 'dir-shared' && $.inArray('folder-shared', files) !== -1) {\n\t\t\treturn 'folder-shared';\n\t\t} else if (mimeType === 'dir-public' && $.inArray('folder-public', files) !== -1) {\n\t\t\treturn 'folder-public';\n\t\t} else if (mimeType === 'dir-external' && $.inArray('folder-external', files) !== -1) {\n\t\t\treturn 'folder-external';\n\t\t} else if ($.inArray(icon, files) !== -1) {\n\t\t\treturn icon;\n\t\t} else if ($.inArray(icon.split('-')[0], files) !== -1) {\n\t\t\treturn icon.split('-')[0];\n\t\t} else if ($.inArray('file', files) !== -1) {\n\t\t\treturn 'file';\n\t\t}\n\n\t\treturn null;\n\t},\n\n\t\/**\n\t * Return the url to icon of the given mimeType\n\t *\n\t * @param {string} mimeType The mimeType to get the icon for\n\t * @return {string} Url to the icon for mimeType\n\t *\/\n\tgetIconUrl: function(mimeType) {\n\t\tif (_.isUndefined(mimeType)) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\twhile (mimeType in OC.MimeTypeList.aliases) {\n\t\t\tmimeType = OC.MimeTypeList.aliases[mimeType];\n\t\t}\n\t\tif (mimeType in OC.MimeType._mimeTypeIcons) {\n\t\t\treturn OC.MimeType._mimeTypeIcons[mimeType];\n\t\t}\n\n\t\t\/\/ First try to get the correct icon from the current theme\n\t\tvar gotIcon = null;\n\t\tvar path = '';\n\t\tif (OC.theme.folder !== '' && $.isArray(OC.MimeTypeList.themes[OC.theme.folder])) {\n\t\t\tpath = OC.getRootPath() + '\/themes\/' + OC.theme.folder + '\/core\/img\/filetypes\/';\n\t\t\tvar icon = OC.MimeType._getFile(mimeType, OC.MimeTypeList.themes[OC.theme.folder]);\n\n\t\t\tif (icon !== null) {\n\t\t\t\tgotIcon = true;\n\t\t\t\tpath += icon;\n\t\t\t}\n\t\t}\n\t\tif(OCA.Theming && gotIcon === null) {\n\t\t\tpath = OC.generateUrl('\/apps\/theming\/img\/core\/filetypes\/');\n\t\t\tpath += OC.MimeType._getFile(mimeType, OC.MimeTypeList.files);\n\t\t\tgotIcon = true;\n\t\t}\n\n\t\t\/\/ If we do not yet have an icon fall back to the default\n\t\tif (gotIcon === null) {\n\t\t\tpath = OC.getRootPath() + '\/core\/img\/filetypes\/';\n\t\t\tpath += OC.MimeType._getFile(mimeType, OC.MimeTypeList.files);\n\t\t}\n\n\t\tpath += '.svg';\n\n\t\tif(OCA.Theming) {\n\t\t\tpath += \"?v=\" + OCA.Theming.cacheBuster;\n\t\t}\n\n\t\t\/\/ Cache the result\n\t\tOC.MimeType._mimeTypeIcons[mimeType] = path;\n\t\treturn path;\n\t}\n\n};\n\n\n\/**\n* This file is automatically generated\n* DO NOT EDIT MANUALLY!\n*\n* You can update the list of MimeType Aliases in config\/mimetypealiases.json\n* The list of files is fetched from core\/img\/filetypes\n* To regenerate this file run .\/occ maintenance:mimetype:update-js\n*\/\nOC.MimeTypeList={\n\taliases: {\n    \"application\/coreldraw\": \"image\",\n    \"application\/epub+zip\": \"text\",\n    \"application\/font-sfnt\": \"image\",\n    \"application\/font-woff\": \"image\",\n    \"application\/gpx+xml\": \"location\",\n    \"application\/illustrator\": \"image\",\n    \"application\/javascript\": \"text\/code\",\n    \"application\/json\": \"text\/code\",\n    \"application\/msaccess\": \"file\",\n    \"application\/msexcel\": \"x-office\/spreadsheet\",\n    \"application\/msonenote\": \"x-office\/document\",\n    \"application\/mspowerpoint\": \"x-office\/presentation\",\n    \"application\/msword\": \"x-office\/document\",\n    \"application\/octet-stream\": \"file\",\n    \"application\/postscript\": \"image\",\n    \"application\/rss+xml\": \"application\/xml\",\n    \"application\/vnd.android.package-archive\": \"package\/x-generic\",\n    \"application\/vnd.lotus-wordpro\": \"x-office\/document\",\n    \"application\/vnd.garmin.tcx+xml\": \"location\",\n    \"application\/vnd.google-earth.kml+xml\": \"location\",\n    \"application\/vnd.google-earth.kmz\": \"location\",\n    \"application\/vnd.ms-excel\": \"x-office\/spreadsheet\",\n    \"application\/vnd.ms-excel.addin.macroEnabled.12\": \"x-office\/spreadsheet\",\n    \"application\/vnd.ms-excel.sheet.binary.macroEnabled.12\": \"x-office\/spreadsheet\",\n    \"application\/vnd.ms-excel.sheet.macroEnabled.12\": \"x-office\/spreadsheet\",\n    \"application\/vnd.ms-excel.template.macroEnabled.12\": \"x-office\/spreadsheet\",\n    \"application\/vnd.ms-fontobject\": \"image\",\n    \"application\/vnd.ms-powerpoint\": \"x-office\/presentation\",\n    \"application\/vnd.ms-powerpoint.addin.macroEnabled.12\": \"x-office\/presentation\",\n    \"application\/vnd.ms-powerpoint.presentation.macroEnabled.12\": \"x-office\/presentation\",\n    \"application\/vnd.ms-powerpoint.slideshow.macroEnabled.12\": \"x-office\/presentation\",\n    \"application\/vnd.ms-powerpoint.template.macroEnabled.12\": \"x-office\/presentation\",\n    \"application\/vnd.ms-visio.drawing.macroEnabled.12\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-visio.drawing\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-visio.stencil.macroEnabled.12\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-visio.stencil\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-visio.template.macroEnabled.12\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-visio.template\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-word.document.macroEnabled.12\": \"x-office\/document\",\n    \"application\/vnd.ms-word.template.macroEnabled.12\": \"x-office\/document\",\n    \"application\/vnd.oasis.opendocument.presentation\": \"x-office\/presentation\",\n    \"application\/vnd.oasis.opendocument.presentation-template\": \"x-office\/presentation\",\n    \"application\/vnd.oasis.opendocument.spreadsheet\": \"x-office\/spreadsheet\",\n    \"application\/vnd.oasis.opendocument.spreadsheet-template\": \"x-office\/spreadsheet\",\n    \"application\/vnd.oasis.opendocument.text\": \"x-office\/document\",\n    \"application\/vnd.oasis.opendocument.text-master\": \"x-office\/document\",\n    \"application\/vnd.oasis.opendocument.text-template\": \"x-office\/document\",\n    \"application\/vnd.oasis.opendocument.text-web\": \"x-office\/document\",\n    \"application\/vnd.openxmlformats-officedocument.presentationml.presentation\": \"x-office\/presentation\",\n    \"application\/vnd.openxmlformats-officedocument.presentationml.slideshow\": \"x-office\/presentation\",\n    \"application\/vnd.openxmlformats-officedocument.presentationml.template\": \"x-office\/presentation\",\n    \"application\/vnd.openxmlformats-officedocument.spreadsheetml.sheet\": \"x-office\/spreadsheet\",\n    \"application\/vnd.openxmlformats-officedocument.spreadsheetml.template\": \"x-office\/spreadsheet\",\n    \"application\/vnd.openxmlformats-officedocument.wordprocessingml.document\": \"x-office\/document\",\n    \"application\/vnd.openxmlformats-officedocument.wordprocessingml.template\": \"x-office\/document\",\n    \"application\/vnd.visio\": \"x-office\/document\",\n    \"application\/vnd.wordperfect\": \"x-office\/document\",\n    \"application\/x-7z-compressed\": \"package\/x-generic\",\n    \"application\/x-bzip2\": \"package\/x-generic\",\n    \"application\/x-cbr\": \"text\",\n    \"application\/x-compressed\": \"package\/x-generic\",\n    \"application\/x-dcraw\": \"image\",\n    \"application\/x-deb\": \"package\/x-generic\",\n    \"application\/x-fictionbook+xml\": \"text\",\n    \"application\/x-font\": \"image\",\n    \"application\/x-gimp\": \"image\",\n    \"application\/x-gzip\": \"package\/x-generic\",\n    \"application\/x-iwork-keynote-sffkey\": \"x-office\/presentation\",\n    \"application\/x-iwork-numbers-sffnumbers\": \"x-office\/spreadsheet\",\n    \"application\/x-iwork-pages-sffpages\": \"x-office\/document\",\n    \"application\/x-mobipocket-ebook\": \"text\",\n    \"application\/x-perl\": \"text\/code\",\n    \"application\/x-photoshop\": \"image\",\n    \"application\/x-php\": \"text\/code\",\n    \"application\/x-rar-compressed\": \"package\/x-generic\",\n    \"application\/x-tar\": \"package\/x-generic\",\n    \"application\/x-tex\": \"text\",\n    \"application\/xml\": \"text\/html\",\n    \"application\/yaml\": \"text\/code\",\n    \"application\/zip\": \"package\/x-generic\",\n    \"database\": \"file\",\n    \"httpd\/unix-directory\": \"dir\",\n    \"text\/css\": \"text\/code\",\n    \"text\/csv\": \"x-office\/spreadsheet\",\n    \"text\/html\": \"text\/code\",\n    \"text\/x-c\": \"text\/code\",\n    \"text\/x-c++src\": \"text\/code\",\n    \"text\/x-h\": \"text\/code\",\n    \"text\/x-java-source\": \"text\/code\",\n    \"text\/x-ldif\": \"text\/code\",\n    \"text\/x-python\": \"text\/code\",\n    \"text\/x-shellscript\": \"text\/code\",\n    \"web\": \"text\/code\",\n    \"application\/internet-shortcut\": \"link\"\n},\n\tfiles: [\n    \"application\",\n    \"application-pdf\",\n    \"audio\",\n    \"file\",\n    \"folder\",\n    \"folder-drag-accept\",\n    \"folder-encrypted\",\n    \"folder-external\",\n    \"folder-public\",\n    \"folder-shared\",\n    \"folder-starred\",\n    \"image\",\n    \"link\",\n    \"location\",\n    \"package-x-generic\",\n    \"text\",\n    \"text-calendar\",\n    \"text-code\",\n    \"text-vcard\",\n    \"video\",\n    \"x-office-document\",\n    \"x-office-presentation\",\n    \"x-office-spreadsheet\"\n],\n\tthemes: []\n};\n\n\n\/*\n * Copyright (c) 2015\n *\n * This file is licensed under the Affero General Public License version 3\n * or later.\n *\n * See the COPYING-README file.\n *\n *\/\n\n\/* global Select2 *\/\n\n\/**\n * Select2 extension for toggling values in a multi-select dropdown\n *\/\n(function(Select2) {\n\n\tvar Select2FindHighlightableChoices = Select2.class.multi.prototype.findHighlightableChoices;\n\tSelect2.class.multi.prototype.findHighlightableChoices = function () {\n\t\tif (this.opts.toggleSelect) {\n\t\t\treturn this.results.find('.select2-result-selectable:not(.select2-disabled)');\n\t\t}\n\t\treturn Select2FindHighlightableChoices.apply(this, arguments);\n\t};\n\n\tvar Select2TriggerSelect = Select2.class.multi.prototype.triggerSelect;\n\tSelect2.class.multi.prototype.triggerSelect = function (data) {\n\t\tif (this.opts.toggleSelect && this.val().indexOf(this.id(data)) !== -1) {\n\t\t\tvar self = this;\n\t\t\tvar val = this.id(data);\n\n\t\t\tvar selectionEls = this.container.find('.select2-search-choice').filter(function() {\n\t\t\t\treturn (self.id($(this).data('select2-data')) === val);\n\t\t\t});\n\n\t\t\tif (this.unselect(selectionEls)) {\n\t\t\t\t\/\/ also unselect in dropdown\n\t\t\t\tthis.results.find('.select2-result.select2-selected').each(function () {\n\t\t\t\t\tvar $this = $(this);\n\t\t\t\t\tif (self.id($this.data('select2-data')) === val) {\n\t\t\t\t\t\t$this.removeClass('select2-selected');\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t\tthis.clearSearch();\n\t\t\t}\n\n\t\t\treturn false;\n\t\t} else {\n\t\t\treturn Select2TriggerSelect.apply(this, arguments);\n\t\t}\n\t};\n\n})(Select2);\n\n\n\n"]},{"file":"\/var\/www\/nextcloud\/lib\/private\/Template\/JSCombiner.php","line":103,"function":"cache","class":"OC\\Template\\JSCombiner","type":"->","args":["\/var\/www\/nextcloud\/core\/js","merged-template-prepend.js",{"__class__":"OC\\Files\\SimpleFS\\SimpleFolder"}]},{"file":"\/var\/www\/nextcloud\/lib\/private\/Template\/JSResourceLocator.php","line":114,"function":"process","class":"OC\\Template\\JSCombiner","type":"->","args":["\/var\/www\/nextcloud","core\/js\/merged-template-prepend.json","core"]},{"file":"\/var\/www\/nextcloud\/lib\/private\/Template\/JSResourceLocator.php","line":70,"function":"cacheAndAppendCombineJsonIfExist","class":"OC\\Template\\JSResourceLocator","type":"->","args":["\/var\/www\/nextcloud","core\/js\/merged-template-prepend.json"]},{"file":"\/var\/www\/nextcloud\/lib\/private\/Template\/ResourceLocator.php","line":78,"function":"doFind","class":"OC\\Template\\JSResourceLocator","type":"->","args":["js\/merged-template-prepend"]},{"file":"\/var\/www\/nextcloud\/lib\/private\/TemplateLayout.php","line":341,"function":"find","class":"OC\\Template\\ResourceLocator","type":"->","args":[["core\/js\/dist\/main","js\/merged-template-prepend","search\/js\/search","core\/l10n\/en","search\/l10n\/en","search\/js\/searchprovider","js\/files\/fileinfo","js\/files\/client","js\/dist\/maintenance"]]},{"file":"\/var\/www\/nextcloud\/lib\/private\/TemplateLayout.php","line":169,"function":"findJavascriptFiles","class":"OC\\TemplateLayout","type":"::","args":[["core\/js\/dist\/main","js\/merged-template-prepend","search\/js\/search","core\/l10n\/en","search\/l10n\/en","search\/js\/searchprovider","js\/files\/fileinfo","js\/files\/client","js\/dist\/maintenance"]]},{"file":"\/var\/www\/nextcloud\/lib\/private\/legacy\/template.php","line":183,"function":"__construct","class":"OC\\TemplateLayout","type":"->","args":["guest",""]},{"file":"\/var\/www\/nextcloud\/lib\/private\/Template\/Base.php","line":131,"function":"fetchPage","class":"OC_Template","type":"->","args":[]},{"file":"\/var\/www\/nextcloud\/lib\/base.php","line":297,"function":"printPage","class":"OC\\Template\\Base","type":"->","args":[]},{"file":"\/var\/www\/nextcloud\/lib\/base.php","line":945,"function":"checkMaintenanceMode","class":"OC","type":"::","args":[]},{"file":"\/var\/www\/nextcloud\/index.php","line":42,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"\/var\/www\/nextcloud\/lib\/private\/Files\/Node\/File.php","Line":67,"CustomMessage":"--"},"userAgent":"Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/84.0.4147.135 Safari\/537.36","version":"17.0.3.1"}
{"reqId":"7WZn2plLltOELEwIFWFp","level":3,"time":"2020-10-05T16:14:03+00:00","remoteAddr":"216.21.170.196","user":"--","app":"core","method":"GET","url":"\/nextcloud","message":{"Exception":"OCP\\Files\\GenericFileException","Message":"file_put_contents failed","Code":0,"Trace":[{"file":"\/var\/www\/nextcloud\/lib\/private\/Files\/SimpleFS\/SimpleFile.php","line":106,"function":"putContent","class":"OC\\Files\\Node\\File","type":"->","args":["\/**\n * @author Roeland Jago Douma <[email protected]>\n *\n * @copyright Copyright (c) 2015, ownCloud, Inc.\n * @license AGPL-3.0\n *\n * This code is free software: you can redistribute it and\/or modify\n * it under the terms of the GNU Affero General Public License, version 3,\n * as published by the Free Software Foundation.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License, version 3,\n * along with this program.  If not, see <http:\/\/www.gnu.org\/licenses\/>\n *\n *\/\n\n\/**\n * Namespace to hold functions related to convert mimetype to icons\n *\n * @namespace\n *\/\nOC.MimeType = {\n\n\t\/**\n\t * Cache that maps mimeTypes to icon urls\n\t *\/\n\t_mimeTypeIcons: {},\n\n\t\/**\n\t * Return the file icon we want to use for the given mimeType.\n\t * The file needs to be present in the supplied file list\n\t *\n\t * @param {string} mimeType The mimeType we want an icon for\n\t * @param {array} files The available icons in this theme\n\t * @return {string} The icon to use or null if there is no match\n\t *\/\n\t_getFile: function(mimeType, files) {\n\t\tvar icon = mimeType.replace(new RegExp('\/', 'g'), '-');\n\n\t\t\/\/ Generate path\n\t\tif (mimeType === 'dir' && $.inArray('folder', files) !== -1) {\n\t\t\treturn 'folder';\n\t\t} else if (mimeType === 'dir-encrypted' && $.inArray('folder-encrypted', files) !== -1) {\n\t\t\treturn 'folder-encrypted';\n\t\t} else if (mimeType === 'dir-shared' && $.inArray('folder-shared', files) !== -1) {\n\t\t\treturn 'folder-shared';\n\t\t} else if (mimeType === 'dir-public' && $.inArray('folder-public', files) !== -1) {\n\t\t\treturn 'folder-public';\n\t\t} else if (mimeType === 'dir-external' && $.inArray('folder-external', files) !== -1) {\n\t\t\treturn 'folder-external';\n\t\t} else if ($.inArray(icon, files) !== -1) {\n\t\t\treturn icon;\n\t\t} else if ($.inArray(icon.split('-')[0], files) !== -1) {\n\t\t\treturn icon.split('-')[0];\n\t\t} else if ($.inArray('file', files) !== -1) {\n\t\t\treturn 'file';\n\t\t}\n\n\t\treturn null;\n\t},\n\n\t\/**\n\t * Return the url to icon of the given mimeType\n\t *\n\t * @param {string} mimeType The mimeType to get the icon for\n\t * @return {string} Url to the icon for mimeType\n\t *\/\n\tgetIconUrl: function(mimeType) {\n\t\tif (_.isUndefined(mimeType)) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\twhile (mimeType in OC.MimeTypeList.aliases) {\n\t\t\tmimeType = OC.MimeTypeList.aliases[mimeType];\n\t\t}\n\t\tif (mimeType in OC.MimeType._mimeTypeIcons) {\n\t\t\treturn OC.MimeType._mimeTypeIcons[mimeType];\n\t\t}\n\n\t\t\/\/ First try to get the correct icon from the current theme\n\t\tvar gotIcon = null;\n\t\tvar path = '';\n\t\tif (OC.theme.folder !== '' && $.isArray(OC.MimeTypeList.themes[OC.theme.folder])) {\n\t\t\tpath = OC.getRootPath() + '\/themes\/' + OC.theme.folder + '\/core\/img\/filetypes\/';\n\t\t\tvar icon = OC.MimeType._getFile(mimeType, OC.MimeTypeList.themes[OC.theme.folder]);\n\n\t\t\tif (icon !== null) {\n\t\t\t\tgotIcon = true;\n\t\t\t\tpath += icon;\n\t\t\t}\n\t\t}\n\t\tif(OCA.Theming && gotIcon === null) {\n\t\t\tpath = OC.generateUrl('\/apps\/theming\/img\/core\/filetypes\/');\n\t\t\tpath += OC.MimeType._getFile(mimeType, OC.MimeTypeList.files);\n\t\t\tgotIcon = true;\n\t\t}\n\n\t\t\/\/ If we do not yet have an icon fall back to the default\n\t\tif (gotIcon === null) {\n\t\t\tpath = OC.getRootPath() + '\/core\/img\/filetypes\/';\n\t\t\tpath += OC.MimeType._getFile(mimeType, OC.MimeTypeList.files);\n\t\t}\n\n\t\tpath += '.svg';\n\n\t\tif(OCA.Theming) {\n\t\t\tpath += \"?v=\" + OCA.Theming.cacheBuster;\n\t\t}\n\n\t\t\/\/ Cache the result\n\t\tOC.MimeType._mimeTypeIcons[mimeType] = path;\n\t\treturn path;\n\t}\n\n};\n\n\n\/**\n* This file is automatically generated\n* DO NOT EDIT MANUALLY!\n*\n* You can update the list of MimeType Aliases in config\/mimetypealiases.json\n* The list of files is fetched from core\/img\/filetypes\n* To regenerate this file run .\/occ maintenance:mimetype:update-js\n*\/\nOC.MimeTypeList={\n\taliases: {\n    \"application\/coreldraw\": \"image\",\n    \"applicat
ion\/epub+zip\": \"text\",\n    \"application\/font-sfnt\": \"image\",\n    \"application\/font-woff\": \"image\",\n    \"application\/gpx+xml\": \"location\",\n    \"application\/illustrator\": \"image\",\n    \"application\/javascript\": \"text\/code\",\n    \"application\/json\": \"text\/code\",\n    \"application\/msaccess\": \"file\",\n    \"application\/msexcel\": \"x-office\/spreadsheet\",\n    \"application\/msonenote\": \"x-office\/document\",\n    \"application\/mspowerpoint\": \"x-office\/presentation\",\n    \"application\/msword\": \"x-office\/document\",\n    \"application\/octet-stream\": \"file\",\n    \"application\/postscript\": \"image\",\n    \"application\/rss+xml\": \"application\/xml\",\n    \"application\/vnd.android.package-archive\": \"package\/x-generic\",\n    \"application\/vnd.lotus-wordpro\": \"x-office\/document\",\n    \"application\/vnd.garmin.tcx+xml\": \"location\",\n    \"application\/vnd.google-earth.kml+xml\": \"location\",\n    \"application\/vnd.google-earth.kmz\": \"location\",\n    \"application\/vnd.ms-excel\": \"x-office\/spreadsheet\",\n    \"application\/vnd.ms-excel.addin.macroEnabled.12\": \"x-office\/spreadsheet\",\n    \"application\/vnd.ms-excel.sheet.binary.macroEnabled.12\": \"x-office\/spreadsheet\",\n    \"application\/vnd.ms-excel.sheet.macroEnabled.12\": \"x-office\/spreadsheet\",\n    \"application\/vnd.ms-excel.template.macroEnabled.12\": \"x-office\/spreadsheet\",\n    \"application\/vnd.ms-fontobject\": \"image\",\n    \"application\/vnd.ms-powerpoint\": \"x-office\/presentation\",\n    \"application\/vnd.ms-powerpoint.addin.macroEnabled.12\": \"x-office\/presentation\",\n    \"application\/vnd.ms-powerpoint.presentation.macroEnabled.12\": \"x-office\/presentation\",\n    \"application\/vnd.ms-powerpoint.slideshow.macroEnabled.12\": \"x-office\/presentation\",\n    \"application\/vnd.ms-powerpoint.template.macroEnabled.12\": \"x-office\/presentation\",\n    \"application\/vnd.ms-visio.drawing.macroEnabled.12\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-visio.drawing\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-visio.stencil.macroEnabled.12\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-visio.stencil\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-visio.template.macroEnabled.12\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-visio.template\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-word.document.macroEnabled.12\": \"x-office\/document\",\n    \"application\/vnd.ms-word.template.macroEnabled.12\": \"x-office\/document\",\n    \"application\/vnd.oasis.opendocument.presentation\": \"x-office\/presentation\",\n    \"application\/vnd.oasis.opendocument.presentation-template\": \"x-office\/presentation\",\n    \"application\/vnd.oasis.opendocument.spreadsheet\": \"x-office\/spreadsheet\",\n    \"application\/vnd.oasis.opendocument.spreadsheet-template\": \"x-office\/spreadsheet\",\n    \"application\/vnd.oasis.opendocument.text\": \"x-office\/document\",\n    \"application\/vnd.oasis.opendocument.text-master\": \"x-office\/document\",\n    \"application\/vnd.oasis.opendocument.text-template\": \"x-office\/document\",\n    \"application\/vnd.oasis.opendocument.text-web\": \"x-office\/document\",\n    \"application\/vnd.openxmlformats-officedocument.presentationml.presentation\": \"x-office\/presentation\",\n    \"application\/vnd.openxmlformats-officedocument.presentationml.slideshow\": \"x-office\/presentation\",\n    \"application\/vnd.openxmlformats-officedocument.presentationml.template\": \"x-office\/presentation\",\n    \"application\/vnd.openxmlformats-officedocument.spreadsheetml.sheet\": \"x-office\/spreadsheet\",\n    \"application\/vnd.openxmlformats-officedocument.spreadsheetml.template\": \"x-office\/spreadsheet\",\n    \"application\/vnd.openxmlformats-officedocument.wordprocessingml.document\": \"x-office\/document\",\n    \"application\/vnd.openxmlformats-officedocument.wordprocessingml.template\": \"x-office\/document\",\n    \"application\/vnd.visio\": \"x-office\/document\",\n    \"application\/vnd.wordperfect\": \"x-office\/document\",\n    \"application\/x-7z-compressed\": \"package\/x-generic\",\n    \"application\/x-bzip2\": \"package\/x-generic\",\n    \"application\/x-cbr\": \"text\",\n    \"application\/x-compressed\": \"package\/x-generic\",\n    \"application\/x-dcraw\": \"image\",\n    \"application\/x-deb\": \"package\/x-generic\",\n    \"application\/x-fictionbook+xml\": \"text\",\n    \"application\/x-font\": \"image\",\n    \"application\/x-gimp\": \"image\",\n    \"application\/x-gzip\": \"package\/x-generic\",\n    \"application\/x-iwork-keynote-sffkey\": \"x-office\/presentation\",\n    \"application\/x-iwork-numbers-sffnumbers\": \"x-office\/spreadsheet\",\n    \"application\/x-iwork-pages-sffpages\": \"x-office\/document\",\n    \"application\/x-mobipocket-ebook\": \"text\",\n    \"application\/x-perl\": \"text\/code\",\n    \"application\/x-photoshop\": \"image\",\n    \"application\/x-php\": \"text\/code\",\n    \"application\/x-rar-compressed\": \"package\/x-generic\",\n    \"application\/x-tar\": \"package\/x-generic\",\n    \"application\/x-tex\": \"text\",\n    \"application\/xml\": \"text\/html\",\n    \"application\/yaml\": \"text\/code\",\n    \"application\/zip\": \"package\/x-generic\",\n    \"database\": \"file\",\n    \"httpd\/unix-directory\": \"dir\",\n    \"text\/css\": \"text\/code\",\n    \"text\/csv\": \"x-office\/spreadsheet\",\n    \"text\/html\": \"text\/code\",\n    \"text\/x-c\": \"text\/code\",\n    \"text\/x-c++src\": \"text\/code\",\n    \"text\/x-h\": \"text\/code\",\n    \"text\/x-java-source\": \"text\/code\",\n    \"text\/x-ldif\": \"text\/code\",\n    \"text\/x-python\": \"text\/code\",\n    \"text\/x-shellscript\": \"text\/code\",\n    \"web\": \"text\/code\",\n    \"application\/internet-shortcut\": \"link\"\n},\n\tfiles: [\n    \"application\",\n    \"application-pdf\",\n    \"audio\",\n    \"file\",\n    \"folder\",\n    \"folder-drag-accept\",\n    \"folder-encrypted\",\n    \"folder-external\",\n    \"folder-public\",\n    \"folder-shared\",\n    \"folder-starred\",\n    \"image\",\n    \"link\",\n    \"location\",\n    \"package-x-generic\",\n    \"text\",\n    \"text-calendar\",\n    \"text-code\",\n    \"text-vcard\",\n    \"video\",\n    \"x-office-document\",\n    \"x-office-presentation\",\n    \"x-office-spreadsheet\"\n],\n\tthemes: []\n};\n\n\n\/*\n * Copyright (c) 2015\n *\n * This file is licensed under the Affero General Public License version 3\n * or later.\n *\n * See the COPYING-README file.\n *\n *\/\n\n\/* global Select2 *\/\n\n\/**\n * Select2 extension for toggling values in a multi-select dropdown\n *\/\n(function(Select2) {\n\n\tvar Select2FindHighlightableChoices = Select2.class.multi.prototype.findHighlightableChoices;\n\tSelect2.class.multi.prototype.findHighlightableChoices = function () {\n\t\tif (this.opts.toggleSelect) {\n\t\t\treturn this.results.find('.select2-result-selectable:not(.select2-disabled)');\n\t\t}\n\t\treturn Select2FindHighlightableChoices.apply(this, arguments);\n\t};\n\n\tvar Select2TriggerSelect = Select2.class.multi.prototype.triggerSelect;\n\tSelect2.class.multi.prototype.triggerSelect = function (data) {\n\t\tif (this.opts.toggleSelect && this.val().indexOf(this.id(data)) !== -1) {\n\t\t\tvar self = this;\n\t\t\tvar val = this.id(data);\n\n\t\t\tvar selectionEls = this.container.find('.select2-search-choice').filter(function() {\n\t\t\t\treturn (self.id($(this).data('select2-data')) === val);\n\t\t\t});\n\n\t\t\tif (this.unselect(selectionEls)) {\n\t\t\t\t\/\/ also unselect in dropdown\n\t\t\t\tthis.results.find('.select2-result.select2-selected').each(function () {\n\t\t\t\t\tvar $this = $(this);\n\t\t\t\t\tif (self.id($this.data('select2-data')) === val) {\n\t\t\t\t\t\t$this.removeClass('select2-selected');\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t\tthis.clearSearch();\n\t\t\t}\n\n\t\t\treturn false;\n\t\t} else {\n\t\t\treturn Select2TriggerSelect.apply(this, arguments);\n\t\t}\n\t};\n\n})(Select2);\n\n\n\n"]},{"file":"\/var\/www\/nextcloud\/lib\/private\/Template\/JSCombiner.php","line":194,"function":"putContent","class":"OC\\Files\\SimpleFS\\SimpleFile","type":"->","args":["\/**\n * @author Roeland Jago Douma <[email protected]>\n *\n * @copyright Copyright (c) 2015, ownCloud, Inc.\n * @license AGPL-3.0\n *\n * This code is free software: you can redistribute it and\/or modify\n * it under the terms of the GNU Affero General Public License, version 3,\n * as published by the Free Software Foundation.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License, version 3,\n * along with this program.  If not, see <http:\/\/www.gnu.org\/licenses\/>\n *\n *\/\n\n\/**\n * Namespace to hold functions related to convert mimetype to icons\n *\n * @namespace\n *\/\nOC.MimeType = {\n\n\t\/**\n\t * Cache that maps mimeTypes to icon urls\n\t *\/\n\t_mimeTypeIcons: {},\n\n\t\/**\n\t * Return the file icon we want to use for the given mimeType.\n\t * The file needs to be present in the supplied file list\n\t *\n\t * @param {string} mimeType The mimeType we want an icon for\n\t * @param {array} files The available icons in this theme\n\t * @return {string} The icon to use or null if there is no match\n\t *\/\n\t_getFile: function(mimeType, files) {\n\t\tvar icon = mimeType.replace(new RegExp('\/', 'g'), '-');\n\n\t\t\/\/ Generate path\n\t\tif (mimeType === 'dir' && $.inArray('folder', files) !== -1) {\n\t\t\treturn 'folder';\n\t\t} else if (mimeType === 'dir-encrypted' && $.inArray('folder-encrypted', files) !== -1) {\n\t\t\treturn 'folder-encrypted';\n\t\t} else if (mimeType === 'dir-shared' && $.inArray('folder-shared', files) !== -1) {\n\t\t\treturn 'folder-shared';\n\t\t} else if (mimeType === 'dir-public' && $.inArray('folder-public', files) !== -1) {\n\t\t\treturn 'folder-public';\n\t\t} else if (mimeType === 'dir-external' && $.inArray('folder-external', files) !== -1) {\n\t\t\treturn 'folder-external';\n\t\t} else if ($.inArray(icon, files) !== -1) {\n\t\t\treturn icon;\n\t\t} else if ($.inArray(icon.split('-')[0], files) !== -1) {\n\t\t\treturn icon.split('-')[0];\n\t\t} else if ($.inArray('file', files) !== -1) {\n\t\t\treturn 'file';\n\t\t}\n\n\t\treturn null;\n\t},\n\n\t\/**\n\t * Return the url to icon of the given mimeType\n\t *\n\t * @param {string} mimeType The mimeType to get the icon for\n\t * @return {string} Url to the icon for mimeType\n\t *\/\n\tgetIconUrl: function(mimeType) {\n\t\tif (_.isUndefined(mimeType)) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\twhile (mimeType in OC.MimeTypeList.aliases) {\n\t\t\tmimeType = OC.MimeTypeList.aliases[mimeType];\n\t\t}\n\t\tif (mimeType in OC.MimeType._mimeTypeIcons) {\n\t\t\treturn OC.MimeType._mimeTypeIcons[mimeType];\n\t\t}\n\n\t\t\/\/ First try to get the correct icon from the current theme\n\t\tvar gotIcon = null;\n\t\tvar path = '';\n\t\tif (OC.theme.folder !== '' && $.isArray(OC.MimeTypeList.themes[OC.theme.folder])) {\n\t\t\tpath = OC.getRootPath() + '\/themes\/' + OC.theme.folder + '\/core\/img\/filetypes\/';\n\t\t\tvar icon = OC.MimeType._getFile(mimeType, OC.MimeTypeList.themes[OC.theme.folder]);\n\n\t\t\tif (icon !== null) {\n\t\t\t\tgotIcon = true;\n\t\t\t\tpath += icon;\n\t\t\t}\n\t\t}\n\t\tif(OCA.Theming && gotIcon === null) {\n\t\t\tpath = OC.generateUrl('\/apps\/theming\/img\/core\/filetypes\/');\n\t\t\tpath += OC.MimeType._getFile(mimeType, OC.MimeTypeList.files);\n\t\t\tgotIcon = true;\n\t\t}\n\n\t\t\/\/ If we do not yet have an icon fall back to the default\n\t\tif (gotIcon === null) {\n\t\t\tpath = OC.getRootPath() + '\/core\/img\/filetypes\/';\n\t\t\tpath += OC.MimeType._getFile(mimeType, OC.MimeTypeList.files);\n\t\t}\n\n\t\tpath += '.svg';\n\n\t\tif(OCA.Theming) {\n\t\t\tpath += \"?v=\" + OCA.Theming.cacheBuster;\n\t\t}\n\n\t\t\/\/ Cache the result\n\t\tOC.MimeType._mimeTypeIcons[mimeType] = path;\n\t\treturn path;\n\t}\n\n};\n\n\n\/**\n* This file is automatically generated\n* DO NOT EDIT MANUALLY!\n*\n* You can update the list of MimeType Aliases in config\/mimetypealiases.json\n* The list of files is fetched from core\/img\/filetypes\n* To regenerate this file run .\/occ maintenance:mimetype:update-js\n*\/\nOC.MimeTypeList={\n\taliases: {\n    \"application\/coreldraw\": \"image\",\n    \"application\/epub+zip\": \"text\",\n    \"application\/font-sfnt\": \"image\",\n    \"application\/font-woff\": \"image\",\n    \"application\/gpx+xml\": \"location\",\n    \"application\/illustrator\": \"image\",\n    \"application\/javascript\": \"text\/code\",\n    \"application\/json\": \"text\/code\",\n    \"application\/msaccess\": \"file\",\n    \"application\/msexcel\": \"x-office\/spreadsheet\",\n    \"application\/msonenote\": \"x-office\/document\",\n    \"application\/mspowerpoint\": \"x-office\/presentation\",\n    \"application\/msword\": \"x-office\/document\",\n    \"application\/octet-stream\": \"file\",\n    \"application\/postscript\": \"image\",\n    \"application\/rss+xml\": \"application\/xml\",\n    \"application\/vnd.android.package-archive\": \"package\/x-generic\",\n    \"application\/vnd.lotus-wordpro\": \"x-office\/document\",\n    \"application\/vnd.garmin.tcx+xml\": \"location\",\n    \"application\/vnd.google-earth.kml+xml\": \"location\",\n    \"application\/vnd.google-earth.kmz\": \"location\",\n    \"application\/vnd.ms-excel\": \"x-office\/spreadsheet\",\n    \"application\/vnd.ms-excel.addin.macroEnabled.12\": \"x-office\/spreadsheet\",\n    \"application\/vnd.ms-excel.sheet.binary.macroEnabled.12\": \"x-office\/spreadsheet\",\n    \"application\/vnd.ms-excel.sheet.macroEnabled.12\": \"x-office\/spreadsheet\",\n    \"application\/vnd.ms-excel.template.macroEnabled.12\": \"x-office\/spreadsheet\",\n    \"application\/vnd.ms-fontobject\": \"image\",\n    \"application\/vnd.ms-powerpoint\": \"x-office\/presentation\",\n    \"application\/vnd.ms-powerpoint.addin.macroEnabled.12\": \"x-office\/presentation\",\n    \"application\/vnd.ms-powerpoint.presentation.macroEnabled.12\": \"x-office\/presentation\",\n    \"application\/vnd.ms-powerpoint.slideshow.macroEnabled.12\": \"x-office\/presentation\",\n    \"application\/vnd.ms-powerpoint.template.macroEnabled.12\": \"x-office\/presentation\",\n    \"application\/vnd.ms-visio.drawing.macroEnabled.12\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-visio.drawing\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-visio.stencil.macroEnabled.12\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-visio.stencil\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-visio.template.macroEnabled.12\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-visio.template\": \"application\/vnd.visio\",\n    \"application\/vnd.ms-word.document.macroEnabled.12\": \"x-office\/document\",\n    \"application\/vnd.ms-word.template.macroEnabled.12\": \"x-office\/document\",\n    \"application\/vnd.oasis.opendocument.presentation\": \"x-office\/presentation\",\n    \"application\/vnd.oasis.opendocument.presentation-template\": \"x-office\/presentation\",\n    \"application\/vnd.oasis.opendocument.spreadsheet\": \"x-office\/spreadsheet\",\n    \"application\/vnd.oasis.opendocument.spreadsheet-template\": \"x-office\/spreadsheet\",\n    \"application\/vnd.oasis.opendocument.text\": \"x-office\/document\",\n    \"application\/vnd.oasis.opendocument.text-master\": \"x-office\/document\",\n    \"application\/vnd.oasis.opendocument.text-template\": \"x-office\/document\",\n    \"application\/vnd.oasis.opendocument.text-web\": \"x-office\/document\",\n    \"application\/vnd.openxmlformats-officedocument.presentationml.presentation\": \"x-office\/presentation\",\n    \"application\/vnd.openxmlformats-officedocument.presentationml.slideshow\": \"x-office\/presentation\",\n    \"application\/vnd.openxmlformats-officedocument.presentationml.template\": \"x-office\/presentation\",\n    \"application\/vnd.openxmlformats-officedocument.spreadsheetml.sheet\": \"x-office\/spreadsheet\",\n    \"application\/vnd.openxmlformats-officedocument.spreadsheetml.template\": \"x-office\/spreadsheet\",\n    \"application\/vnd.openxmlformats-officedocument.wordprocessingml.document\": \"x-office\/document\",\n    \"application\/vnd.openxmlformats-officedocument.wordprocessingml.template\": \"x-office\/document\",\n    \"application\/vnd.visio\": \"x-office\/document\",\n    \"application\/vnd.wordperfect\": \"x-office\/document\",\n    \"application\/x-7z-compressed\": \"package\/x-generic\",\n    \"application\/x-bzip2\": \"package\/x-generic\",\n    \"application\/x-cbr\": \"text\",\n    \"application\/x-compressed\": \"package\/x-generic\",\n    \"application\/x-dcraw\": \"image\",\n    \"application\/x-deb\": \"package\/x-generic\",\n    \"application\/x-fictionbook+xml\": \"text\",\n    \"application\/x-font\": \"image\",\n    \"application\/x-gimp\": \"image\",\n    \"application\/x-gzip\": \"package\/x-generic\",\n    \"application\/x-iwork-keynote-sffkey\": \"x-office\/presentation\",\n    \"application\/x-iwork-numbers-sffnumbers\": \"x-office\/spreadsheet\",\n    \"application\/x-iwork-pages-sffpages\": \"x-office\/document\",\n    \"application\/x-mobipocket-ebook\": \"text\",\n    \"application\/x-perl\": \"text\/code\",\n    \"application\/x-photoshop\": \"image\",\n    \"application\/x-php\": \"text\/code\",\n    \"application\/x-rar-compressed\": \"package\/x-generic\",\n    \"application\/x-tar\": \"package\/x-generic\",\n    \"application\/x-tex\": \"text\",\n    \"application\/xml\": \"text\/html\",\n    \"application\/yaml\": \"text\/code\",\n    \"application\/zip\": \"package\/x-generic\",\n    \"database\": \"file\",\n    \"httpd\/unix-directory\": \"dir\",\n    \"text\/css\": \"text\/code\",\n    \"text\/csv\": \"x-office\/spreadsheet\",\n    \"text\/html\": \"text\/code\",\n    \"text\/x-c\": \"text\/code\",\n    \"text\/x-c++src\": \"text\/code\",\n    \"text\/x-h\": \"text\/code\",\n    \"text\/x-java-source\": \"text\/code\",\n    \"text\/x-ldif\": \"text\/code\",\n    \"text\/x-python\": \"text\/code\",\n    \"text\/x-shellscript\": \"text\/code\",\n    \"web\": \"text\/code\",\n    \"application\/internet-shortcut\": \"link\"\n},\n\tfiles: [\n    \"application\",\n    \"application-pdf\",\n    \"audio\",\n    \"file\",\n    \"folder\",\n    \"folder-drag-accept\",\n    \"folder-encrypted\",\n    \"folder-external\",\n    \"folder-public\",\n    \"folder-shared\",\n    \"folder-starred\",\n    \"image\",\n    \"link\",\n    \"location\",\n    \"package-x-generic\",\n    \"text\",\n    \"text-calendar\",\n    \"text-code\",\n    \"text-vcard\",\n    \"video\",\n    \"x-office-document\",\n    \"x-office-presentation\",\n    \"x-office-spreadsheet\"\n],\n\tthemes: []\n};\n\n\n\/*\n * Copyright (c) 2015\n *\n * This file is licensed under the Affero General Public License version 3\n * or later.\n *\n * See the COPYING-README file.\n *\n *\/\n\n\/* global Select2 *\/\n\n\/**\n * Select2 extension for toggling values in a multi-select dropdown\n *\/\n(function(Select2) {\n\n\tvar Select2FindHighlightableChoices = Select2.class.multi.prototype.findHighlightableChoices;\n\tSelect2.class.multi.prototype.findHighlightableChoices = function () {\n\t\tif (this.opts.toggleSelect) {\n\t\t\treturn this.results.find('.select2-result-selectable:not(.select2-disabled)');\n\t\t}\n\t\treturn Select2FindHighlightableChoices.apply(this, arguments);\n\t};\n\n\tvar Select2TriggerSelect = Select2.class.multi.prototype.triggerSelect;\n\tSelect2.class.multi.prototype.triggerSelect = function (data) {\n\t\tif (this.opts.toggleSelect && this.val().indexOf(this.id(data)) !== -1) {\n\t\t\tvar self = this;\n\t\t\tvar val = this.id(data);\n\n\t\t\tvar selectionEls = this.container.find('.select2-search-choice').filter(function() {\n\t\t\t\treturn (self.id($(this).data('select2-data')) === val);\n\t\t\t});\n\n\t\t\tif (this.unselect(selectionEls)) {\n\t\t\t\t\/\/ also unselect in dropdown\n\t\t\t\tthis.results.find('.select2-result.select2-selected').each(function () {\n\t\t\t\t\tvar $this = $(this);\n\t\t\t\t\tif (self.id($this.data('select2-data')) === val) {\n\t\t\t\t\t\t$this.removeClass('select2-selected');\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t\tthis.clearSearch();\n\t\t\t}\n\n\t\t\treturn false;\n\t\t} else {\n\t\t\treturn Select2TriggerSelect.apply(this, arguments);\n\t\t}\n\t};\n\n})(Select2);\n\n\n\n"]},{"file":"\/var\/www\/nextcloud\/lib\/private\/Template\/JSCombiner.php","line":103,"function":"cache","class":"OC\\Template\\JSCombiner","type":"->","args":["\/var\/www\/nextcloud\/core\/js","merged-template-prepend.js",{"__class__":"OC\\Files\\SimpleFS\\SimpleFolder"}]},{"file":"\/var\/www\/nextcloud\/lib\/private\/Template\/JSResourceLocator.php","line":114,"function":"process","class":"OC\\Template\\JSCombiner","type":"->","args":["\/var\/www\/nextcloud","core\/js\/merged-template-prepend.json","core"]},{"file":"\/var\/www\/nextcloud\/lib\/private\/Template\/JSResourceLocator.php","line":70,"function":"cacheAndAppendCombineJsonIfExist","class":"OC\\Template\\JSResourceLocator","type":"->","args":["\/var\/www\/nextcloud","core\/js\/merged-template-prepend.json"]},{"file":"\/var\/www\/nextcloud\/lib\/private\/Template\/ResourceLocator.php","line":78,"function":"doFind","class":"OC\\Template\\JSResourceLocator","type":"->","args":["js\/merged-template-prepend"]},{"file":"\/var\/www\/nextcloud\/lib\/private\/TemplateLayout.php","line":341,"function":"find","class":"OC\\Template\\ResourceLocator","type":"->","args":[["core\/js\/dist\/main","js\/merged-template-prepend","search\/js\/search","core\/l10n\/en","search\/l10n\/en","search\/js\/searchprovider","js\/files\/fileinfo","js\/files\/client","js\/dist\/maintenance"]]},{"file":"\/var\/www\/nextcloud\/lib\/private\/TemplateLayout.php","line":169,"function":"findJavascriptFiles","class":"OC\\TemplateLayout","type":"::","args":[["core\/js\/dist\/main","js\/merged-template-prepend","search\/js\/search","core\/l10n\/en","search\/l10n\/en","search\/js\/searchprovider","js\/files\/fileinfo","js\/files\/client","js\/dist\/maintenance"]]},{"file":"\/var\/www\/nextcloud\/lib\/private\/legacy\/template.php","line":183,"function":"__construct","class":"OC\\TemplateLayout","type":"->","args":["error",""]},{"file":"\/var\/www\/nextcloud\/lib\/private\/Template\/Base.php","line":131,"function":"fetchPage","class":"OC_Template","type":"->","args":[]},{"file":"\/var\/www\/nextcloud\/lib\/private\/legacy\/template.php","line":332,"function":"printPage","class":"OC\\Template\\Base","type":"->","args":[]},{"file":"\/var\/www\/nextcloud\/index.php","line":69,"function":"printExceptionErrorPage","class":"OC_Template","type":"::","args":[{"__class__":"OCP\\Files\\GenericFileException"},500]}],"File":"\/var\/www\/nextcloud\/lib\/private\/Files\/Node\/File.php","Line":67,"CustomMessage":"--"},"userAgent":"Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/84.0.4147.135 Safari\/537.36","version":"17.0.3.1"}
root@DietPi:~#

communication.log

Capture

That browser console output is interesting. Is that really from the Nextcloud website? I see Google advertising and Google translator requests that are then blocked by Safari, but Nextcloud of course does not contact Google for anything such. At best:

  1. Access your Nextcloud (even if it fails)
  2. Open browser console
  3. Clear browser console, if it has any content
  4. Hit F5 key to reload the cache and full the browser console with new logs from your Nextcloud side only.

Apache log looks fine, but did you try to access the Nextcloud website before doing tail -10 /var/log/apache2/error.log?
Nextcloud logs show the same errors we already saw before, and I have no idea where this could come from to be true 🤔.

Because you run a quite old Nextcloud version, what you could do, which includes some repair steps as well, is upgrading to current version. This is actually quite easy from console, but create a database backup first:

mysqldump nextcloud > /root/nextcloud.sql
sudo -u www-data php7.3 /var/www/nextcloud/updater/updater.phar

When being ask to proceed, confirm with y.

Capture

root@DietPi:~# tail -10 /var/log/apache2/error.log
stat: cannot stat '/datastore/appdata_oc5cbhxlsgns/js/core/merged-template-prepe                                                          nd.js.deps': No such file or directory
stat: cannot stat '/datastore/appdata_oc5cbhxlsgns/js/core/merged-template-prepe                                                          nd.js.deps': No such file or directory
stat: cannot stat '/datastore/appdata_oc5cbhxlsgns/js/core/merged-template-prepe                                                          nd.js.deps': No such file or directory
stat: cannot stat '/datastore/appdata_oc5cbhxlsgns/js/core/merged-template-prepe                                                          nd.js.deps': No such file or directory
stat: cannot stat '/datastore/appdata_oc5cbhxlsgns/js/core/merged-template-prepe                                                          nd.js.deps': No such file or directory
stat: cannot stat '/datastore/appdata_oc5cbhxlsgns/js/core/merged-template-prepe                                                          nd.js.deps': No such file or directory
stat: cannot stat '/datastore/appdata_oc5cbhxlsgns/js/core/merged-template-prepe                                                          nd.js.deps': No such file or directory
stat: cannot stat '/datastore/appdata_oc5cbhxlsgns/js/core/merged-template-prepe                                                          nd.js.deps': No such file or directory
root@DietPi:~#
root@DietPi:~# mysqldump nextcloud > /root/nextcloud.sql
root@DietPi:~# sudo -u www-data php7.3 /var/www/nextcloud/updater/updater.phar
Nextcloud Updater - version: v16.0.3-3-ga0c2b25 dirty

Current version is 17.0.3.

Update to Nextcloud 17.0.9 available. (channel: "stable")
Following file will be downloaded automatically: https://download.nextcloud.com/server/releases/nextcloud-17.0.9.zip
Open changelog ↗

Steps that will be executed:
[ ] Check for expected files
[ ] Check for write permissions
[ ] Create backup
[ ] Downloading
[ ] Verify integrity
[ ] Extracting
[ ] Enable maintenance mode
[ ] Replace entry points
[ ] Delete old files
[ ] Move new files in place
[ ] Done

Start update? [y/N] y

Info: Pressing Ctrl-C will finish the currently running step and then stops the updater.

[✘] Check for expected files failed
The following extra files have been found:
    index.htm

Update failed. To resume or retry just execute the updater again.
root@DietPi:~#

Ah sorry, the test file needs to be removed:

rm /var/www/nextcloud/index.htm
sudo -u www-data php7.3 /var/www/nextcloud/updater/updater.phar

I activated the maintenance I did not if I did it right


Logfile attached. Click to expand!

root@DietPi:~# rm /var/www/nextcloud/index.htm
rm: impossible de supprimer '/var/www/nextcloud/index.htm': Aucun fichier ou dossier de ce type
root@DietPi:~# sudo -u www-data php7.3 /var/www/nextcloud/updater/updater.phar
Nextcloud Updater - version: v16.0.3-3-ga0c2b25 dirty

Current version is 17.0.3.

Update to Nextcloud 17.0.9 available. (channel: "stable")
Following file will be downloaded automatically: https://download.nextcloud.com/server/releases/nextcloud-17.0.9.zip
Open changelog ↗

Steps that will be executed:
[ ] Check for expected files
[ ] Check for write permissions
[ ] Create backup
[ ] Downloading
[ ] Verify integrity
[ ] Extracting
[ ] Enable maintenance mode
[ ] Replace entry points
[ ] Delete old files
[ ] Move new files in place
[ ] Done

Start update? [y/N] y

Info: Pressing Ctrl-C will finish the currently running step and then stops the updater.

[✔] Check for expected files
[✔] Check for write permissions
[✔] Create backup
[✔] Downloading
[✔] Verify integrity
[✔] Extracting
[✔] Enable maintenance mode
[✔] Replace entry points
[✔] Delete old files
[✔] Move new files in place
[✔] Done

Update of code successful.

Should the "occ upgrade" command be executed? [Y/n] y
Nextcloud or one of the apps require upgrade - only a limited number of commands are available
You may use your browser or the occ upgrade command to do the upgrade
2020-10-06T18:32:20+00:00 Set log level to debug
2020-10-06T18:32:36+00:00 Repair step: Repair MySQL collation
2020-10-06T18:32:37+00:00 Repair info: All tables already have the correct collation -> nothing to do
2020-10-06T18:32:37+00:00 Repair step: Repair SQLite autoincrement
2020-10-06T18:32:37+00:00 Repair step: Copy data from accounts table when migrating from ownCloud
2020-10-06T18:32:37+00:00 Repair step: Drop account terms table when migrating from ownCloud
2020-10-06T18:32:37+00:00 Updating database schema
2020-10-06T18:32:38+00:00 Updated database
2020-10-06T18:32:38+00:00 Updating <files_rightclick> ...
2020-10-06T18:32:41+00:00 Updated <files_rightclick> to 0.14.2
2020-10-06T18:32:41+00:00 Updating <support> ...
2020-10-06T18:32:42+00:00 Repair step: Switches from default updater server to the customer one if a valid subscription is available
2020-10-06T18:32:42+00:00 Updated <support> to 1.0.2
2020-10-06T18:32:42+00:00 Checking for update of app accessibility in appstore
stat: impossible d'évaluer '/datastore/appdata_oc5cbhxlsgns/appstore/apps.json': Aucun fichier ou dossier de ce type
2020-10-06T18:32:51+00:00 Checked for update of app "accessibility" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app activity in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "activity" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app audioplayer in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "audioplayer" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app bruteforcesettings in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "bruteforcesettings" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app cloud_federation_api in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "cloud_federation_api" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app comments in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "comments" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app dav in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "dav" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app federatedfilesharing in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "federatedfilesharing" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app federation in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "federation" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app files in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "files" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app files_pdfviewer in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "files_pdfviewer" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app files_rightclick in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "files_rightclick" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app files_sharing in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "files_sharing" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app files_trashbin in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "files_trashbin" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app files_versions in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "files_versions" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app files_videoplayer in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "files_videoplayer" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app firstrunwizard in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "firstrunwizard" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app flowupload in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "flowupload" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app gallery in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "gallery" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app logreader in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "logreader" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app lookup_server_connector in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "lookup_server_connector" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app nextcloud_announcements in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "nextcloud_announcements" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app notifications in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "notifications" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app oauth2 in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "oauth2" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app password_policy in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "password_policy" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app privacy in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "privacy" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app provisioning_api in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "provisioning_api" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app recommendations in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "recommendations" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app serverinfo in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "serverinfo" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app sharebymail in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "sharebymail" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app socialsharing_facebook in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "socialsharing_facebook" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app support in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "support" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app survey_client in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "survey_client" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app systemtags in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "systemtags" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app text in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "text" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app theming in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "theming" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app twofactor_backupcodes in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "twofactor_backupcodes" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app updatenotification in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "updatenotification" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app viewer in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "viewer" in appstore
2020-10-06T18:32:51+00:00 Checking for update of app workflowengine in appstore
2020-10-06T18:32:51+00:00 Checked for update of app "workflowengine" in appstore
2020-10-06T18:32:51+00:00 Repair step: Repair MySQL collation
2020-10-06T18:32:51+00:00 Repair info: All tables already have the correct collation -> nothing to do
2020-10-06T18:32:51+00:00 Repair step: Repair mime types
2020-10-06T18:32:51+00:00 Repair step: Clean tags and favorites
2020-10-06T18:32:51+00:00 Repair info: 0 tags of deleted users have been removed.
2020-10-06T18:32:51+00:00 Repair info: 0 tags for delete files have been removed.
2020-10-06T18:32:51+00:00 Repair info: 0 tag entries for deleted tags have been removed.
2020-10-06T18:32:51+00:00 Repair info: 0 tags with no entries have been removed.
2020-10-06T18:32:51+00:00 Repair step: Repair invalid shares
2020-10-06T18:32:51+00:00 Repair step: Move .step file of updater to backup location
2020-10-06T18:32:51+00:00 Repair info: .step file exists
2020-10-06T18:32:51+00:00 Repair info: .step file moved to .step-previous-update
2020-10-06T18:32:51+00:00 Repair step: Fix potential broken mount points
2020-10-06T18:32:51+00:00 Repair info: No mounts updated
2020-10-06T18:32:51+00:00 Repair step: Add log rotate job
2020-10-06T18:32:51+00:00 Repair step: Clear frontend caches
2020-10-06T18:32:51+00:00 Repair info: Image cache cleared
2020-10-06T18:32:52+00:00 Repair info: SCSS cache cleared
2020-10-06T18:32:53+00:00 Repair info: JS cache cleared
2020-10-06T18:32:53+00:00 Repair step: Clear every generated avatar on major updates
2020-10-06T18:32:53+00:00 Repair step: Add preview background cleanup job
2020-10-06T18:32:53+00:00 Repair step: Queue a one-time job to cleanup old backups of the updater
2020-10-06T18:32:53+00:00 Repair step: Cleanup invalid photocache files for carddav
2020-10-06T18:32:53+00:00 Repair step: Add background job to cleanup login flow v2 tokens
2020-10-06T18:32:53+00:00 Repair step: Remove potentially over exposing share links
2020-10-06T18:32:53+00:00 Repair info: No need to remove link shares.
2020-10-06T18:32:53+00:00 Repair step: Clear access cache of projects
2020-10-06T18:32:53+00:00 Repair step: Cleanup cypress files from viewer app
2020-10-06T18:33:20+00:00 Repair step: Switches from deprecated "production" to "stable" update channel
2020-10-06T18:33:20+00:00 Repair step: Sets the enterprise logo
2020-10-06T18:33:20+00:00 Repair info: Repair step already executed
2020-10-06T18:33:20+00:00 Starting code integrity check...
2020-10-06T18:33:47+00:00 Finished code integrity check
2020-10-06T18:33:47+00:00 Update successful
2020-10-06T18:33:47+00:00 Maintenance mode is kept active
2020-10-06T18:33:47+00:00 Reset log level

Keep maintenance mode active? [y/N] y
Maintenance mode kept active
root@DietPi:~# Keep maintenance mode active?
-bash: Keep : commande introuvable
root@DietPi:~#

Hi,

you could try following to disable maintenance mode

ncc maintenance:mode --off

Exactly. If there is no special reason to stay on Nextcloud 17, version 20 is already available. I think if you repeat

sudo -u www-data php7.3 /var/www/nextcloud/updater/updater.phar

would get offered to install from one major version to the next, so first Nextcloud 18, then 19 and maybe already 20 (although it is quite new and released in waves).

I've just finished the updates


Logfile attached. Click to expand!

root@DietPi:~# sudo -u www-data php7.3 /var/www/nextcloud/updater/updater.phar
Nextcloud Updater - version: v16.0.3-3-ga0c2b25 dirty

Current version is 18.0.9.

Update to Nextcloud 19.0.3 available. (channel: "stable")
Following file will be downloaded automatically: https://download.nextcloud.com/server/releases/nextcloud-19.0.3.zip
Open changelog ↗

Steps that will be executed:
[ ] Check for expected files
[ ] Check for write permissions
[ ] Create backup
[ ] Downloading
[ ] Verify integrity
[ ] Extracting
[ ] Enable maintenance mode
[ ] Replace entry points
[ ] Delete old files
[ ] Move new files in place
[ ] Done

Start update? [y/N] y

Info: Pressing Ctrl-C will finish the currently running step and then stops the updater.

[✔] Check for expected files
[✔] Check for write permissions
[✔] Create backup
[✔] Downloading
[✔] Verify integrity
[✔] Extracting
[✔] Enable maintenance mode
[✔] Replace entry points
[✔] Delete old files
[✔] Move new files in place
[✔] Done

Update of code successful.

Should the "occ upgrade" command be executed? [Y/n] y
Nextcloud or one of the apps require upgrade - only a limited number of commands are available
You may use your browser or the occ upgrade command to do the upgrade
2020-10-07T17:28:12+00:00 Set log level to debug
2020-10-07T17:28:12+00:00 Repair step: Repair MySQL collation
2020-10-07T17:28:13+00:00 Repair info: All tables already have the correct collation -> nothing to do
2020-10-07T17:28:13+00:00 Repair step: Repair SQLite autoincrement
2020-10-07T17:28:13+00:00 Repair step: Copy data from accounts table when migrating from ownCloud
2020-10-07T17:28:14+00:00 Repair step: Drop account terms table when migrating from ownCloud
2020-10-07T17:28:14+00:00 Updating database schema
2020-10-07T17:28:17+00:00 Updated database
2020-10-07T17:28:17+00:00 Disabled incompatible app: audioplayer
2020-10-07T17:28:17+00:00 Disabled incompatible app: bruteforcesettings
2020-10-07T17:28:17+00:00 Disabled incompatible app: flowupload
2020-10-07T17:28:17+00:00 Updating <accessibility> ...
2020-10-07T17:28:17+00:00 Repair step: Migrate old user config
2020-10-07T17:28:17+00:00 Migrate old user config
2020-10-07T17:28:17+00:00
2020-10-07T17:28:17+00:00  Starting ...
    0/0 [>-]   0%2020-10-07T17:28:17+00:00
2020-10-07T17:28:18+00:00 Updated <accessibility> to 1.5.0
2020-10-07T17:28:18+00:00 Updating <federatedfilesharing> ...
2020-10-07T17:28:18+00:00 Updated <federatedfilesharing> to 1.9.0
2020-10-07T17:28:18+00:00 Updating <files_pdfviewer> ...
2020-10-07T17:28:19+00:00 Updated <files_pdfviewer> to 1.8.0
2020-10-07T17:28:19+00:00 Updating <files_rightclick> ...
2020-10-07T17:28:20+00:00 Updated <files_rightclick> to 0.16.0
2020-10-07T17:28:20+00:00 Updating <files_videoplayer> ...
2020-10-07T17:28:22+00:00 Updated <files_videoplayer> to 1.8.0
2020-10-07T17:28:22+00:00 Updating <logreader> ...
2020-10-07T17:28:23+00:00 Updated <logreader> to 2.4.0
2020-10-07T17:28:23+00:00 Updating <password_policy> ...
2020-10-07T17:28:23+00:00 Updated <password_policy> to 1.9.1
2020-10-07T17:28:23+00:00 Updating <photos> ...
2020-10-07T17:28:24+00:00 Updated <photos> to 1.1.0
2020-10-07T17:28:24+00:00 Updating <privacy> ...
2020-10-07T17:28:25+00:00 Updated <privacy> to 1.3.0
2020-10-07T17:28:25+00:00 Updating <provisioning_api> ...
2020-10-07T17:28:26+00:00 Updated <provisioning_api> to 1.9.0
2020-10-07T17:28:26+00:00 Updating <recommendations> ...
2020-10-07T17:28:26+00:00 Updated <recommendations> to 0.7.0
2020-10-07T17:28:26+00:00 Updating <serverinfo> ...
2020-10-07T17:28:27+00:00 Updated <serverinfo> to 1.9.0
2020-10-07T17:28:27+00:00 Updating <settings> ...
2020-10-07T17:28:28+00:00 Updated <settings> to 1.1.0
2020-10-07T17:28:28+00:00 Updating <support> ...
2020-10-07T17:28:29+00:00 Repair step: Switches from default updater server to the customer one if a valid subscription is available
2020-10-07T17:28:29+00:00 Repair info: Repair step already executed
2020-10-07T17:28:29+00:00 Updated <support> to 1.2.1
2020-10-07T17:28:29+00:00 Updating <survey_client> ...
2020-10-07T17:28:29+00:00 Updated <survey_client> to 1.7.0
2020-10-07T17:28:29+00:00 Updating <text> ...
2020-10-07T17:28:32+00:00 Updated <text> to 3.0.1
2020-10-07T17:28:32+00:00 Updating <twofactor_backupcodes> ...
2020-10-07T17:28:33+00:00 Repair step: Add background job to check for backup codes
2020-10-07T17:28:33+00:00 Updated <twofactor_backupcodes> to 1.8.0
2020-10-07T17:28:33+00:00 Updating <updatenotification> ...
2020-10-07T17:28:34+00:00 Updated <updatenotification> to 1.9.0
2020-10-07T17:28:34+00:00 Updating <viewer> ...
2020-10-07T17:28:35+00:00 Updated <viewer> to 1.3.0
2020-10-07T17:28:35+00:00 Updating <federation> ...
2020-10-07T17:28:35+00:00 Updated <federation> to 1.9.0
2020-10-07T17:28:35+00:00 Updating <lookup_server_connector> ...
2020-10-07T17:28:36+00:00 Updated <lookup_server_connector> to 1.7.0
2020-10-07T17:28:36+00:00 Updating <oauth2> ...
2020-10-07T17:28:37+00:00 Repair step: Update OAuth token expiration times
2020-10-07T17:28:37+00:00 Updated <oauth2> to 1.7.0
2020-10-07T17:28:37+00:00 Updating <files> ...
2020-10-07T17:28:38+00:00 Updated <files> to 1.14.0
2020-10-07T17:28:38+00:00 Updating <activity> ...
2020-10-07T17:28:38+00:00 Updated <activity> to 2.12.0
2020-10-07T17:28:38+00:00 Updating <cloud_federation_api> ...
2020-10-07T17:28:39+00:00 Updated <cloud_federation_api> to 1.2.0
2020-10-07T17:28:39+00:00 Updating <dav> ...
2020-10-07T17:28:40+00:00 Repair step: Fix component of birthday calendars
2020-10-07T17:28:40+00:00 Repair info: 5 birthday calendars updated.
2020-10-07T17:28:40+00:00 Repair step: Regenerating birthday calendars to use new icons and fix old birthday events without year
2020-10-07T17:28:40+00:00 Repair info: Repair step already executed
2020-10-07T17:28:40+00:00 Repair step: Fix broken values of calendar objects
2020-10-07T17:28:40+00:00 Fix broken values of calendar objects
2020-10-07T17:28:40+00:00
2020-10-07T17:28:40+00:00  Starting ...
    0/0 [->]   0%2020-10-07T17:28:40+00:00
2020-10-07T17:28:40+00:00 Repair step: Registering building of calendar search index as background job
2020-10-07T17:28:40+00:00 Repair info: Repair step already executed
2020-10-07T17:28:40+00:00 Repair step: Registering background jobs to update cache for webcal calendars
2020-10-07T17:28:40+00:00 Repair info: Added 0 background jobs to update webcal calendars
2020-10-07T17:28:40+00:00 Repair step: Registering building of calendar reminder index as background job
2020-10-07T17:28:40+00:00 Repair info: Repair step already executed
2020-10-07T17:28:40+00:00 Repair step: Clean up orphan event and contact data
2020-10-07T17:28:40+00:00 Repair info: 0 events without a calendar have been cleaned up
2020-10-07T17:28:40+00:00 Repair info: 0 properties without an events have been cleaned up
2020-10-07T17:28:40+00:00 Repair info: 0 changes without a calendar have been cleaned up
2020-10-07T17:28:40+00:00 Repair info: 0 cached events without a calendar subscription have been cleaned up
2020-10-07T17:28:40+00:00 Repair info: 0 changes without a calendar subscription have been cleaned up
2020-10-07T17:28:40+00:00 Repair info: 0 contacts without an addressbook have been cleaned up
2020-10-07T17:28:40+00:00 Repair info: 0 properties without a contact have been cleaned up
2020-10-07T17:28:40+00:00 Repair info: 0 changes without an addressbook have been cleaned up
2020-10-07T17:28:40+00:00 Repair step: Remove activity entries of private events
2020-10-07T17:28:40+00:00 Repair info: Removed 0 activity entries
2020-10-07T17:28:41+00:00 Updated <dav> to 1.15.0
2020-10-07T17:28:41+00:00 Updating <files_sharing> ...
2020-10-07T17:28:42+00:00 Repair step: Fix the share type of guest shares when migrating from ownCloud
2020-10-07T17:28:42+00:00 Repair step: Copy the share password into the dedicated column
2020-10-07T17:28:42+00:00 Repair step: Set existing shares as accepted
2020-10-07T17:28:42+00:00 Updated <files_sharing> to 1.11.0
2020-10-07T17:28:42+00:00 Updating <files_trashbin> ...
2020-10-07T17:28:43+00:00 Updated <files_trashbin> to 1.9.0
2020-10-07T17:28:43+00:00 Updating <files_versions> ...
2020-10-07T17:28:44+00:00 Updated <files_versions> to 1.12.0
2020-10-07T17:28:44+00:00 Updating <sharebymail> ...
2020-10-07T17:28:45+00:00 Updated <sharebymail> to 1.9.0
2020-10-07T17:28:45+00:00 Updating <workflowengine> ...
2020-10-07T17:28:46+00:00 Repair step: Populating added database structures for workflows
2020-10-07T17:28:46+00:00 Updated <workflowengine> to 2.1.0
2020-10-07T17:28:46+00:00 Updating <comments> ...
2020-10-07T17:28:53+00:00 Updated <comments> to 1.9.0
2020-10-07T17:28:53+00:00 Updating <firstrunwizard> ...
2020-10-07T17:28:56+00:00 Updated <firstrunwizard> to 2.8.0
2020-10-07T17:28:56+00:00 Updating <nextcloud_announcements> ...
2020-10-07T17:28:59+00:00 Updated <nextcloud_announcements> to 1.8.0
2020-10-07T17:28:59+00:00 Updating <notifications> ...
2020-10-07T17:29:01+00:00 Updated <notifications> to 2.7.0
2020-10-07T17:29:01+00:00 Updating <systemtags> ...
2020-10-07T17:29:02+00:00 Updated <systemtags> to 1.9.0
2020-10-07T17:29:02+00:00 Updating <theming> ...
2020-10-07T17:29:02+00:00 Updated <theming> to 1.10.0
2020-10-07T17:29:03+00:00 Checking for update of app accessibility in appstore
stat: impossible d'évaluer '/datastore/appdata_oc5cbhxlsgns/appstore/apps.json': Aucun fichier ou dossier de ce type
2020-10-07T17:29:06+00:00 Checked for update of app "accessibility" in appstore
2020-10-07T17:29:06+00:00 Checking for update of app activity in appstore
2020-10-07T17:29:06+00:00 Checked for update of app "activity" in appstore
2020-10-07T17:29:06+00:00 Checking for update of app cloud_federation_api in appstore
2020-10-07T17:29:06+00:00 Checked for update of app "cloud_federation_api" in appstore
2020-10-07T17:29:06+00:00 Checking for update of app comments in appstore
2020-10-07T17:29:06+00:00 Checked for update of app "comments" in appstore
2020-10-07T17:29:06+00:00 Checking for update of app dav in appstore
2020-10-07T17:29:06+00:00 Checked for update of app "dav" in appstore
2020-10-07T17:29:06+00:00 Checking for update of app federatedfilesharing in appstore
2020-10-07T17:29:06+00:00 Checked for update of app "federatedfilesharing" in appstore
2020-10-07T17:29:06+00:00 Checking for update of app federation in appstore
2020-10-07T17:29:06+00:00 Checked for update of app "federation" in appstore
2020-10-07T17:29:06+00:00 Checking for update of app files in appstore
2020-10-07T17:29:06+00:00 Checked for update of app "files" in appstore
2020-10-07T17:29:06+00:00 Checking for update of app files_pdfviewer in appstore
2020-10-07T17:29:06+00:00 Checked for update of app "files_pdfviewer" in appstore
2020-10-07T17:29:06+00:00 Checking for update of app files_rightclick in appstore
2020-10-07T17:29:06+00:00 Checked for update of app "files_rightclick" in appstore
2020-10-07T17:29:06+00:00 Checking for update of app files_sharing in appstore
2020-10-07T17:29:06+00:00 Checked for update of app "files_sharing" in appstore
2020-10-07T17:29:06+00:00 Checking for update of app files_trashbin in appstore
2020-10-07T17:29:06+00:00 Checked for update of app "files_trashbin" in appstore
2020-10-07T17:29:06+00:00 Checking for update of app files_versions in appstore
2020-10-07T17:29:06+00:00 Checked for update of app "files_versions" in appstore
2020-10-07T17:29:06+00:00 Checking for update of app files_videoplayer in appstore
2020-10-07T17:29:06+00:00 Checked for update of app "files_videoplayer" in appstore
2020-10-07T17:29:06+00:00 Checking for update of app firstrunwizard in appstore
2020-10-07T17:29:06+00:00 Checked for update of app "firstrunwizard" in appstore
2020-10-07T17:29:06+00:00 Checking for update of app logreader in appstore
2020-10-07T17:29:07+00:00 Checked for update of app "logreader" in appstore
2020-10-07T17:29:07+00:00 Checking for update of app lookup_server_connector in appstore
2020-10-07T17:29:07+00:00 Checked for update of app "lookup_server_connector" in appstore
2020-10-07T17:29:07+00:00 Checking for update of app nextcloud_announcements in appstore
2020-10-07T17:29:07+00:00 Checked for update of app "nextcloud_announcements" in appstore
2020-10-07T17:29:07+00:00 Checking for update of app notifications in appstore
2020-10-07T17:29:07+00:00 Checked for update of app "notifications" in appstore
2020-10-07T17:29:07+00:00 Checking for update of app oauth2 in appstore
2020-10-07T17:29:07+00:00 Checked for update of app "oauth2" in appstore
2020-10-07T17:29:07+00:00 Checking for update of app password_policy in appstore
2020-10-07T17:29:07+00:00 Checked for update of app "password_policy" in appstore
2020-10-07T17:29:07+00:00 Checking for update of app photos in appstore
2020-10-07T17:29:07+00:00 Checked for update of app "photos" in appstore
2020-10-07T17:29:07+00:00 Checking for update of app privacy in appstore
2020-10-07T17:29:07+00:00 Checked for update of app "privacy" in appstore
2020-10-07T17:29:07+00:00 Checking for update of app provisioning_api in appstore
2020-10-07T17:29:07+00:00 Checked for update of app "provisioning_api" in appstore
2020-10-07T17:29:07+00:00 Checking for update of app recommendations in appstore
2020-10-07T17:29:07+00:00 Checked for update of app "recommendations" in appstore
2020-10-07T17:29:07+00:00 Checking for update of app serverinfo in appstore
2020-10-07T17:29:07+00:00 Checked for update of app "serverinfo" in appstore
2020-10-07T17:29:07+00:00 Checking for update of app settings in appstore
2020-10-07T17:29:07+00:00 Checked for update of app "settings" in appstore
2020-10-07T17:29:07+00:00 Checking for update of app sharebymail in appstore
2020-10-07T17:29:07+00:00 Checked for update of app "sharebymail" in appstore
2020-10-07T17:29:07+00:00 Checking for update of app support in appstore
2020-10-07T17:29:07+00:00 Checked for update of app "support" in appstore
2020-10-07T17:29:07+00:00 Checking for update of app survey_client in appstore
2020-10-07T17:29:07+00:00 Checked for update of app "survey_client" in appstore
2020-10-07T17:29:07+00:00 Checking for update of app systemtags in appstore
2020-10-07T17:29:07+00:00 Checked for update of app "systemtags" in appstore
2020-10-07T17:29:07+00:00 Checking for update of app text in appstore
2020-10-07T17:29:07+00:00 Checked for update of app "text" in appstore
2020-10-07T17:29:07+00:00 Checking for update of app theming in appstore
2020-10-07T17:29:07+00:00 Checked for update of app "theming" in appstore
2020-10-07T17:29:07+00:00 Checking for update of app twofactor_backupcodes in appstore
2020-10-07T17:29:07+00:00 Checked for update of app "twofactor_backupcodes" in appstore
2020-10-07T17:29:07+00:00 Checking for update of app updatenotification in appstore
2020-10-07T17:29:07+00:00 Checked for update of app "updatenotification" in appstore
2020-10-07T17:29:07+00:00 Checking for update of app viewer in appstore
2020-10-07T17:29:07+00:00 Checked for update of app "viewer" in appstore
2020-10-07T17:29:07+00:00 Checking for update of app workflowengine in appstore
2020-10-07T17:29:07+00:00 Checked for update of app "workflowengine" in appstore
2020-10-07T17:29:07+00:00 Checking for update of app audioplayer in appstore
2020-10-07T17:29:07+00:00 Checked for update of app "audioplayer" in appstore
2020-10-07T17:29:07+00:00 Checking for update of app bruteforcesettings in appstore
2020-10-07T17:29:07+00:00 Checked for update of app "bruteforcesettings" in appstore
2020-10-07T17:29:07+00:00 Checking for update of app flowupload in appstore
2020-10-07T17:29:07+00:00 Checked for update of app "flowupload" in appstore
2020-10-07T17:29:10+00:00 Repair step: Repair MySQL collation
2020-10-07T17:29:10+00:00 Repair info: All tables already have the correct collation -> nothing to do
2020-10-07T17:29:10+00:00 Repair step: Repair mime types
2020-10-07T17:29:10+00:00 Repair step: Clean tags and favorites
2020-10-07T17:29:10+00:00 Repair info: 0 tags of deleted users have been removed.
2020-10-07T17:29:10+00:00 Repair info: 0 tags for delete files have been removed.
2020-10-07T17:29:10+00:00 Repair info: 0 tag entries for deleted tags have been removed.
2020-10-07T17:29:10+00:00 Repair info: 0 tags with no entries have been removed.
2020-10-07T17:29:10+00:00 Repair step: Repair invalid shares
2020-10-07T17:29:10+00:00 Repair step: Move .step file of updater to backup location
2020-10-07T17:29:10+00:00 Repair info: .step file exists
2020-10-07T17:29:10+00:00 Repair info: .step file moved to .step-previous-update
2020-10-07T17:29:10+00:00 Repair step: Fix potential broken mount points
2020-10-07T17:29:10+00:00 Repair info: No mounts updated
2020-10-07T17:29:10+00:00 Repair step: Add log rotate job
2020-10-07T17:29:10+00:00 Repair step: Clear frontend caches
2020-10-07T17:29:10+00:00 Repair info: Image cache cleared
2020-10-07T17:29:10+00:00 Repair info: SCSS cache cleared
2020-10-07T17:29:10+00:00 Repair info: JS cache cleared
2020-10-07T17:29:10+00:00 Repair step: Clear every generated avatar on major updates
2020-10-07T17:29:10+00:00 Repair step: Add preview background cleanup job
2020-10-07T17:29:10+00:00 Repair step: Queue a one-time job to cleanup old backups of the updater
2020-10-07T17:29:10+00:00 Repair step: Cleanup invalid photocache files for carddav
2020-10-07T17:29:10+00:00 Repair step: Add background job to cleanup login flow v2 tokens
2020-10-07T17:29:10+00:00 Repair step: Remove potentially over exposing share links
2020-10-07T17:29:10+00:00 Repair info: No need to remove link shares.
2020-10-07T17:29:10+00:00 Repair step: Clear access cache of projects
2020-10-07T17:29:10+00:00 Repair step: Reset generated avatar flag
2020-10-07T17:29:10+00:00 Starting code integrity check...
2020-10-07T17:29:45+00:00 Finished code integrity check
2020-10-07T17:29:45+00:00 Update successful
2020-10-07T17:29:45+00:00 Maintenance mode is kept active
2020-10-07T17:29:45+00:00 Reset log level

Keep maintenance mode active? [y/N] n
Maintenance mode disabled

Maintenance mode is disabled

root@DietPi:~# sudo -u www-data php7.3 /var/www/nextcloud/updater/updater.phar
Nextcloud Updater - version: v18.0.6-11-g50bdca3 dirty

Current version is 19.0.3.

No update available.

Nothing to do.
root@DietPi:~#

Okay assure to clear all your browsers cache (at least for your Nextcloud site) and test all of them. Would be good to know which browsers/clients fail, if it's still the same with the same error message.

i've done all of them google firfox, safari nothing works
on some forum it says to change :chown -R www-data:www-data/.

on some forum it says to change :chown -R www-data:www-data/.

You did this already: https://github.com/MichaIng/DietPi/issues/3798#issuecomment-702327690

But now I am re-thinking the errors you faced, probably there is simply a file system corruption that breaks access to some app data. E.g. how does the following look like?

ls -al /datastore/appdata_oc5cbhxlsgns/preview/40420

And did we already ask to check for kernel errors?

dmesg -l emerg,alert,crit,err

And did we already ask to check for kernel errors?

No

 dietpi-launcher : All the DietPi programs in one place.
 dietpi-config   : Feature rich configuration tool for your device.
 dietpi-software : Select optimized software for installation.
 htop            : Resource monitor.
 cpu             : Shows CPU information and stats.

root@DietPi:~# dmesg -l emerg,alert,crit,err
[    0.972965] vc_vchi_sm_init: failed to open VCHI service (-1)
[    0.972974] [vc_sm_connected_init]: failed to initialize shared memory service
[    3.811878] vc_sm_cma_vchi_init: failed to open VCHI service (-1)
[    3.811897] [vc_sm_connected_init]: failed to initialize shared memory service
[  481.673776] sd 1:0:0:0: [sdb] No Caching mode page found
[  481.673788] sd 1:0:0:0: [sdb] Assuming drive cache: write through
root@DietPi:~#

Okay, no kernel errors. What does the following show?

ls -al /datastore/appdata_oc5cbhxlsgns/preview/40420
ls -al /datastore/appdata_oc5cbhxlsgns/js/core/merged-template-prepend.js.deps

Also I recognise now the browser console screenshot that indeed shows failing Google translator request from your Nextcloud site. Do you have something like automated website translation enabled in your browser(s)? Try to disable this, also I would render it kind off a privacy/security issue to send the whole private Nextcloud site content, probably including private keys and passwords (e.g. when opening the admin panel) over to a Google server. You should definitely try to disable this, even that it seems to be (partly) blocked anyway 😉.

btw I'm able to get the logon page without issues.

picture

i have disabled google extentions

root@DietPi:~# ls -al /datastore/appdata_oc5cbhxlsgns/preview/40420
ls: impossible d'accéder à '/datastore/appdata_oc5cbhxlsgns/preview/40420': Aucun fichier ou dossier de ce type
root@DietPi:~# ls -al /datastore/appdata_oc5cbhxlsgns/js/core/merged-template-prepend.js.deps
ls: impossible d'accéder à '/datastore/appdata_oc5cbhxlsgns/js/core/merged-template-prepend.js.deps': Aucun fichier ou dossier de ce type
root@DietPi:~#

Capture

Now I also cannot reach the website. Can you please paste:

getent hosts nextcloud-myweb.ddns.net
curl https://dietpi.com/myip.php;echo

is there a problem with my dietpi I have to remove my backup disk to have access to the putty?

Do not remove any backups at this stage. The SSH access to your server should not be affected in any way.

Now I see the file not found errors you pasted. Does the directory actually exist, in case your instance ID is wrong. When you have SSH access in addition to the above, please paste the output of the below commands as well:

ls -Al /datastore/appdata_*
grep instanceid /var/www/nextcloud/config/config.php

hmm quite strange, yesterday I was able to connect to that side. Today not. 🤔

my raspberryPi doesn't want to know anything anymore no more connection no more recognised ssd disk no more indicator light

I think I have to buy another one.

did you try to remove power? Do you have a spare SD card?

Marking this as closed. Feel free to reopen if further help is required.

Was this page helpful?
0 / 5 - 0 ratings