srepper

Members
  • Posts

    23
  • Joined

  • Last visited

Everything posted by srepper

  1. Hey community, For getting access to my homelab I am using wireguard. Wireguard is installed on my OPNsense router. Sadly, I have a few of docker who using VPN. All of them are unable to connect. I have an access to the bridge dockers (192.168.1.x), but not to the "sabnzbd-vpn" (192.168.1.14:8080) docker. How can I access the VPN-docker from outside? Setup: - OPNsense ( + wireguard ) 192.168.1.9 - Unraid ( VPN-docker ) 192.168.1.2 - Wireguard Network: 10.0.0.0/24 Configuration: Settings -> Docker -> Host access to custom networks: enabled Settings -> Docker -> Pv4 custom network on interface br0: Subnet: 192.168.1.0/24 Gateway: 192.168.1.9 DHCP pool: not set Settings -> Networks (Added with following command $: route add -net 10.0.0.0/24 gw 192.168.1.1 ) I am lost. A few forums and AI's told me I have to set routes (show the picture above ). But I don't understand how. The AI say me following stuff: For OPNsense, you would add a static route as follows: Navigate to System > Routes > Configuration in the OPNsense web interface. Add a New Route: Click on the "+" button to add a new route. Configure the Route: Enter the destination network (e.g., 192.168.1.0/24 for the Unraid server network) and select the WireGuard interface as the gateway Apply Changes: Save the configuration and apply the changes. But I have not a wireguard interface at the gateway- best wishes ( please help me )
  2. thanks for response I forgot to upload my setting
  3. Hey Squad, I can't activate my vpn server, does someone know why? ( from extern port 58120 is closed ) Port 58120 is forwarding from extern to intern via fritzbox UPNP is activate but unraid think it is not. So in the config it is disabled. Static rules: Wireguard config:
  4. the container radarr, sabnzbd and sonarr going through delugevpn. On all of this container I get following error if I want to open the console:
  5. Thank you! I change it back to 443. Locally is everything fine, but not in swag. I get 502 Error, but my log and the config.php looks fine. I added nextcloud in the trusted domain.
  6. Thanks, I read the handbook again. Reinstalled everything. In this case my docker named on 'nextcloud' with port 9443 swag is on port 1443 and 180 (forwarding in router 443:1443, 180:80) didn't touch the default in site-confs/ just $: mv nextcloud.subdomain.conf.sample nextcloud.subdomain.conf in the next way I change the config in this way: (look at the picture, changed server_name and port. changed the config in the nextcloud. (look at the picture) after a restart, I got error 502 when I want going to my website. In the tutorial we get help for this: The dockernetwork is in the same network. the container has the same name. I changed the port from 443 to 9443 ( changed the config also ) resolver should be 127.0.0.11, but why? default is by me 1.1.1.1 both do errors.
  7. nextcloud/config/config.php <?php $CONFIG = array ( 'htaccess.RewriteBase' => '/', 'memcache.local' => '\\OC\\Memcache\\APCu', 'apps_paths' => array ( 0 => array ( 'path' => '/var/www/html/apps', 'url' => '/apps', 'writable' => false, ), 1 => array ( 'path' => '/var/www/html/custom_apps', 'url' => '/custom_apps', 'writable' => true, ), ), 'instanceid' => 'oxpbb9w', 'passwordsalt' => 'pw', 'secret' => 'password', 'trusted_domains' => array ( 0 => '192.168.1.2:8666', ## Nextcloud 1 => 'https://nextcloud.de', ## Domain 2 => '192.168.1.2:1443', ## SWAG Container ), 'datadirectory' => '/var/www/html/data', 'dbtype' => 'mysql', 'version' => '25.0.3.2', 'overwrite.cli.url' => 'https://nextcloud.de', 'dbname' => 'database', 'dbhost' => '192.168.1.2:3306', 'dbport' => '', 'dbtableprefix' => 'oc_', 'mysql.utf8mb4' => true, 'dbuser' => 'user', 'dbpassword' => 'password', 'installed' => true, 'filesystem_check_changes' => 1, ); proxy-confs/nextcloud.subdomain.config server { listen 443 ssl; listen [::]:443 ssl; server_name patrickseemann.de; include /config/nginx/ssl.conf; client_max_body_size 0; location / { include /config/nginx/proxy.conf; include /config/nginx/resolver.conf; set $upstream_app Nextcloud; ## My Container is with a big N set $upstream_port 8666; ## Port of the container set $upstream_proto https; proxy_pass $upstream_proto://$upstream_app:$upstream_port; proxy_hide_header X-Frame-Options; proxy_max_temp_file_size 2048m; } } site-confs/default.conf # redirect all traffic to https server { listen 80; listen [::]:80; server_name nextclouddomain.de; return 301 https://nextclouddomain.de; } # main server block server { listen 443 ssl http2; listen [::]:443 ssl http2; server_name nextclouddomain.de; #root /config/www; # index index.html index.htm index.php; # enable subfolder method reverse proxy confs #include /config/nginx/proxy-confs/*.subfolder.conf; include /config/nginx/proxy-confs/*.subdomain.conf; ## should include my nextcloud.subdomain.conf # enable for ldap auth (requires ldap-location.conf in the location block) #include /config/nginx/ldap-server.conf; # enable for Authelia (requires authelia-location.conf in the location block) #include /config/nginx/authelia-server.conf; # enable for Authentik (requires authentik-location.conf in the location block) #include /config/nginx/authentik-server.conf; location / { # enable for basic auth #auth_basic "Restricted"; #auth_basic_user_file /config/nginx/.htpasswd; # enable for ldap auth (requires ldap-server.conf in the server block) #include /config/nginx/ldap-location.conf; # enable for Authelia (requires authelia-server.conf in the server block) #include /config/nginx/authelia-location.conf; # enable for Authentik (requires authentik-server.conf in the server block) #include /config/nginx/authentik-location.conf; #proxy_pass https://192.168.1.2:8666; proxy_pass $upstream_proto://$upstream_app:$upstream_port; # try_files $uri $uri/ /index.html /index.php$is_args$args; } location ~ ^(.+\.php)(.*)$ { fastcgi_split_path_info ^(.+\.php)(.*)$; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include /etc/nginx/fastcgi_params; } # deny access to .htaccess/.htpasswd files location ~ /\.ht { deny all; } } # enable subdomain method reverse proxy confs include /config/nginx/proxy-confs/*.subdomain.conf; ## should include my nextcloud.subdomain.conf # enable proxy cache for auth proxy_cache_path cache/ keys_zone=auth_cache:10m; weird, I get error on nextcloud.subdomain.conf I remove the sample. In the default file I include *.subdomain.conf to get all of the data. Only nextcloud.subdomain.conf is activated. I only change nextcloud to Nextcloud (container name)' the port to 8666. Thank you
  8. server { listen 443 ssl; listen [::]:443 ssl; server_name mynextcloud.de; include /config/nginx/ssl.conf; client_max_body_size 0; location / { include /config/nginx/proxy.conf; include /config/nginx/resolver.conf; #set $upstream_app Nextcloud; #set $upstream_port 443; #set $upstream_proto https; proxy_hide_header X-Frame-Options; proxy_max_temp_file_size 4096m; proxy_pass https://192.168.1.2:8666; } } this is my nextcloud.conf ( proxy-confs/nextcloud.conf ) and under ( site-confs/default ) but still coming to the swag default page what I did wrong?
  9. Hey, I got an error if I want to access via domain. The error is translatet: "The list of external endpoints could not be received: Not Found" If I log in the domain it doesn't show me the list of files. ( look at the picture ) In the local ip adress everyhting works fine. I think it is my nginx/site-confs/default file, what do you say? Components: Nextcloud version: 24.0.5 Operating system: Unraid 6.11.1 Apache or nginx : nginx/1.20.2 PHP version: 7.4.26 config.php: <?php $CONFIG = array ( 'memcache.local' => '\\OC\\Memcache\\APCu', 'datadirectory' => '/data', 'instanceid' => 'ocrdy75awbjE', 'passwordsalt' => 'pw', 'secret' => 'pw', 'trusted_domains' => array ( 0 => '192.168.1.2:9443', 1 => 'main.de', ), 'dbtype' => 'mysql', 'version' => '24.0.5.1', 'overwrite.cli.url' => 'https://main.de', 'dbname' => 'user', 'dbhost' => '192.168.1.2:3306', 'dbport' => '', 'dbtableprefix' => 'oc_', 'mysql.utf8mb4' => true, 'dbuser' => 'user', 'dbpassword' => 'pw', 'installed' => true, 'auth.webauthn.enabled' => false, 'mail_smtpmode' => 'smtp', 'mail_smtpsecure' => 'ssl', 'mail_sendmailmode' => 'smtp', 'mail_smtphost' => 'smtp.domain.de', 'mail_from_address' => 'info', 'mail_domain' => 'main.de', 'mail_smtpauthtype' => 'LOGIN', 'mail_smtpauth' => 1, 'mail_smtpport' => '465', 'mail_smtpname' => '[email protected]', 'mail_smtppassword' => 'pw', 'maintenance' => false, nginx/site-confs/default: upstream php-handler { server 127.0.0.1:9000; } server { listen 80; listen [::]:80; server_name _; return 301 https://$host$request_uri; } server { listen 443 ssl http2; listen [::]:443 ssl http2; server_name _; ssl_certificate /config/keys/cert.crt; ssl_certificate_key /config/keys/cert.key; # Add headers to serve security related headers # Before enabling Strict-Transport-Security headers please read into this # topic first. #add_header Strict-Transport-Security "max-age=15768000; includeSubDomains; preload;" always; # # WARNING: Only add the preload option once you read about # the consequences in https://hstspreload.org/. This option # will add the domain to a hardcoded list that is shipped # in all major browsers and getting removed from this list # could take several months. # set max upload size client_max_body_size 512M; client_body_timeout 300s; fastcgi_buffers 64 4K; # Enable gzip but do not remove ETag headers gzip on; gzip_vary on; gzip_comp_level 4; gzip_min_length 256; gzip_proxied expired no-cache no-store private no_last_modified no_etag auth; gzip_types application/atom+xml application/javascript application/json application/ld+json application/manifest+json application/rss+xml application/vnd.geo+json application/vnd.ms-fontobject application/wasm application/x-font-ttf application/x-web-app-manifest+json application/xhtml+xml application/xml font/opentype image/bmp image/svg+xml image/x-icon text/cache-manifest text/css text/plain text/vcard text/vnd.rim.location.xloc text/vtt text/x-component text/x-cross-domain-policy; # HTTP response headers borrowed from Nextcloud `.htaccess` add_header Referrer-Policy "no-referrer" always; add_header X-Content-Type-Options "nosniff" always; add_header X-Download-Options "noopen" always; add_header X-Frame-Options "SAMEORIGIN" always; add_header X-Permitted-Cross-Domain-Policies "none" always; add_header X-Robots-Tag "none" always; add_header X-XSS-Protection "1; mode=block" always; # Remove X-Powered-By, which is an information leak fastcgi_hide_header X-Powered-By; root /config/www/nextcloud/; # display real ip in nginx logs when connected through reverse proxy via docker network set_real_ip_from 172.0.0.0/8; real_ip_header X-Forwarded-For; # Specify how to handle directories -- specifying `/index.php$request_uri` # here as the fallback means that Nginx always exhibits the desired behaviour # when a client requests a path that corresponds to a directory that exists # on the server. In particular, if that directory contains an index.php file, # that file is correctly served; if it doesn't, then the request is passed to # the front-end controller. This consistent behaviour means that we don't need # to specify custom rules for certain paths (e.g. images and other assets, # `/updater`, `/ocm-provider`, `/ocs-provider`), and thus # `try_files $uri $uri/ /index.php$request_uri` # always provides the desired behaviour. index index.php index.html /index.php$request_uri; # Rule borrowed from `.htaccess` to handle Microsoft DAV clients location = / { if ( $http_user_agent ~ ^DavClnt ) { return 302 /remote.php/webdav/$is_args$args; } } location = /robots.txt { allow all; log_not_found off; access_log off; } # Make a regex exception for `/.well-known` so that clients can still # access it despite the existence of the regex rule # `location ~ /(\.|autotest|...)` which would otherwise handle requests # for `/.well-known`. location ^~ /.well-known { # The rules in this block are an adaptation of the rules # in `.htaccess` that concern `/.well-known`. location = /.well-known/carddav { return 301 /remote.php/dav/; } location = /.well-known/caldav { return 301 /remote.php/dav/; } location /.well-known/acme-challenge { try_files $uri $uri/ =404; } location /.well-known/pki-validation { try_files $uri $uri/ =404; } # Let Nextcloud's API for `/.well-known` URIs handle all other # requests by passing them to the front-end controller. return 301 /index.php$request_uri; } # Rules borrowed from `.htaccess` to hide certain paths from clients location ~ ^/(?:build|tests|config|lib|3rdparty|templates|data)(?:$|/) { return 404; } location ~ ^/(?:\.|autotest|occ|issue|indie|db_|console) { return 404; } # Ensure this block, which passes PHP files to the PHP process, is above the blocks # which handle static assets (as seen below). If this block is not declared first, # then Nginx will encounter an infinite rewriting loop when it prepends `/index.php` # to the URI, resulting in a HTTP 500 error response. location ~ \.php(?:$|/) { # Required for legacy support rewrite ^/(?!index|remote|public|cron|core\/ajax\/update|status|ocs\/v[12]|updater\/.+|oc[ms]-provider\/.+|.+\/richdocumentscode\/proxy) /index.php$request_uri; fastcgi_split_path_info ^(.+?\.php)(/.*)$; set $path_info $fastcgi_path_info; try_files $fastcgi_script_name =404; include /etc/nginx/fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param PATH_INFO $path_info; fastcgi_param HTTPS on; fastcgi_param modHeadersAvailable true; # Avoid sending the security headers twice fastcgi_param front_controller_active true; # Enable pretty urls fastcgi_pass php-handler; fastcgi_intercept_errors on; fastcgi_request_buffering off; fastcgi_max_temp_file_size 0; } location ~ \.(?:css|js|svg|gif|png|jpg|ico|wasm|tflite|map)$ { try_files $uri /index.php$request_uri; expires 6M; # Cache-Control policy borrowed from `.htaccess` access_log off; # Optional: Don't log access to assets location ~ \.wasm$ { default_type application/wasm; } } location ~ \.woff2?$ { try_files $uri /index.php$request_uri; expires 7d; # Cache-Control policy borrowed from `.htaccess` access_log off; # Optional: Don't log access to assets } # Rule borrowed from `.htaccess` location /remote { return 301 /remote.php$request_uri; } location / { try_files $uri $uri/ /index.php$request_uri; } } Domain Local
  10. I updated to the newest Version of Nextcloud. Than I upgrade the apps via browser and via terminal with occ upgrade. maybe because I changed the root password / restore the database Mariadb: latest Nextcloud: latest Browser error: Nextcloud.log Folder","type":"->"},{"file":"/config/www/nextcloud/lib/private/Files/AppData/AppData.php","line":142,"function":"get","class":"OC\\Files\\Node\\LazyFolder","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ImageManager.php","line":110,"function":"getFolder","class":"OC\\Files\\AppData\\AppData","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ImageManager.php","line":82,"function":"getImage","class":"OCA\\Theming\\ImageManager","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ThemingDefaults.php","line":265,"function":"getImageUrl","class":"OCA\\Theming\\ImageManager","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/Capabilities.php","line":87,"function":"getBackground","class":"OCA\\Theming\\ThemingDefaults","type":"->"},{"file":"/config/www/nextcloud/lib/private/CapabilitiesManager.php","line":72,"function":"getCapabilities","class":"OCA\\Theming\\Capabilities","type":"->"},{"file":"/config/www/nextcloud/lib/private/Template/JSConfigHelper.php","line":183,"function":"getCapabilities","class":"OC\\CapabilitiesManager","type":"->"},{"file":"/config/www/nextcloud/lib/private/TemplateLayout.php","line":211,"function":"getConfig","class":"OC\\Template\\JSConfigHelper","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_Template.php","line":183,"function":"__construct","class":"OC\\TemplateLayout","type":"->"},{"file":"/config/www/nextcloud/lib/private/Template/Base.php","line":132,"function":"fetchPage","class":"OC_Template","type":"->"},{"file":"/config/www/nextcloud/lib/base.php","line":397,"function":"printPage","class":"OC\\Template\\Base","type":"->"},{"file":"/config/www/nextcloud/lib/base.php","line":949,"function":"printUpgradePage","class":"OC","type":"::"},{"file":"/config/www/nextcloud/index.php","line":37,"function":"handleRequest","class":"OC","type":"::"}],"File":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php","Line":114,"Previous":{"Exception":"Doctrine\\DBAL\\Driver\\PDO\\Exception","Message":"SQLSTATE[HY000]: General error: 4047 InnoDB refuses to write tables with ROW_FORMAT=COMPRESSED or KEY_BLOCK_SIZE.","Code":4047,"Trace":[{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/PDO/Statement.php","line":84,"function":"new","class":"Doctrine\\DBAL\\Driver\\PDO\\Exception","type":"::"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1136,"function":"execute","class":"Doctrine\\DBAL\\Driver\\PDO\\Statement","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/Connection.php","line":257,"function":"executeStatement","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Query/QueryBuilder.php","line":213,"function":"executeStatement","class":"OC\\DB\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/QueryBuilder/QueryBuilder.php","line":286,"function":"execute","class":"Doctrine\\DBAL\\Query\\QueryBuilder","type":"->"},{"file":"/config/www/nextcloud/lib/private/BackgroundJob/JobList.php","line":89,"function":"execute","class":"OC\\DB\\QueryBuilder\\QueryBuilder","type":"->"},{"file":"/config/www/nextcloud/apps/music/appinfo/app.php","line":40,"function":"add","class":"OC\\BackgroundJob\\JobList","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":295,"args":["/config/www/nextcloud/apps/music/appinfo/app.php"],"function":"require_once"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":177,"function":"requireAppFile","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":137,"function":"loadApp","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_Util.php","line":203,"function":"loadApps","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/Files/Filesystem.php","line":267,"function":"setupFS","class":"OC_Util","type":"::"},{"file":"/config/www/nextcloud/lib/private/Server.php","line":404,"function":"getMountManager","class":"OC\\Files\\Filesystem","type":"::"},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":155,"function":"OC\\{closure}","class":"OC\\Server","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/3rdparty/pimple/pimple/src/Pimple/Container.php","line":118,"function":"OC\\AppFramework\\Utility\\{closure}","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":122,"function":"offsetGet","class":"Pimple\\Container","type":"->"},{"file":"/config/www/nextcloud/lib/private/ServerContainer.php","line":137,"function":"query","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->"},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":56,"function":"query","class":"OC\\ServerContainer","type":"->"},{"file":"/config/www/nextcloud/lib/private/Server.php","line":437,"function":"get","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->"},{"function":"OC\\{closure}","class":"OC\\Server","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/Files/Node/LazyFolder.php","line":63,"function":"call_user_func"},{"file":"/config/www/nextcloud/lib/private/Files/Node/LazyFolder.php","line":143,"function":"__call","class":"OC\\Files\\Node\\LazyFolder","type":"->"},{"file":"/config/www/nextcloud/lib/private/Files/AppData/AppData.php","line":142,"function":"get","class":"OC\\Files\\Node\\LazyFolder","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ImageManager.php","line":110,"function":"getFolder","class":"OC\\Files\\AppData\\AppData","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ImageManager.php","line":82,"function":"getImage","class":"OCA\\Theming\\ImageManager","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ThemingDefaults.php","line":265,"function":"getImageUrl","class":"OCA\\Theming\\ImageManager","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/Capabilities.php","line":87,"function":"getBackground","class":"OCA\\Theming\\ThemingDefaults","type":"->"},{"file":"/config/www/nextcloud/lib/private/CapabilitiesManager.php","line":72,"function":"getCapabilities","class":"OCA\\Theming\\Capabilities","type":"->"},{"file":"/config/www/nextcloud/lib/private/Template/JSConfigHelper.php","line":183,"function":"getCapabilities","class":"OC\\CapabilitiesManager","type":"->"},{"file":"/config/www/nextcloud/lib/private/TemplateLayout.php","line":211,"function":"getConfig","class":"OC\\Template\\JSConfigHelper","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_Template.php","line":183,"function":"__construct","class":"OC\\TemplateLayout","type":"->"},{"file":"/config/www/nextcloud/lib/private/Template/Base.php","line":132,"function":"fetchPage","class":"OC_Template","type":"->"},{"file":"/config/www/nextcloud/lib/base.php","line":397,"function":"printPage","class":"OC\\Template\\Base","type":"->"},{"file":"/config/www/nextcloud/lib/base.php","line":949,"function":"printUpgradePage","class":"OC","type":"::"},{"file":"/config/www/nextcloud/index.php","line":37,"function":"handleRequest","class":"OC","type":"::"}],"File":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/PDO/Exception.php","Line":26,"Previous":{"Exception":"PDOException","Message":"SQLSTATE[HY000]: General error: 4047 InnoDB refuses to write tables with ROW_FORMAT=COMPRESSED or KEY_BLOCK_SIZE.","Code":"HY000","Trace":[{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/PDO/Statement.php","line":82,"function":"execute","class":"PDOStatement","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1136,"function":"execute","class":"Doctrine\\DBAL\\Driver\\PDO\\Statement","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/Connection.php","line":257,"function":"executeStatement","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Query/QueryBuilder.php","line":213,"function":"executeStatement","class":"OC\\DB\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/QueryBuilder/QueryBuilder.php","line":286,"function":"execute","class":"Doctrine\\DBAL\\Query\\QueryBuilder","type":"->"},{"file":"/config/www/nextcloud/lib/private/BackgroundJob/JobList.php","line":89,"function":"execute","class":"OC\\DB\\QueryBuilder\\QueryBuilder","type":"->"},{"file":"/config/www/nextcloud/apps/music/appinfo/app.php","line":40,"function":"add","class":"OC\\BackgroundJob\\JobList","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":295,"args":["/config/www/nextcloud/apps/music/appinfo/app.php"],"function":"require_once"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":177,"function":"requireAppFile","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":137,"function":"loadApp","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_Util.php","line":203,"function":"loadApps","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/Files/Filesystem.php","line":267,"function":"setupFS","class":"OC_Util","type":"::"},{"file":"/config/www/nextcloud/lib/private/Server.php","line":404,"function":"getMountManager","class":"OC\\Files\\Filesystem","type":"::"},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":155,"function":"OC\\{closure}","class":"OC\\Server","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/3rdparty/pimple/pimple/src/Pimple/Container.php","line":118,"function":"OC\\AppFramework\\Utility\\{closure}","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":122,"function":"offsetGet","class":"Pimple\\Container","type":"->"},{"file":"/config/www/nextcloud/lib/private/ServerContainer.php","line":137,"function":"query","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->"},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":56,"function":"query","class":"OC\\ServerContainer","type":"->"},{"file":"/config/www/nextcloud/lib/private/Server.php","line":437,"function":"get","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->"},{"function":"OC\\{closure}","class":"OC\\Server","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/Files/Node/LazyFolder.php","line":63,"function":"call_user_func"},{"file":"/config/www/nextcloud/lib/private/Files/Node/LazyFolder.php","line":143,"function":"__call","class":"OC\\Files\\Node\\LazyFolder","type":"->"},{"file":"/config/www/nextcloud/lib/private/Files/AppData/AppData.php","line":142,"function":"get","class":"OC\\Files\\Node\\LazyFolder","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ImageManager.php","line":110,"function":"getFolder","class":"OC\\Files\\AppData\\AppData","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ImageManager.php","line":82,"function":"getImage","class":"OCA\\Theming\\ImageManager","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ThemingDefaults.php","line":265,"function":"getImageUrl","class":"OCA\\Theming\\ImageManager","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/Capabilities.php","line":87,"function":"getBackground","class":"OCA\\Theming\\ThemingDefaults","type":"->"},{"file":"/config/www/nextcloud/lib/private/CapabilitiesManager.php","line":72,"function":"getCapabilities","class":"OCA\\Theming\\Capabilities","type":"->"},{"file":"/config/www/nextcloud/lib/private/Template/JSConfigHelper.php","line":183,"function":"getCapabilities","class":"OC\\CapabilitiesManager","type":"->"},{"file":"/config/www/nextcloud/lib/private/TemplateLayout.php","line":211,"function":"getConfig","class":"OC\\Template\\JSConfigHelper","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_Template.php","line":183,"function":"__construct","class":"OC\\TemplateLayout","type":"->"},{"file":"/config/www/nextcloud/lib/private/Template/Base.php","line":132,"function":"fetchPage","class":"OC_Template","type":"->"},{"file":"/config/www/nextcloud/lib/base.php","line":397,"function":"printPage","class":"OC\\Template\\Base","type":"->"},{"file":"/config/www/nextcloud/lib/base.php","line":949,"function":"printUpgradePage","class":"OC","type":"::"},{"file":"/config/www/nextcloud/index.php","line":37,"function":"handleRequest","class":"OC","type":"::"}],"File":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/PDO/Statement.php","Line":82}},"CustomMessage":"App music threw an error during app.php load and will be disabled: An exception occurred while executing a query: SQLSTATE[HY000]: General error: 4047 InnoDB refuses to write tables with ROW_FORMAT=COMPRESSED or KEY_BLOCK_SIZE."},"userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36","version":"21.0.0.18"} {"reqId":"kDBjDtAWFsUWd8VugHnu","level":3,"time":"2021-12-21T18:09:29+00:00","remoteAddr":"172.17.0.1","user":"--","app":"index","method":"GET","url":"/","message":{"Exception":"Doctrine\\DBAL\\Exception\\DriverException","Message":"An exception occurred while executing a query: SQLSTATE[HY000]: General error: 4047 InnoDB refuses to write tables with ROW_FORMAT=COMPRESSED or KEY_BLOCK_SIZE.","Code":4047,"Trace":[{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1728,"function":"convert","class":"Doctrine\\DBAL\\Driver\\API\\MySQL\\ExceptionConverter","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1667,"function":"handleDriverException","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1146,"function":"convertExceptionDuringQuery","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/Connection.php","line":257,"function":"executeStatement","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Query/QueryBuilder.php","line":213,"function":"executeStatement","class":"OC\\DB\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/QueryBuilder/QueryBuilder.php","line":286,"function":"execute","class":"Doctrine\\DBAL\\Query\\QueryBuilder","type":"->"},{"file":"/config/www/nextcloud/lib/private/AppConfig.php","line":236,"function":"execute","class":"OC\\DB\\QueryBuilder\\QueryBuilder","type":"->"},{"file":"/config/www/nextcloud/lib/private/App/AppManager.php","line":407,"function":"setValue","class":"OC\\AppConfig","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":188,"function":"disableApp","class":"OC\\App\\AppManager","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":137,"function":"loadApp","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_Util.php","line":203,"function":"loadApps","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/Files/Filesystem.php","line":267,"function":"setupFS","class":"OC_Util","type":"::"},{"file":"/config/www/nextcloud/lib/private/Server.php","line":404,"function":"getMountManager","class":"OC\\Files\\Filesystem","type":"::"},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":155,"function":"OC\\{closure}","class":"OC\\Server","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/3rdparty/pimple/pimple/src/Pimple/Container.php","line":118,"function":"OC\\AppFramework\\Utility\\{closure}","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":122,"function":"offsetGet","class":"Pimple\\Container","type":"->"},{"file":"/config/www/nextcloud/lib/private/ServerContainer.php","line":137,"function":"query","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->"},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":56,"function":"query","class":"OC\\ServerContainer","type":"->"},{"file":"/config/www/nextcloud/lib/private/Server.php","line":437,"function":"get","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->"},{"function":"OC\\{closure}","class":"OC\\Server","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/Files/Node/LazyFolder.php","line":63,"function":"call_user_func"},{"file":"/config/www/nextcloud/lib/private/Files/Node/LazyFolder.php","line":143,"function":"__call","class":"OC\\Files\\Node\\LazyFolder","type":"->"},{"file":"/config/www/nextcloud/lib/private/Files/AppData/AppData.php","line":142,"function":"get","class":"OC\\Files\\Node\\LazyFolder","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ImageManager.php","line":110,"function":"getFolder","class":"OC\\Files\\AppData\\AppData","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ImageManager.php","line":82,"function":"getImage","class":"OCA\\Theming\\ImageManager","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ThemingDefaults.php","line":265,"function":"getImageUrl","class":"OCA\\Theming\\ImageManager","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/Capabilities.php","line":87,"function":"getBackground","class":"OCA\\Theming\\ThemingDefaults","type":"->"},{"file":"/config/www/nextcloud/lib/private/CapabilitiesManager.php","line":72,"function":"getCapabilities","class":"OCA\\Theming\\Capabilities","type":"->"},{"file":"/config/www/nextcloud/lib/private/Template/JSConfigHelper.php","line":183,"function":"getCapabilities","class":"OC\\CapabilitiesManager","type":"->"},{"file":"/config/www/nextcloud/lib/private/TemplateLayout.php","line":211,"function":"getConfig","class":"OC\\Template\\JSConfigHelper","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_Template.php","line":183,"function":"__construct","class":"OC\\TemplateLayout","type":"->"},{"file":"/config/www/nextcloud/lib/private/Template/Base.php","line":132,"function":"fetchPage","class":"OC_Template","type":"->"},{"file":"/config/www/nextcloud/lib/base.php","line":397,"function":"printPage","class":"OC\\Template\\Base","type":"->"},{"file":"/config/www/nextcloud/lib/base.php","line":949,"function":"printUpgradePage","class":"OC","type":"::"},{"file":"/config/www/nextcloud/index.php","line":37,"function":"handleRequest","class":"OC","type":"::"}],"File":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php","Line":114,"Previous":{"Exception":"Doctrine\\DBAL\\Driver\\PDO\\Exception","Message":"SQLSTATE[HY000]: General error: 4047 InnoDB refuses to write tables with ROW_FORMAT=COMPRESSED or KEY_BLOCK_SIZE.","Code":4047,"Trace":[{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/PDO/Statement.php","line":84,"function":"new","class":"Doctrine\\DBAL\\Driver\\PDO\\Exception","type":"::"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1136,"function":"execute","class":"Doctrine\\DBAL\\Driver\\PDO\\Statement","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/Connection.php","line":257,"function":"executeStatement","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Query/QueryBuilder.php","line":213,"function":"executeStatement","class":"OC\\DB\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/QueryBuilder/QueryBuilder.php","line":286,"function":"execute","class":"Doctrine\\DBAL\\Query\\QueryBuilder","type":"->"},{"file":"/config/www/nextcloud/lib/private/AppConfig.php","line":236,"function":"execute","class":"OC\\DB\\QueryBuilder\\QueryBuilder","type":"->"},{"file":"/config/www/nextcloud/lib/private/App/AppManager.php","line":407,"function":"setValue","class":"OC\\AppConfig","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":188,"function":"disableApp","class":"OC\\App\\AppManager","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":137,"function":"loadApp","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_Util.php","line":203,"function":"loadApps","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/Files/Filesystem.php","line":267,"function":"setupFS","class":"OC_Util","type":"::"},{"file":"/config/www/nextcloud/lib/private/Server.php","line":404,"function":"getMountManager","class":"OC\\Files\\Filesystem","type":"::"},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":155,"function":"OC\\{closure}","class":"OC\\Server","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/3rdparty/pimple/pimple/src/Pimple/Container.php","line":118,"function":"OC\\AppFramework\\Utility\\{closure}","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":122,"function":"offsetGet","class":"Pimple\\Container","type":"->"},{"file":"/config/www/nextcloud/lib/private/ServerContainer.php","line":137,"function":"query","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->"},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":56,"function":"query","class":"OC\\ServerContainer","type":"->"},{"file":"/config/www/nextcloud/lib/private/Server.php","line":437,"function":"get","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->"},{"function":"OC\\{closure}","class":"OC\\Server","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/Files/Node/LazyFolder.php","line":63,"function":"call_user_func"},{"file":"/config/www/nextcloud/lib/private/Files/Node/LazyFolder.php","line":143,"function":"__call","class":"OC\\Files\\Node\\LazyFolder","type":"->"},{"file":"/config/www/nextcloud/lib/private/Files/AppData/AppData.php","line":142,"function":"get","class":"OC\\Files\\Node\\LazyFolder","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ImageManager.php","line":110,"function":"getFolder","class":"OC\\Files\\AppData\\AppData","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ImageManager.php","line":82,"function":"getImage","class":"OCA\\Theming\\ImageManager","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ThemingDefaults.php","line":265,"function":"getImageUrl","class":"OCA\\Theming\\ImageManager","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/Capabilities.php","line":87,"function":"getBackground","class":"OCA\\Theming\\ThemingDefaults","type":"->"},{"file":"/config/www/nextcloud/lib/private/CapabilitiesManager.php","line":72,"function":"getCapabilities","class":"OCA\\Theming\\Capabilities","type":"->"},{"file":"/config/www/nextcloud/lib/private/Template/JSConfigHelper.php","line":183,"function":"getCapabilities","class":"OC\\CapabilitiesManager","type":"->"},{"file":"/config/www/nextcloud/lib/private/TemplateLayout.php","line":211,"function":"getConfig","class":"OC\\Template\\JSConfigHelper","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_Template.php","line":183,"function":"__construct","class":"OC\\TemplateLayout","type":"->"},{"file":"/config/www/nextcloud/lib/private/Template/Base.php","line":132,"function":"fetchPage","class":"OC_Template","type":"->"},{"file":"/config/www/nextcloud/lib/base.php","line":397,"function":"printPage","class":"OC\\Template\\Base","type":"->"},{"file":"/config/www/nextcloud/lib/base.php","line":949,"function":"printUpgradePage","class":"OC","type":"::"},{"file":"/config/www/nextcloud/index.php","line":37,"function":"handleRequest","class":"OC","type":"::"}],"File":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/PDO/Exception.php","Line":26,"Previous":{"Exception":"PDOException","Message":"SQLSTATE[HY000]: General error: 4047 InnoDB refuses to write tables with ROW_FORMAT=COMPRESSED or KEY_BLOCK_SIZE.","Code":"HY000","Trace":[{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/PDO/Statement.php","line":82,"function":"execute","class":"PDOStatement","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1136,"function":"execute","class":"Doctrine\\DBAL\\Driver\\PDO\\Statement","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/Connection.php","line":257,"function":"executeStatement","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Query/QueryBuilder.php","line":213,"function":"executeStatement","class":"OC\\DB\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/QueryBuilder/QueryBuilder.php","line":286,"function":"execute","class":"Doctrine\\DBAL\\Query\\QueryBuilder","type":"->"},{"file":"/config/www/nextcloud/lib/private/AppConfig.php","line":236,"function":"execute","class":"OC\\DB\\QueryBuilder\\QueryBuilder","type":"->"},{"file":"/config/www/nextcloud/lib/private/App/AppManager.php","line":407,"function":"setValue","class":"OC\\AppConfig","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":188,"function":"disableApp","class":"OC\\App\\AppManager","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":137,"function":"loadApp","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_Util.php","line":203,"function":"loadApps","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/Files/Filesystem.php","line":267,"function":"setupFS","class":"OC_Util","type":"::"},{"file":"/config/www/nextcloud/lib/private/Server.php","line":404,"function":"getMountManager","class":"OC\\Files\\Filesystem","type":"::"},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":155,"function":"OC\\{closure}","class":"OC\\Server","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/3rdparty/pimple/pimple/src/Pimple/Container.php","line":118,"function":"OC\\AppFramework\\Utility\\{closure}","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":122,"function":"offsetGet","class":"Pimple\\Container","type":"->"},{"file":"/config/www/nextcloud/lib/private/ServerContainer.php","line":137,"function":"query","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->"},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":56,"function":"query","class":"OC\\ServerContainer","type":"->"},{"file":"/config/www/nextcloud/lib/private/Server.php","line":437,"function":"get","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->"},{"function":"OC\\{closure}","class":"OC\\Server","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/Files/Node/LazyFolder.php","line":63,"function":"call_user_func"},{"file":"/config/www/nextcloud/lib/private/Files/Node/LazyFolder.php","line":143,"function":"__call","class":"OC\\Files\\Node\\LazyFolder","type":"->"},{"file":"/config/www/nextcloud/lib/private/Files/AppData/AppData.php","line":142,"function":"get","class":"OC\\Files\\Node\\LazyFolder","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ImageManager.php","line":110,"function":"getFolder","class":"OC\\Files\\AppData\\AppData","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ImageManager.php","line":82,"function":"getImage","class":"OCA\\Theming\\ImageManager","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ThemingDefaults.php","line":265,"function":"getImageUrl","class":"OCA\\Theming\\ImageManager","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/Capabilities.php","line":87,"function":"getBackground","class":"OCA\\Theming\\ThemingDefaults","type":"->"},{"file":"/config/www/nextcloud/lib/private/CapabilitiesManager.php","line":72,"function":"getCapabilities","class":"OCA\\Theming\\Capabilities","type":"->"},{"file":"/config/www/nextcloud/lib/private/Template/JSConfigHelper.php","line":183,"function":"getCapabilities","class":"OC\\CapabilitiesManager","type":"->"},{"file":"/config/www/nextcloud/lib/private/TemplateLayout.php","line":211,"function":"getConfig","class":"OC\\Template\\JSConfigHelper","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_Template.php","line":183,"function":"__construct","class":"OC\\TemplateLayout","type":"->"},{"file":"/config/www/nextcloud/lib/private/Template/Base.php","line":132,"function":"fetchPage","class":"OC_Template","type":"->"},{"file":"/config/www/nextcloud/lib/base.php","line":397,"function":"printPage","class":"OC\\Template\\Base","type":"->"},{"file":"/config/www/nextcloud/lib/base.php","line":949,"function":"printUpgradePage","class":"OC","type":"::"},{"file":"/config/www/nextcloud/index.php","line":37,"function":"handleRequest","class":"OC","type":"::"}],"File":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/PDO/Statement.php","Line":82}},"CustomMessage":"--"},"userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36","version":"21.0.0.18"} {"reqId":"GpcHTUDk0CNp7FpZHlRE","level":3,"time":"2021-12-21T18:22:59+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/index.php/csrftoken","message":{"Exception":"Doctrine\\DBAL\\Exception\\DriverException","Message":"An exception occurred while executing a query: SQLSTATE[HY000]: General error: 4047 InnoDB refuses to write tables with ROW_FORMAT=COMPRESSED or KEY_BLOCK_SIZE.","Code":4047,"Trace":[{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1728,"function":"convert","class":"Doctrine\\DBAL\\Driver\\API\\MySQL\\ExceptionConverter","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1667,"function":"handleDriverException","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1146,"function":"convertExceptionDuringQuery","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/Connection.php","line":257,"function":"executeStatement","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Query/QueryBuilder.php","line":213,"function":"executeStatement","class":"OC\\DB\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/QueryBuilder/QueryBuilder.php","line":286,"function":"execute","class":"Doctrine\\DBAL\\Query\\QueryBuilder","type":"->"},{"file":"/config/www/nextcloud/lib/private/BackgroundJob/JobList.php","line":89,"function":"execute","class":"OC\\DB\\QueryBuilder\\QueryBuilder","type":"->"},{"file":"/config/www/nextcloud/apps/music/appinfo/app.php","line":40,"function":"add","class":"OC\\BackgroundJob\\JobList","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":295,"args":["/config/www/nextcloud/apps/music/appinfo/app.php"],"function":"require_once"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":177,"function":"requireAppFile","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":137,"function":"loadApp","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_Util.php","line":203,"function":"loadApps","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/Files/Filesystem.php","line":267,"function":"setupFS","class":"OC_Util","type":"::"},{"file":"/config/www/nextcloud/lib/private/Server.php","line":404,"function":"getMountManager","class":"OC\\Files\\Filesystem","type":"::"},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":155,"function":"OC\\{closure}","class":"OC\\Server","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/3rdparty/pimple/pimple/src/Pimple/Container.php","line":118,"function":"OC\\AppFramework\\Utility\\{closure}","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":122,"function":"offsetGet","class":"Pimple\\Container","type":"->"},{"file":"/config/www/nextcloud/lib/private/ServerContainer.php","line":137,"function":"query","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->"},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":56,"function":"query","class":"OC\\ServerContainer","type":"->"},{"file":"/config/www/nextcloud/lib/private/Server.php","line":437,"function":"get","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->"},{"function":"OC\\{closure}","class":"OC\\Server","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/Files/Node/LazyFolder.php","line":63,"function":"call_user_func"},{"file":"/config/www/nextcloud/lib/private/Files/Node/LazyFolder.php","line":143,"function":"__call","class":"OC\\Files\\Node\\LazyFolder","type":"->"},{"file":"/config/www/nextcloud/lib/private/Files/AppData/AppData.php","line":142,"function":"get","class":"OC\\Files\\Node\\LazyFolder","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ImageManager.php","line":110,"function":"getFolder","class":"OC\\Files\\AppData\\AppData","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ImageManager.php","line":82,"function":"getImage","class":"OCA\\Theming\\ImageManager","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ThemingDefaults.php","line":265,"function":"getImageUrl","class":"OCA\\Theming\\ImageManager","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/Capabilities.php","line":87,"function":"getBackground","class":"OCA\\Theming\\ThemingDefaults","type":"->"},{"file":"/config/www/nextcloud/lib/private/CapabilitiesManager.php","line":72,"function":"getCapabilities","class":"OCA\\Theming\\Capabilities","type":"->"},{"file":"/config/www/nextcloud/lib/private/Template/JSConfigHelper.php","line":183,"function":"getCapabilities","class":"OC\\CapabilitiesManager","type":"->"},{"file":"/config/www/nextcloud/lib/private/TemplateLayout.php","line":211,"function":"getConfig","class":"OC\\Template\\JSConfigHelper","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_Template.php","line":183,"function":"__construct","class":"OC\\TemplateLayout","type":"->"},{"file":"/config/www/nextcloud/lib/private/Template/Base.php","line":132,"function":"fetchPage","class":"OC_Template","type":"->"},{"file":"/config/www/nextcloud/lib/base.php","line":397,"function":"printPage","class":"OC\\Template\\Base","type":"->"},{"file":"/config/www/nextcloud/lib/base.php","line":949,"function":"printUpgradePage","class":"OC","type":"::"},{"file":"/config/www/nextcloud/index.php","line":37,"function":"handleRequest","class":"OC","type":"::"}],"File":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php","Line":114,"Previous":{"Exception":"Doctrine\\DBAL\\Driver\\PDO\\Exception","Message":"SQLSTATE[HY000]: General error: 4047 InnoDB refuses to write tables with ROW_FORMAT=COMPRESSED or KEY_BLOCK_SIZE.","Code":4047,"Trace":[{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/PDO/Statement.php","line":84,"function":"new","class":"Doctrine\\DBAL\\Driver\\PDO\\Exception","type":"::"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1136,"function":"execute","class":"Doctrine\\DBAL\\Driver\\PDO\\Statement","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/Connection.php","line":257,"function":"executeStatement","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Query/QueryBuilder.php","line":213,"function":"executeStatement","class":"OC\\DB\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/QueryBuilder/QueryBuilder.php","line":286,"function":"execute","class":"Doctrine\\DBAL\\Query\\QueryBuilder","type":"->"},{"file":"/config/www/nextcloud/lib/private/BackgroundJob/JobList.php","line":89,"function":"execute","class":"OC\\DB\\QueryBuilder\\QueryBuilder","type":"->"},{"file":"/config/www/nextcloud/apps/music/appinfo/app.php","line":40,"function":"add","class":"OC\\BackgroundJob\\JobList","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":295,"args":["/config/www/nextcloud/apps/music/appinfo/app.php"],"function":"require_once"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":177,"function":"requireAppFile","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":137,"function":"loadApp","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_Util.php","line":203,"function":"loadApps","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/Files/Filesystem.php","line":267,"function":"setupFS","class":"OC_Util","type":"::"},{"file":"/config/www/nextcloud/lib/private/Server.php","line":404,"function":"getMountManager","class":"OC\\Files\\Filesystem","type":"::"},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":155,"function":"OC\\{closure}","class":"OC\\Server","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/3rdparty/pimple/pimple/src/Pimple/Container.php","line":118,"function":"OC\\AppFramework\\Utility\\{closure}","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":122,"function":"offsetGet","class":"Pimple\\Container","type":"->"},{"file":"/config/www/nextcloud/lib/private/ServerContainer.php","line":137,"function":"query","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->"},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":56,"function":"query","class":"OC\\ServerContainer","type":"->"},{"file":"/config/www/nextcloud/lib/private/Server.php","line":437,"function":"get","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->"},{"function":"OC\\{closure}","class":"OC\\Server","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/Files/Node/LazyFolder.php","line":63,"function":"call_user_func"},{"file":"/config/www/nextcloud/lib/private/Files/Node/LazyFolder.php","line":143,"function":"__call","class":"OC\\Files\\Node\\LazyFolder","type":"->"},{"file":"/config/www/nextcloud/lib/private/Files/AppData/AppData.php","line":142,"function":"get","class":"OC\\Files\\Node\\LazyFolder","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ImageManager.php","line":110,"function":"getFolder","class":"OC\\Files\\AppData\\AppData","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ImageManager.php","line":82,"function":"getImage","class":"OCA\\Theming\\ImageManager","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ThemingDefaults.php","line":265,"function":"getImageUrl","class":"OCA\\Theming\\ImageManager","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/Capabilities.php","line":87,"function":"getBackground","class":"OCA\\Theming\\ThemingDefaults","type":"->"},{"file":"/config/www/nextcloud/lib/private/CapabilitiesManager.php","line":72,"function":"getCapabilities","class":"OCA\\Theming\\Capabilities","type":"->"},{"file":"/config/www/nextcloud/lib/private/Template/JSConfigHelper.php","line":183,"function":"getCapabilities","class":"OC\\CapabilitiesManager","type":"->"},{"file":"/config/www/nextcloud/lib/private/TemplateLayout.php","line":211,"function":"getConfig","class":"OC\\Template\\JSConfigHelper","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_Template.php","line":183,"function":"__construct","class":"OC\\TemplateLayout","type":"->"},{"file":"/config/www/nextcloud/lib/private/Template/Base.php","line":132,"function":"fetchPage","class":"OC_Template","type":"->"},{"file":"/config/www/nextcloud/lib/base.php","line":397,"function":"printPage","class":"OC\\Template\\Base","type":"->"},{"file":"/config/www/nextcloud/lib/base.php","line":949,"function":"printUpgradePage","class":"OC","type":"::"},{"file":"/config/www/nextcloud/index.php","line":37,"function":"handleRequest","class":"OC","type":"::"}],"File":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/PDO/Exception.php","Line":26,"Previous":{"Exception":"PDOException","Message":"SQLSTATE[HY000]: General error: 4047 InnoDB refuses to write tables with ROW_FORMAT=COMPRESSED or KEY_BLOCK_SIZE.","Code":"HY000","Trace":[{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/PDO/Statement.php","line":82,"function":"execute","class":"PDOStatement","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1136,"function":"execute","class":"Doctrine\\DBAL\\Driver\\PDO\\Statement","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/Connection.php","line":257,"function":"executeStatement","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Query/QueryBuilder.php","line":213,"function":"executeStatement","class":"OC\\DB\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/QueryBuilder/QueryBuilder.php","line":286,"function":"execute","class":"Doctrine\\DBAL\\Query\\QueryBuilder","type":"->"},{"file":"/config/www/nextcloud/lib/private/BackgroundJob/JobList.php","line":89,"function":"execute","class":"OC\\DB\\QueryBuilder\\QueryBuilder","type":"->"},{"file":"/config/www/nextcloud/apps/music/appinfo/app.php","line":40,"function":"add","class":"OC\\BackgroundJob\\JobList","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":295,"args":["/config/www/nextcloud/apps/music/appinfo/app.php"],"function":"require_once"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":177,"function":"requireAppFile","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":137,"function":"loadApp","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_Util.php","line":203,"function":"loadApps","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/Files/Filesystem.php","line":267,"function":"setupFS","class":"OC_Util","type":"::"},{"file":"/config/www/nextcloud/lib/private/Server.php","line":404,"function":"getMountManager","class":"OC\\Files\\Filesystem","type":"::"},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":155,"function":"OC\\{closure}","class":"OC\\Server","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/3rdparty/pimple/pimple/src/Pimple/Container.php","line":118,"function":"OC\\AppFramework\\Utility\\{closure}","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":122,"function":"offsetGet","class":"Pimple\\Container","type":"->"},{"file":"/config/www/nextcloud/lib/private/ServerContainer.php","line":137,"function":"query","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->"},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":56,"function":"query","class":"OC\\ServerContainer","type":"->"},{"file":"/config/www/nextcloud/lib/private/Server.php","line":437,"function":"get","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->"},{"function":"OC\\{closure}","class":"OC\\Server","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/Files/Node/LazyFolder.php","line":63,"function":"call_user_func"},{"file":"/config/www/nextcloud/lib/private/Files/Node/LazyFolder.php","line":143,"function":"__call","class":"OC\\Files\\Node\\LazyFolder","type":"->"},{"file":"/config/www/nextcloud/lib/private/Files/AppData/AppData.php","line":142,"function":"get","class":"OC\\Files\\Node\\LazyFolder","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ImageManager.php","line":110,"function":"getFolder","class":"OC\\Files\\AppData\\AppData","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ImageManager.php","line":82,"function":"getImage","class":"OCA\\Theming\\ImageManager","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ThemingDefaults.php","line":265,"function":"getImageUrl","class":"OCA\\Theming\\ImageManager","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/Capabilities.php","line":87,"function":"getBackground","class":"OCA\\Theming\\ThemingDefaults","type":"->"},{"file":"/config/www/nextcloud/lib/private/CapabilitiesManager.php","line":72,"function":"getCapabilities","class":"OCA\\Theming\\Capabilities","type":"->"},{"file":"/config/www/nextcloud/lib/private/Template/JSConfigHelper.php","line":183,"function":"getCapabilities","class":"OC\\CapabilitiesManager","type":"->"},{"file":"/config/www/nextcloud/lib/private/TemplateLayout.php","line":211,"function":"getConfig","class":"OC\\Template\\JSConfigHelper","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_Template.php","line":183,"function":"__construct","class":"OC\\TemplateLayout","type":"->"},{"file":"/config/www/nextcloud/lib/private/Template/Base.php","line":132,"function":"fetchPage","class":"OC_Template","type":"->"},{"file":"/config/www/nextcloud/lib/base.php","line":397,"function":"printPage","class":"OC\\Template\\Base","type":"->"},{"file":"/config/www/nextcloud/lib/base.php","line":949,"function":"printUpgradePage","class":"OC","type":"::"},{"file":"/config/www/nextcloud/index.php","line":37,"function":"handleRequest","class":"OC","type":"::"}],"File":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/PDO/Statement.php","Line":82}},"CustomMessage":"App music threw an error during app.php load and will be disabled: An exception occurred while executing a query: SQLSTATE[HY000]: General error: 4047 InnoDB refuses to write tables with ROW_FORMAT=COMPRESSED or KEY_BLOCK_SIZE."},"userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"GpcHTUDk0CNp7FpZHlRE","level":3,"time":"2021-12-21T18:22:59+00:00","remoteAddr":"192.168.1.241","user":"--","app":"index","method":"GET","url":"/index.php/csrftoken","message":{"Exception":"Doctrine\\DBAL\\Exception\\DriverException","Message":"An exception occurred while executing a query: SQLSTATE[HY000]: General error: 4047 InnoDB refuses to write tables with ROW_FORMAT=COMPRESSED or KEY_BLOCK_SIZE.","Code":4047,"Trace":[{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1728,"function":"convert","class":"Doctrine\\DBAL\\Driver\\API\\MySQL\\ExceptionConverter","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1667,"function":"handleDriverException","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1146,"function":"convertExceptionDuringQuery","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/Connection.php","line":257,"function":"executeStatement","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Query/QueryBuilder.php","line":213,"function":"executeStatement","class":"OC\\DB\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/QueryBuilder/QueryBuilder.php","line":286,"function":"execute","class":"Doctrine\\DBAL\\Query\\QueryBuilder","type":"->"},{"file":"/config/www/nextcloud/lib/private/AppConfig.php","line":236,"function":"execute","class":"OC\\DB\\QueryBuilder\\QueryBuilder","type":"->"},{"file":"/config/www/nextcloud/lib/private/App/AppManager.php","line":407,"function":"setValue","class":"OC\\AppConfig","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":188,"function":"disableApp","class":"OC\\App\\AppManager","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":137,"function":"loadApp","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_Util.php","line":203,"function":"loadApps","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/Files/Filesystem.php","line":267,"function":"setupFS","class":"OC_Util","type":"::"},{"file":"/config/www/nextcloud/lib/private/Server.php","line":404,"function":"getMountManager","class":"OC\\Files\\Filesystem","type":"::"},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":155,"function":"OC\\{closure}","class":"OC\\Server","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/3rdparty/pimple/pimple/src/Pimple/Container.php","line":118,"function":"OC\\AppFramework\\Utility\\{closure}","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":122,"function":"offsetGet","class":"Pimple\\Container","type":"->"},{"file":"/config/www/nextcloud/lib/private/ServerContainer.php","line":137,"function":"query","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->"},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":56,"function":"query","class":"OC\\ServerContainer","type":"->"},{"file":"/config/www/nextcloud/lib/private/Server.php","line":437,"function":"get","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->"},{"function":"OC\\{closure}","class":"OC\\Server","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/Files/Node/LazyFolder.php","line":63,"function":"call_user_func"},{"file":"/config/www/nextcloud/lib/private/Files/Node/LazyFolder.php","line":143,"function":"__call","class":"OC\\Files\\Node\\LazyFolder","type":"->"},{"file":"/config/www/nextcloud/lib/private/Files/AppData/AppData.php","line":142,"function":"get","class":"OC\\Files\\Node\\LazyFolder","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ImageManager.php","line":110,"function":"getFolder","class":"OC\\Files\\AppData\\AppData","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ImageManager.php","line":82,"function":"getImage","class":"OCA\\Theming\\ImageManager","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ThemingDefaults.php","line":265,"function":"getImageUrl","class":"OCA\\Theming\\ImageManager","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/Capabilities.php","line":87,"function":"getBackground","class":"OCA\\Theming\\ThemingDefaults","type":"->"},{"file":"/config/www/nextcloud/lib/private/CapabilitiesManager.php","line":72,"function":"getCapabilities","class":"OCA\\Theming\\Capabilities","type":"->"},{"file":"/config/www/nextcloud/lib/private/Template/JSConfigHelper.php","line":183,"function":"getCapabilities","class":"OC\\CapabilitiesManager","type":"->"},{"file":"/config/www/nextcloud/lib/private/TemplateLayout.php","line":211,"function":"getConfig","class":"OC\\Template\\JSConfigHelper","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_Template.php","line":183,"function":"__construct","class":"OC\\TemplateLayout","type":"->"},{"file":"/config/www/nextcloud/lib/private/Template/Base.php","line":132,"function":"fetchPage","class":"OC_Template","type":"->"},{"file":"/config/www/nextcloud/lib/base.php","line":397,"function":"printPage","class":"OC\\Template\\Base","type":"->"},{"file":"/config/www/nextcloud/lib/base.php","line":949,"function":"printUpgradePage","class":"OC","type":"::"},{"file":"/config/www/nextcloud/index.php","line":37,"function":"handleRequest","class":"OC","type":"::"}],"File":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php","Line":114,"Previous":{"Exception":"Doctrine\\DBAL\\Driver\\PDO\\Exception","Message":"SQLSTATE[HY000]: General error: 4047 InnoDB refuses to write tables with ROW_FORMAT=COMPRESSED or KEY_BLOCK_SIZE.","Code":4047,"Trace":[{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/PDO/Statement.php","line":84,"function":"new","class":"Doctrine\\DBAL\\Driver\\PDO\\Exception","type":"::"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1136,"function":"execute","class":"Doctrine\\DBAL\\Driver\\PDO\\Statement","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/Connection.php","line":257,"function":"executeStatement","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Query/QueryBuilder.php","line":213,"function":"executeStatement","class":"OC\\DB\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/QueryBuilder/QueryBuilder.php","line":286,"function":"execute","class":"Doctrine\\DBAL\\Query\\QueryBuilder","type":"->"},{"file":"/config/www/nextcloud/lib/private/AppConfig.php","line":236,"function":"execute","class":"OC\\DB\\QueryBuilder\\QueryBuilder","type":"->"},{"file":"/config/www/nextcloud/lib/private/App/AppManager.php","line":407,"function":"setValue","class":"OC\\AppConfig","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":188,"function":"disableApp","class":"OC\\App\\AppManager","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":137,"function":"loadApp","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_Util.php","line":203,"function":"loadApps","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/Files/Filesystem.php","line":267,"function":"setupFS","class":"OC_Util","type":"::"},{"file":"/config/www/nextcloud/lib/private/Server.php","line":404,"function":"getMountManager","class":"OC\\Files\\Filesystem","type":"::"},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":155,"function":"OC\\{closure}","class":"OC\\Server","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/3rdparty/pimple/pimple/src/Pimple/Container.php","line":118,"function":"OC\\AppFramework\\Utility\\{closure}","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":122,"function":"offsetGet","class":"Pimple\\Container","type":"->"},{"file":"/config/www/nextcloud/lib/private/ServerContainer.php","line":137,"function":"query","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->"},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":56,"function":"query","class":"OC\\ServerContainer","type":"->"},{"file":"/config/www/nextcloud/lib/private/Server.php","line":437,"function":"get","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->"},{"function":"OC\\{closure}","class":"OC\\Server","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/Files/Node/LazyFolder.php","line":63,"function":"call_user_func"},{"file":"/config/www/nextcloud/lib/private/Files/Node/LazyFolder.php","line":143,"function":"__call","class":"OC\\Files\\Node\\LazyFolder","type":"->"},{"file":"/config/www/nextcloud/lib/private/Files/AppData/AppData.php","line":142,"function":"get","class":"OC\\Files\\Node\\LazyFolder","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ImageManager.php","line":110,"function":"getFolder","class":"OC\\Files\\AppData\\AppData","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ImageManager.php","line":82,"function":"getImage","class":"OCA\\Theming\\ImageManager","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ThemingDefaults.php","line":265,"function":"getImageUrl","class":"OCA\\Theming\\ImageManager","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/Capabilities.php","line":87,"function":"getBackground","class":"OCA\\Theming\\ThemingDefaults","type":"->"},{"file":"/config/www/nextcloud/lib/private/CapabilitiesManager.php","line":72,"function":"getCapabilities","class":"OCA\\Theming\\Capabilities","type":"->"},{"file":"/config/www/nextcloud/lib/private/Template/JSConfigHelper.php","line":183,"function":"getCapabilities","class":"OC\\CapabilitiesManager","type":"->"},{"file":"/config/www/nextcloud/lib/private/TemplateLayout.php","line":211,"function":"getConfig","class":"OC\\Template\\JSConfigHelper","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_Template.php","line":183,"function":"__construct","class":"OC\\TemplateLayout","type":"->"},{"file":"/config/www/nextcloud/lib/private/Template/Base.php","line":132,"function":"fetchPage","class":"OC_Template","type":"->"},{"file":"/config/www/nextcloud/lib/base.php","line":397,"function":"printPage","class":"OC\\Template\\Base","type":"->"},{"file":"/config/www/nextcloud/lib/base.php","line":949,"function":"printUpgradePage","class":"OC","type":"::"},{"file":"/config/www/nextcloud/index.php","line":37,"function":"handleRequest","class":"OC","type":"::"}],"File":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/PDO/Exception.php","Line":26,"Previous":{"Exception":"PDOException","Message":"SQLSTATE[HY000]: General error: 4047 InnoDB refuses to write tables with ROW_FORMAT=COMPRESSED or KEY_BLOCK_SIZE.","Code":"HY000","Trace":[{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/PDO/Statement.php","line":82,"function":"execute","class":"PDOStatement","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1136,"function":"execute","class":"Doctrine\\DBAL\\Driver\\PDO\\Statement","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/Connection.php","line":257,"function":"executeStatement","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Query/QueryBuilder.php","line":213,"function":"executeStatement","class":"OC\\DB\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/QueryBuilder/QueryBuilder.php","line":286,"function":"execute","class":"Doctrine\\DBAL\\Query\\QueryBuilder","type":"->"},{"file":"/config/www/nextcloud/lib/private/AppConfig.php","line":236,"function":"execute","class":"OC\\DB\\QueryBuilder\\QueryBuilder","type":"->"},{"file":"/config/www/nextcloud/lib/private/App/AppManager.php","line":407,"function":"setValue","class":"OC\\AppConfig","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":188,"function":"disableApp","class":"OC\\App\\AppManager","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":137,"function":"loadApp","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_Util.php","line":203,"function":"loadApps","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/Files/Filesystem.php","line":267,"function":"setupFS","class":"OC_Util","type":"::"},{"file":"/config/www/nextcloud/lib/private/Server.php","line":404,"function":"getMountManager","class":"OC\\Files\\Filesystem","type":"::"},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":155,"function":"OC\\{closure}","class":"OC\\Server","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/3rdparty/pimple/pimple/src/Pimple/Container.php","line":118,"function":"OC\\AppFramework\\Utility\\{closure}","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":122,"function":"offsetGet","class":"Pimple\\Container","type":"->"},{"file":"/config/www/nextcloud/lib/private/ServerContainer.php","line":137,"function":"query","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->"},{"file":"/config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":56,"function":"query","class":"OC\\ServerContainer","type":"->"},{"file":"/config/www/nextcloud/lib/private/Server.php","line":437,"function":"get","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->"},{"function":"OC\\{closure}","class":"OC\\Server","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/Files/Node/LazyFolder.php","line":63,"function":"call_user_func"},{"file":"/config/www/nextcloud/lib/private/Files/Node/LazyFolder.php","line":143,"function":"__call","class":"OC\\Files\\Node\\LazyFolder","type":"->"},{"file":"/config/www/nextcloud/lib/private/Files/AppData/AppData.php","line":142,"function":"get","class":"OC\\Files\\Node\\LazyFolder","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ImageManager.php","line":110,"function":"getFolder","class":"OC\\Files\\AppData\\AppData","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ImageManager.php","line":82,"function":"getImage","class":"OCA\\Theming\\ImageManager","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/ThemingDefaults.php","line":265,"function":"getImageUrl","class":"OCA\\Theming\\ImageManager","type":"->"},{"file":"/config/www/nextcloud/apps/theming/lib/Capabilities.php","line":87,"function":"getBackground","class":"OCA\\Theming\\ThemingDefaults","type":"->"},{"file":"/config/www/nextcloud/lib/private/CapabilitiesManager.php","line":72,"function":"getCapabilities","class":"OCA\\Theming\\Capabilities","type":"->"},{"file":"/config/www/nextcloud/lib/private/Template/JSConfigHelper.php","line":183,"function":"getCapabilities","class":"OC\\CapabilitiesManager","type":"->"},{"file":"/config/www/nextcloud/lib/private/TemplateLayout.php","line":211,"function":"getConfig","class":"OC\\Template\\JSConfigHelper","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_Template.php","line":183,"function":"__construct","class":"OC\\TemplateLayout","type":"->"},{"file":"/config/www/nextcloud/lib/private/Template/Base.php","line":132,"function":"fetchPage","class":"OC_Template","type":"->"},{"file":"/config/www/nextcloud/lib/base.php","line":397,"function":"printPage","class":"OC\\Template\\Base","type":"->"},{"file":"/config/www/nextcloud/lib/base.php","line":949,"function":"printUpgradePage","class":"OC","type":"::"},{"file":"/config/www/nextcloud/index.php","line":37,"function":"handleRequest","class":"OC","type":"::"}],"File":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/PDO/Statement.php","Line":82}},"CustomMessage":"--"},"userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:42:43+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::maintenanceEnabled: Turned on maintenance mode","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":0,"time":"2021-12-21T18:42:43+00:00","remoteAddr":"192.168.1.241","user":"--","app":"core","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"starting upgrade from 21.0.0.18 to 21.0.0.18","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:42:43+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:42:43+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::step: Repair step: Repair MySQL collation","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:42:43+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::info: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:42:43+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::info: Repair info: All tables already have the correct collation -> nothing to do","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:42:43+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:42:43+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::step: Repair step: Repair SQLite autoincrement","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:42:43+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:42:43+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::step: Repair step: Copy data from accounts table when migrating from ownCloud","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:42:44+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:42:44+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::step: Repair step: Drop account terms table when migrating from ownCloud","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:42:44+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::dbUpgradeBefore: Updating database schema","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:42:59+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::dbUpgrade: Updated database","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:42:59+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::incompatibleAppDisabled: Disabled incompatible app: flowupload","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:42:59+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::incompatibleAppDisabled: Disabled incompatible app: nextbackup","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:42:59+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgradeStarted: Updating <federation> ...","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:01+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgrade: Updated <federation> to 1.11.0","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:01+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgradeStarted: Updating <lookup_server_connector> ...","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:01+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgrade: Updated <lookup_server_connector> to 1.9.0","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:01+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgradeStarted: Updating <oauth2> ...","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:01+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:01+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::step: Repair step: Update OAuth token expiration times","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:01+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgrade: Updated <oauth2> to 1.9.0","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:01+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgradeStarted: Updating <user_external> ...","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:01+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgrade: Updated <user_external> to 2.0.0","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":0,"time":"2021-12-21T18:43:01+00:00","remoteAddr":"192.168.1.241","user":"--","app":"user_external","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"/appinfo/app.php is deprecated, use \\OCP\\AppFramework\\Bootstrap\\IBootstrap on the application class instead.","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:01+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgradeStarted: Updating <files> ...","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:01+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgrade: Updated <files> to 1.16.0","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:01+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgradeStarted: Updating <activity> ...","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:10+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgrade: Updated <activity> to 2.14.3","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:10+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgradeStarted: Updating <audioplayer> ...","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:10+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgrade: Updated <audioplayer> to 3.1.0","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:10+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgradeStarted: Updating <audioplayer_editor> ...","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:10+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgrade: Updated <audioplayer_editor> to 0.3.0","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":0,"time":"2021-12-21T18:43:10+00:00","remoteAddr":"192.168.1.241","user":"--","app":"audioplayer_editor","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"/appinfo/app.php is deprecated, use \\OCP\\AppFramework\\Bootstrap\\IBootstrap on the application class instead.","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:10+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgradeStarted: Updating <audioplayer_sonos> ...","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:10+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgrade: Updated <audioplayer_sonos> to 1.2.0","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":0,"time":"2021-12-21T18:43:10+00:00","remoteAddr":"192.168.1.241","user":"--","app":"audioplayer_sonos","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"/appinfo/app.php is deprecated, use \\OCP\\AppFramework\\Bootstrap\\IBootstrap on the application class instead.","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:10+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgradeStarted: Updating <camerarawpreviews> ...","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:10+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgrade: Updated <camerarawpreviews> to 0.7.11","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":0,"time":"2021-12-21T18:43:10+00:00","remoteAddr":"192.168.1.241","user":"--","app":"camerarawpreviews","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"/appinfo/app.php is deprecated, use \\OCP\\AppFramework\\Bootstrap\\IBootstrap on the application class instead.","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":0,"time":"2021-12-21T18:43:10+00:00","remoteAddr":"192.168.1.241","user":"--","app":"serverDI","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"The requested alias \"PreviewManager\" is deprecated. Please request \"OCP\\IPreview\" directly. This alias will be removed in a future Nextcloud version.","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:10+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgradeStarted: Updating <checksum> ...","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:10+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgrade: Updated <checksum> to 1.1.2","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:10+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgradeStarted: Updating <cloud_federation_api> ...","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:10+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgrade: Updated <cloud_federation_api> to 1.4.0","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:10+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgradeStarted: Updating <dav> ...","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::step: Repair step: Fix component of birthday calendars","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::info: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::info: Repair info: 20 birthday calendars updated.","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::step: Repair step: Regenerating birthday calendars to use new icons and fix old birthday events without year","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::info: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::info: Repair info: Repair step already executed","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::step: Repair step: Fix broken values of calendar objects","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::startProgress: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::startProgress: Starting ... Fix broken values of calendar objects (0)","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::finishProgress: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::finishProgress","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::step: Repair step: Registering building of calendar search index as background job","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::info: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::info: Repair info: Repair step already executed","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::step: Repair step: Register building of social profile search index as background job","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::step: Repair step: Registering background jobs to update cache for webcal calendars","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::info: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::info: Repair info: Added 0 background jobs to update webcal calendars","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::step: Repair step: Registering building of calendar reminder index as background job","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::info: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::info: Repair info: Repair step already executed","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::step: Repair step: Clean up orphan event and contact data","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::info: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::info: Repair info: 0 events without a calendar have been cleaned up","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::info: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::info: Repair info: 0 properties without an events have been cleaned up","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::info: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::info: Repair info: 0 changes without a calendar have been cleaned up","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::info: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::info: Repair info: 0 cached events without a calendar subscription have been cleaned up","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::info: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::info: Repair info: 0 changes without a calendar subscription have been cleaned up","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::info: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::info: Repair info: 0 contacts without an addressbook have been cleaned up","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::info: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::info: Repair info: 0 properties without a contact have been cleaned up","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::info: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::info: Repair info: 0 changes without an addressbook have been cleaned up","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::step: Repair step: Remove activity entries of private events","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::info: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::info: Repair info: Removed 0 activity entries","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgrade: Updated <dav> to 1.17.1","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgradeStarted: Updating <drawio> ...","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgrade: Updated <drawio> to 1.0.1","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":0,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"drawio","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"/appinfo/app.php is deprecated, use \\OCP\\AppFramework\\Bootstrap\\IBootstrap on the application class instead.","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:12+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgradeStarted: Updating <files_external> ...","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:14+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgrade: Updated <files_external> to 1.12.0","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":0,"time":"2021-12-21T18:43:14+00:00","remoteAddr":"192.168.1.241","user":"--","app":"files_external","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"/appinfo/app.php is deprecated, use \\OCP\\AppFramework\\Bootstrap\\IBootstrap on the application class instead.","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:14+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgradeStarted: Updating <files_sharing> ...","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":0,"time":"2021-12-21T18:43:17+00:00","remoteAddr":"192.168.1.241","user":"--","app":"files_sharing","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"/appinfo/app.php is deprecated, use \\OCP\\AppFramework\\Bootstrap\\IBootstrap on the application class instead.","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:17+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:17+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::step: Repair step: Fix the share type of guest shares when migrating from ownCloud","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:17+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:17+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::step: Repair step: Copy the share password into the dedicated column","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:17+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:17+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::step: Repair step: Set existing shares as accepted","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:17+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgrade: Updated <files_sharing> to 1.13.1","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":0,"time":"2021-12-21T18:43:17+00:00","remoteAddr":"192.168.1.241","user":"--","app":"files_sharing","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"/appinfo/app.php is deprecated, use \\OCP\\AppFramework\\Bootstrap\\IBootstrap on the application class instead.","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:17+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgradeStarted: Updating <files_trashbin> ...","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:18+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgrade: Updated <files_trashbin> to 1.11.0","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:19+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgradeStarted: Updating <files_versions> ...","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:19+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgrade: Updated <files_versions> to 1.14.0","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:19+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::appUpgradeStarted: Updating <music> ...","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":0,"time":"2021-12-21T18:43:19+00:00","remoteAddr":"192.168.1.241","user":"--","app":"music","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"/appinfo/app.php is deprecated, use \\OCP\\AppFramework\\Bootstrap\\IBootstrap on the application class instead.","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:19+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:19+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::step: Repair step: Drop any incompatible music database entries","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":0,"time":"2021-12-21T18:43:20+00:00","remoteAddr":"192.168.1.241","user":"--","app":"music","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"/appinfo/app.php is deprecated, use \\OCP\\AppFramework\\Bootstrap\\IBootstrap on the application class instead.","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:20+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:20+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::step: Repair step: Remove any playlist files mistakenly added to music_tracks table","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:20+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:20+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::step: Repair step: Combine multi-disk albums and store disk numbers per track","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:20+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:20+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Repair::step: Repair step: Set creation and update dates for the library entities without one","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":3,"time":"2021-12-21T18:43:21+00:00","remoteAddr":"192.168.1.241","user":"--","app":"core","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":{"Exception":"OC\\DB\\Exceptions\\DbalException","Message":"An exception occurred while executing a query: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'created' in 'where clause'","Code":1054,"Trace":[{"file":"/config/www/nextcloud/lib/private/DB/ConnectionAdapter.php","line":77,"function":"wrap","class":"OC\\DB\\Exceptions\\DbalException","type":"::"},{"file":"/config/www/nextcloud/apps/music/lib/Migration/TimestampInit.php","line":60,"function":"executeUpdate","class":"OC\\DB\\ConnectionAdapter","type":"->"},{"file":"/config/www/nextcloud/apps/music/lib/Migration/TimestampInit.php","line":51,"function":"setCreated","class":"OCA\\Music\\Migration\\TimestampInit","type":"->"},{"file":"/config/www/nextcloud/lib/private/Repair.php","line":117,"function":"run","class":"OCA\\Music\\Migration\\TimestampInit","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":1054,"function":"run","class":"OC\\Repair","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":996,"function":"executeRepairSteps","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":340,"function":"updateApp","class":"OC_App","type":"::","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":260,"function":"doAppUpgrade","class":"OC\\Updater","type":"->"},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":132,"function":"doUpgrade","class":"OC\\Updater","type":"->"},{"file":"/config/www/nextcloud/core/ajax/update.php","line":214,"function":"upgrade","class":"OC\\Updater","type":"->"}],"File":"/config/www/nextcloud/lib/private/DB/Exceptions/DbalException.php","Line":70,"Previous":{"Exception":"Doctrine\\DBAL\\Exception\\InvalidFieldNameException","Message":"An exception occurred while executing a query: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'created' in 'where clause'","Code":1054,"Trace":[{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1728,"function":"convert","class":"Doctrine\\DBAL\\Driver\\API\\MySQL\\ExceptionConverter","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1667,"function":"handleDriverException","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1146,"function":"convertExceptionDuringQuery","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/Connection.php","line":257,"function":"executeStatement","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1747,"function":"executeStatement","class":"OC\\DB\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/Connection.php","line":236,"function":"executeUpdate","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/ConnectionAdapter.php","line":75,"function":"executeUpdate","class":"OC\\DB\\Connection","type":"->"},{"file":"/config/www/nextcloud/apps/music/lib/Migration/TimestampInit.php","line":60,"function":"executeUpdate","class":"OC\\DB\\ConnectionAdapter","type":"->"},{"file":"/config/www/nextcloud/apps/music/lib/Migration/TimestampInit.php","line":51,"function":"setCreated","class":"OCA\\Music\\Migration\\TimestampInit","type":"->"},{"file":"/config/www/nextcloud/lib/private/Repair.php","line":117,"function":"run","class":"OCA\\Music\\Migration\\TimestampInit","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":1054,"function":"run","class":"OC\\Repair","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":996,"function":"executeRepairSteps","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":340,"function":"updateApp","class":"OC_App","type":"::","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":260,"function":"doAppUpgrade","class":"OC\\Updater","type":"->"},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":132,"function":"doUpgrade","class":"OC\\Updater","type":"->"},{"file":"/config/www/nextcloud/core/ajax/update.php","line":214,"function":"upgrade","class":"OC\\Updater","type":"->"}],"File":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php","Line":65,"Previous":{"Exception":"Doctrine\\DBAL\\Driver\\PDO\\Exception","Message":"SQLSTATE[42S22]: Column not found: 1054 Unknown column 'created' in 'where clause'","Code":1054,"Trace":[{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/PDO/Statement.php","line":84,"function":"new","class":"Doctrine\\DBAL\\Driver\\PDO\\Exception","type":"::"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1138,"function":"execute","class":"Doctrine\\DBAL\\Driver\\PDO\\Statement","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/Connection.php","line":257,"function":"executeStatement","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1747,"function":"executeStatement","class":"OC\\DB\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/Connection.php","line":236,"function":"executeUpdate","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/ConnectionAdapter.php","line":75,"function":"executeUpdate","class":"OC\\DB\\Connection","type":"->"},{"file":"/config/www/nextcloud/apps/music/lib/Migration/TimestampInit.php","line":60,"function":"executeUpdate","class":"OC\\DB\\ConnectionAdapter","type":"->"},{"file":"/config/www/nextcloud/apps/music/lib/Migration/TimestampInit.php","line":51,"function":"setCreated","class":"OCA\\Music\\Migration\\TimestampInit","type":"->"},{"file":"/config/www/nextcloud/lib/private/Repair.php","line":117,"function":"run","class":"OCA\\Music\\Migration\\TimestampInit","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":1054,"function":"run","class":"OC\\Repair","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":996,"function":"executeRepairSteps","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":340,"function":"updateApp","class":"OC_App","type":"::","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":260,"function":"doAppUpgrade","class":"OC\\Updater","type":"->"},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":132,"function":"doUpgrade","class":"OC\\Updater","type":"->"},{"file":"/config/www/nextcloud/core/ajax/update.php","line":214,"function":"upgrade","class":"OC\\Updater","type":"->"}],"File":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/PDO/Exception.php","Line":26,"Previous":{"Exception":"PDOException","Message":"SQLSTATE[42S22]: Column not found: 1054 Unknown column 'created' in 'where clause'","Code":"42S22","Trace":[{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/PDO/Statement.php","line":82,"function":"execute","class":"PDOStatement","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1138,"function":"execute","class":"Doctrine\\DBAL\\Driver\\PDO\\Statement","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/Connection.php","line":257,"function":"executeStatement","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1747,"function":"executeStatement","class":"OC\\DB\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/Connection.php","line":236,"function":"executeUpdate","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/ConnectionAdapter.php","line":75,"function":"executeUpdate","class":"OC\\DB\\Connection","type":"->"},{"file":"/config/www/nextcloud/apps/music/lib/Migration/TimestampInit.php","line":60,"function":"executeUpdate","class":"OC\\DB\\ConnectionAdapter","type":"->"},{"file":"/config/www/nextcloud/apps/music/lib/Migration/TimestampInit.php","line":51,"function":"setCreated","class":"OCA\\Music\\Migration\\TimestampInit","type":"->"},{"file":"/config/www/nextcloud/lib/private/Repair.php","line":117,"function":"run","class":"OCA\\Music\\Migration\\TimestampInit","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":1054,"function":"run","class":"OC\\Repair","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":996,"function":"executeRepairSteps","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":340,"function":"updateApp","class":"OC_App","type":"::","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":260,"function":"doAppUpgrade","class":"OC\\Updater","type":"->"},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":132,"function":"doUpgrade","class":"OC\\Updater","type":"->"},{"file":"/config/www/nextcloud/core/ajax/update.php","line":214,"function":"upgrade","class":"OC\\Updater","type":"->"}],"File":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/PDO/Statement.php","Line":82}}},"CustomMessage":"--"},"userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":3,"time":"2021-12-21T18:43:21+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::failure: OC\\DB\\Exceptions\\DbalException: An exception occurred while executing a query: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'created' in 'where clause'","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":3,"time":"2021-12-21T18:43:21+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::updateEnd: Update failed","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:21+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::maintenanceActive: Maintenance mode is kept active","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"JTyVyJ8MzEjvWx8R1BIf","level":1,"time":"2021-12-21T18:43:21+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=ZUvv3FiG9Ei275QztKEoE4Ud4yheQUxJ7gOGeHw3IFA%3D%3AFz6svQ3EgDjctcYL8NVwYrZnq30QAAcmg2nkIDVuZwg%3D","message":"\\OC\\Updater::resetLogLevel: Reset log level to Warning(2)","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":1,"time":"2021-12-21T18:53:30+00:00","remoteAddr":"","user":"--","app":"updater","method":"","url":"--","message":"\\OC\\Updater::maintenanceEnabled: Turned on maintenance mode","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":0,"time":"2021-12-21T18:53:30+00:00","remoteAddr":"","user":"--","app":"core","method":"","url":"--","message":"starting upgrade from 21.0.0.18 to 21.0.0.18","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":1,"time":"2021-12-21T18:53:30+00:00","remoteAddr":"","user":"--","app":"no app in context","method":"","url":"--","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":1,"time":"2021-12-21T18:53:30+00:00","remoteAddr":"","user":"--","app":"updater","method":"","url":"--","message":"\\OC\\Repair::step: Repair step: Repair MySQL collation","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":1,"time":"2021-12-21T18:53:30+00:00","remoteAddr":"","user":"--","app":"no app in context","method":"","url":"--","message":"Deprecated event type for \\OC\\Repair::info: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":1,"time":"2021-12-21T18:53:30+00:00","remoteAddr":"","user":"--","app":"updater","method":"","url":"--","message":"\\OC\\Repair::info: Repair info: All tables already have the correct collation -> nothing to do","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":1,"time":"2021-12-21T18:53:30+00:00","remoteAddr":"","user":"--","app":"no app in context","method":"","url":"--","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":1,"time":"2021-12-21T18:53:30+00:00","remoteAddr":"","user":"--","app":"updater","method":"","url":"--","message":"\\OC\\Repair::step: Repair step: Repair SQLite autoincrement","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":1,"time":"2021-12-21T18:53:30+00:00","remoteAddr":"","user":"--","app":"no app in context","method":"","url":"--","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":1,"time":"2021-12-21T18:53:30+00:00","remoteAddr":"","user":"--","app":"updater","method":"","url":"--","message":"\\OC\\Repair::step: Repair step: Copy data from accounts table when migrating from ownCloud","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":1,"time":"2021-12-21T18:53:31+00:00","remoteAddr":"","user":"--","app":"no app in context","method":"","url":"--","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":1,"time":"2021-12-21T18:53:31+00:00","remoteAddr":"","user":"--","app":"updater","method":"","url":"--","message":"\\OC\\Repair::step: Repair step: Drop account terms table when migrating from ownCloud","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":1,"time":"2021-12-21T18:53:31+00:00","remoteAddr":"","user":"--","app":"updater","method":"","url":"--","message":"\\OC\\Updater::dbUpgradeBefore: Updating database schema","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":1,"time":"2021-12-21T18:53:31+00:00","remoteAddr":"","user":"--","app":"updater","method":"","url":"--","message":"\\OC\\Updater::dbUpgrade: Updated database","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":0,"time":"2021-12-21T18:53:31+00:00","remoteAddr":"","user":"--","app":"user_external","method":"","url":"--","message":"/appinfo/app.php is deprecated, use \\OCP\\AppFramework\\Bootstrap\\IBootstrap on the application class instead.","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":0,"time":"2021-12-21T18:53:31+00:00","remoteAddr":"","user":"--","app":"audioplayer_editor","method":"","url":"--","message":"/appinfo/app.php is deprecated, use \\OCP\\AppFramework\\Bootstrap\\IBootstrap on the application class instead.","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":0,"time":"2021-12-21T18:53:31+00:00","remoteAddr":"","user":"--","app":"audioplayer_sonos","method":"","url":"--","message":"/appinfo/app.php is deprecated, use \\OCP\\AppFramework\\Bootstrap\\IBootstrap on the application class instead.","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":0,"time":"2021-12-21T18:53:31+00:00","remoteAddr":"","user":"--","app":"camerarawpreviews","method":"","url":"--","message":"/appinfo/app.php is deprecated, use \\OCP\\AppFramework\\Bootstrap\\IBootstrap on the application class instead.","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":0,"time":"2021-12-21T18:53:31+00:00","remoteAddr":"","user":"--","app":"serverDI","method":"","url":"--","message":"The requested alias \"PreviewManager\" is deprecated. Please request \"OCP\\IPreview\" directly. This alias will be removed in a future Nextcloud version.","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":0,"time":"2021-12-21T18:53:31+00:00","remoteAddr":"","user":"--","app":"drawio","method":"","url":"--","message":"/appinfo/app.php is deprecated, use \\OCP\\AppFramework\\Bootstrap\\IBootstrap on the application class instead.","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":0,"time":"2021-12-21T18:53:31+00:00","remoteAddr":"","user":"--","app":"files_external","method":"","url":"--","message":"/appinfo/app.php is deprecated, use \\OCP\\AppFramework\\Bootstrap\\IBootstrap on the application class instead.","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":0,"time":"2021-12-21T18:53:32+00:00","remoteAddr":"","user":"--","app":"files_sharing","method":"","url":"--","message":"/appinfo/app.php is deprecated, use \\OCP\\AppFramework\\Bootstrap\\IBootstrap on the application class instead.","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":1,"time":"2021-12-21T18:53:32+00:00","remoteAddr":"","user":"--","app":"updater","method":"","url":"--","message":"\\OC\\Updater::appUpgradeStarted: Updating <music> ...","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":0,"time":"2021-12-21T18:53:32+00:00","remoteAddr":"","user":"--","app":"music","method":"","url":"--","message":"/appinfo/app.php is deprecated, use \\OCP\\AppFramework\\Bootstrap\\IBootstrap on the application class instead.","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":1,"time":"2021-12-21T18:53:32+00:00","remoteAddr":"","user":"--","app":"no app in context","method":"","url":"--","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":1,"time":"2021-12-21T18:53:32+00:00","remoteAddr":"","user":"--","app":"updater","method":"","url":"--","message":"\\OC\\Repair::step: Repair step: Drop any incompatible music database entries","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":0,"time":"2021-12-21T18:53:32+00:00","remoteAddr":"","user":"--","app":"music","method":"","url":"--","message":"/appinfo/app.php is deprecated, use \\OCP\\AppFramework\\Bootstrap\\IBootstrap on the application class instead.","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":1,"time":"2021-12-21T18:53:32+00:00","remoteAddr":"","user":"--","app":"no app in context","method":"","url":"--","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":1,"time":"2021-12-21T18:53:32+00:00","remoteAddr":"","user":"--","app":"updater","method":"","url":"--","message":"\\OC\\Repair::step: Repair step: Remove any playlist files mistakenly added to music_tracks table","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":1,"time":"2021-12-21T18:53:32+00:00","remoteAddr":"","user":"--","app":"no app in context","method":"","url":"--","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":1,"time":"2021-12-21T18:53:32+00:00","remoteAddr":"","user":"--","app":"updater","method":"","url":"--","message":"\\OC\\Repair::step: Repair step: Combine multi-disk albums and store disk numbers per track","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":1,"time":"2021-12-21T18:53:32+00:00","remoteAddr":"","user":"--","app":"no app in context","method":"","url":"--","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":1,"time":"2021-12-21T18:53:32+00:00","remoteAddr":"","user":"--","app":"updater","method":"","url":"--","message":"\\OC\\Repair::step: Repair step: Set creation and update dates for the library entities without one","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":3,"time":"2021-12-21T18:53:32+00:00","remoteAddr":"","user":"--","app":"core","method":"","url":"--","message":{"Exception":"OC\\DB\\Exceptions\\DbalException","Message":"An exception occurred while executing a query: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'created' in 'where clause'","Code":1054,"Trace":[{"file":"/config/www/nextcloud/lib/private/DB/ConnectionAdapter.php","line":77,"function":"wrap","class":"OC\\DB\\Exceptions\\DbalException","type":"::"},{"file":"/config/www/nextcloud/apps/music/lib/Migration/TimestampInit.php","line":60,"function":"executeUpdate","class":"OC\\DB\\ConnectionAdapter","type":"->"},{"file":"/config/www/nextcloud/apps/music/lib/Migration/TimestampInit.php","line":51,"function":"setCreated","class":"OCA\\Music\\Migration\\TimestampInit","type":"->"},{"file":"/config/www/nextcloud/lib/private/Repair.php","line":117,"function":"run","class":"OCA\\Music\\Migration\\TimestampInit","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":1054,"function":"run","class":"OC\\Repair","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":996,"function":"executeRepairSteps","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":340,"function":"updateApp","class":"OC_App","type":"::","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":260,"function":"doAppUpgrade","class":"OC\\Updater","type":"->"},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":132,"function":"doUpgrade","class":"OC\\Updater","type":"->"},{"file":"/config/www/nextcloud/core/Command/Upgrade.php","line":255,"function":"upgrade","class":"OC\\Updater","type":"->"},{"file":"/config/www/nextcloud/3rdparty/symfony/console/Command/Command.php","line":255,"function":"execute","class":"OC\\Core\\Command\\Upgrade","type":"->"},{"file":"/config/www/nextcloud/3rdparty/symfony/console/Application.php","line":1009,"function":"run","class":"Symfony\\Component\\Console\\Command\\Command","type":"->"},{"file":"/config/www/nextcloud/3rdparty/symfony/console/Application.php","line":273,"function":"doRunCommand","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"/config/www/nextcloud/3rdparty/symfony/console/Application.php","line":149,"function":"doRun","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"/config/www/nextcloud/lib/private/Console/Application.php","line":215,"function":"run","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"/config/www/nextcloud/console.php","line":100,"function":"run","class":"OC\\Console\\Application","type":"->"},{"file":"/config/www/nextcloud/occ","line":11,"args":["/config/www/nextcloud/console.php"],"function":"require_once"}],"File":"/config/www/nextcloud/lib/private/DB/Exceptions/DbalException.php","Line":70,"Previous":{"Exception":"Doctrine\\DBAL\\Exception\\InvalidFieldNameException","Message":"An exception occurred while executing a query: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'created' in 'where clause'","Code":1054,"Trace":[{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1728,"function":"convert","class":"Doctrine\\DBAL\\Driver\\API\\MySQL\\ExceptionConverter","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1667,"function":"handleDriverException","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1146,"function":"convertExceptionDuringQuery","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/Connection.php","line":257,"function":"executeStatement","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1747,"function":"executeStatement","class":"OC\\DB\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/Connection.php","line":236,"function":"executeUpdate","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/ConnectionAdapter.php","line":75,"function":"executeUpdate","class":"OC\\DB\\Connection","type":"->"},{"file":"/config/www/nextcloud/apps/music/lib/Migration/TimestampInit.php","line":60,"function":"executeUpdate","class":"OC\\DB\\ConnectionAdapter","type":"->"},{"file":"/config/www/nextcloud/apps/music/lib/Migration/TimestampInit.php","line":51,"function":"setCreated","class":"OCA\\Music\\Migration\\TimestampInit","type":"->"},{"file":"/config/www/nextcloud/lib/private/Repair.php","line":117,"function":"run","class":"OCA\\Music\\Migration\\TimestampInit","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":1054,"function":"run","class":"OC\\Repair","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":996,"function":"executeRepairSteps","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":340,"function":"updateApp","class":"OC_App","type":"::","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":260,"function":"doAppUpgrade","class":"OC\\Updater","type":"->"},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":132,"function":"doUpgrade","class":"OC\\Updater","type":"->"},{"file":"/config/www/nextcloud/core/Command/Upgrade.php","line":255,"function":"upgrade","class":"OC\\Updater","type":"->"},{"file":"/config/www/nextcloud/3rdparty/symfony/console/Command/Command.php","line":255,"function":"execute","class":"OC\\Core\\Command\\Upgrade","type":"->"},{"file":"/config/www/nextcloud/3rdparty/symfony/console/Application.php","line":1009,"function":"run","class":"Symfony\\Component\\Console\\Command\\Command","type":"->"},{"file":"/config/www/nextcloud/3rdparty/symfony/console/Application.php","line":273,"function":"doRunCommand","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"/config/www/nextcloud/3rdparty/symfony/console/Application.php","line":149,"function":"doRun","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"/config/www/nextcloud/lib/private/Console/Application.php","line":215,"function":"run","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"/config/www/nextcloud/console.php","line":100,"function":"run","class":"OC\\Console\\Application","type":"->"},{"file":"/config/www/nextcloud/occ","line":11,"args":["/config/www/nextcloud/console.php"],"function":"require_once"}],"File":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php","Line":65,"Previous":{"Exception":"Doctrine\\DBAL\\Driver\\PDO\\Exception","Message":"SQLSTATE[42S22]: Column not found: 1054 Unknown column 'created' in 'where clause'","Code":1054,"Trace":[{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/PDO/Statement.php","line":84,"function":"new","class":"Doctrine\\DBAL\\Driver\\PDO\\Exception","type":"::"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1138,"function":"execute","class":"Doctrine\\DBAL\\Driver\\PDO\\Statement","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/Connection.php","line":257,"function":"executeStatement","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1747,"function":"executeStatement","class":"OC\\DB\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/Connection.php","line":236,"function":"executeUpdate","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/ConnectionAdapter.php","line":75,"function":"executeUpdate","class":"OC\\DB\\Connection","type":"->"},{"file":"/config/www/nextcloud/apps/music/lib/Migration/TimestampInit.php","line":60,"function":"executeUpdate","class":"OC\\DB\\ConnectionAdapter","type":"->"},{"file":"/config/www/nextcloud/apps/music/lib/Migration/TimestampInit.php","line":51,"function":"setCreated","class":"OCA\\Music\\Migration\\TimestampInit","type":"->"},{"file":"/config/www/nextcloud/lib/private/Repair.php","line":117,"function":"run","class":"OCA\\Music\\Migration\\TimestampInit","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":1054,"function":"run","class":"OC\\Repair","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":996,"function":"executeRepairSteps","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":340,"function":"updateApp","class":"OC_App","type":"::","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":260,"function":"doAppUpgrade","class":"OC\\Updater","type":"->"},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":132,"function":"doUpgrade","class":"OC\\Updater","type":"->"},{"file":"/config/www/nextcloud/core/Command/Upgrade.php","line":255,"function":"upgrade","class":"OC\\Updater","type":"->"},{"file":"/config/www/nextcloud/3rdparty/symfony/console/Command/Command.php","line":255,"function":"execute","class":"OC\\Core\\Command\\Upgrade","type":"->"},{"file":"/config/www/nextcloud/3rdparty/symfony/console/Application.php","line":1009,"function":"run","class":"Symfony\\Component\\Console\\Command\\Command","type":"->"},{"file":"/config/www/nextcloud/3rdparty/symfony/console/Application.php","line":273,"function":"doRunCommand","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"/config/www/nextcloud/3rdparty/symfony/console/Application.php","line":149,"function":"doRun","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"/config/www/nextcloud/lib/private/Console/Application.php","line":215,"function":"run","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"/config/www/nextcloud/console.php","line":100,"function":"run","class":"OC\\Console\\Application","type":"->"},{"file":"/config/www/nextcloud/occ","line":11,"args":["/config/www/nextcloud/console.php"],"function":"require_once"}],"File":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/PDO/Exception.php","Line":26,"Previous":{"Exception":"PDOException","Message":"SQLSTATE[42S22]: Column not found: 1054 Unknown column 'created' in 'where clause'","Code":"42S22","Trace":[{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/PDO/Statement.php","line":82,"function":"execute","class":"PDOStatement","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1138,"function":"execute","class":"Doctrine\\DBAL\\Driver\\PDO\\Statement","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/Connection.php","line":257,"function":"executeStatement","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1747,"function":"executeStatement","class":"OC\\DB\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/Connection.php","line":236,"function":"executeUpdate","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/ConnectionAdapter.php","line":75,"function":"executeUpdate","class":"OC\\DB\\Connection","type":"->"},{"file":"/config/www/nextcloud/apps/music/lib/Migration/TimestampInit.php","line":60,"function":"executeUpdate","class":"OC\\DB\\ConnectionAdapter","type":"->"},{"file":"/config/www/nextcloud/apps/music/lib/Migration/TimestampInit.php","line":51,"function":"setCreated","class":"OCA\\Music\\Migration\\TimestampInit","type":"->"},{"file":"/config/www/nextcloud/lib/private/Repair.php","line":117,"function":"run","class":"OCA\\Music\\Migration\\TimestampInit","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":1054,"function":"run","class":"OC\\Repair","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":996,"function":"executeRepairSteps","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":340,"function":"updateApp","class":"OC_App","type":"::","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":260,"function":"doAppUpgrade","class":"OC\\Updater","type":"->"},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":132,"function":"doUpgrade","class":"OC\\Updater","type":"->"},{"file":"/config/www/nextcloud/core/Command/Upgrade.php","line":255,"function":"upgrade","class":"OC\\Updater","type":"->"},{"file":"/config/www/nextcloud/3rdparty/symfony/console/Command/Command.php","line":255,"function":"execute","class":"OC\\Core\\Command\\Upgrade","type":"->"},{"file":"/config/www/nextcloud/3rdparty/symfony/console/Application.php","line":1009,"function":"run","class":"Symfony\\Component\\Console\\Command\\Command","type":"->"},{"file":"/config/www/nextcloud/3rdparty/symfony/console/Application.php","line":273,"function":"doRunCommand","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"/config/www/nextcloud/3rdparty/symfony/console/Application.php","line":149,"function":"doRun","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"/config/www/nextcloud/lib/private/Console/Application.php","line":215,"function":"run","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"/config/www/nextcloud/console.php","line":100,"function":"run","class":"OC\\Console\\Application","type":"->"},{"file":"/config/www/nextcloud/occ","line":11,"args":["/config/www/nextcloud/console.php"],"function":"require_once"}],"File":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/PDO/Statement.php","Line":82}}},"CustomMessage":"--"},"userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":3,"time":"2021-12-21T18:53:32+00:00","remoteAddr":"","user":"--","app":"updater","method":"","url":"--","message":"\\OC\\Updater::failure: OC\\DB\\Exceptions\\DbalException: An exception occurred while executing a query: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'created' in 'where clause'","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":3,"time":"2021-12-21T18:53:32+00:00","remoteAddr":"","user":"--","app":"updater","method":"","url":"--","message":"\\OC\\Updater::updateEnd: Update failed","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":1,"time":"2021-12-21T18:53:32+00:00","remoteAddr":"","user":"--","app":"updater","method":"","url":"--","message":"\\OC\\Updater::maintenanceActive: Maintenance mode is kept active","userAgent":"--","version":"21.0.0.18"} {"reqId":"Xsp8X8uzwZlnch4wN4jw","level":1,"time":"2021-12-21T18:53:32+00:00","remoteAddr":"","user":"--","app":"updater","method":"","url":"--","message":"\\OC\\Updater::resetLogLevel: Reset log level to Warning(2)","userAgent":"--","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":0,"time":"2021-12-21T18:54:29+00:00","remoteAddr":"192.168.1.241","user":"--","app":"core","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"starting upgrade from 21.0.0.18 to 21.0.0.18","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":1,"time":"2021-12-21T18:54:29+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":1,"time":"2021-12-21T18:54:29+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"\\OC\\Repair::step: Repair step: Repair MySQL collation","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":1,"time":"2021-12-21T18:54:29+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"Deprecated event type for \\OC\\Repair::info: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":1,"time":"2021-12-21T18:54:29+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"\\OC\\Repair::info: Repair info: All tables already have the correct collation -> nothing to do","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":1,"time":"2021-12-21T18:54:29+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":1,"time":"2021-12-21T18:54:29+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"\\OC\\Repair::step: Repair step: Repair SQLite autoincrement","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":1,"time":"2021-12-21T18:54:29+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":1,"time":"2021-12-21T18:54:29+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"\\OC\\Repair::step: Repair step: Copy data from accounts table when migrating from ownCloud","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":1,"time":"2021-12-21T18:54:30+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":1,"time":"2021-12-21T18:54:30+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"\\OC\\Repair::step: Repair step: Drop account terms table when migrating from ownCloud","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":1,"time":"2021-12-21T18:54:30+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"\\OC\\Updater::dbUpgradeBefore: Updating database schema","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":1,"time":"2021-12-21T18:54:30+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"\\OC\\Updater::dbUpgrade: Updated database","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":0,"time":"2021-12-21T18:54:30+00:00","remoteAddr":"192.168.1.241","user":"--","app":"user_external","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"/appinfo/app.php is deprecated, use \\OCP\\AppFramework\\Bootstrap\\IBootstrap on the application class instead.","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":0,"time":"2021-12-21T18:54:30+00:00","remoteAddr":"192.168.1.241","user":"--","app":"audioplayer_editor","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"/appinfo/app.php is deprecated, use \\OCP\\AppFramework\\Bootstrap\\IBootstrap on the application class instead.","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":0,"time":"2021-12-21T18:54:30+00:00","remoteAddr":"192.168.1.241","user":"--","app":"audioplayer_sonos","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"/appinfo/app.php is deprecated, use \\OCP\\AppFramework\\Bootstrap\\IBootstrap on the application class instead.","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":0,"time":"2021-12-21T18:54:30+00:00","remoteAddr":"192.168.1.241","user":"--","app":"camerarawpreviews","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"/appinfo/app.php is deprecated, use \\OCP\\AppFramework\\Bootstrap\\IBootstrap on the application class instead.","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":0,"time":"2021-12-21T18:54:30+00:00","remoteAddr":"192.168.1.241","user":"--","app":"serverDI","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"The requested alias \"PreviewManager\" is deprecated. Please request \"OCP\\IPreview\" directly. This alias will be removed in a future Nextcloud version.","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":0,"time":"2021-12-21T18:54:30+00:00","remoteAddr":"192.168.1.241","user":"--","app":"drawio","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"/appinfo/app.php is deprecated, use \\OCP\\AppFramework\\Bootstrap\\IBootstrap on the application class instead.","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":0,"time":"2021-12-21T18:54:30+00:00","remoteAddr":"192.168.1.241","user":"--","app":"files_external","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"/appinfo/app.php is deprecated, use \\OCP\\AppFramework\\Bootstrap\\IBootstrap on the application class instead.","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":0,"time":"2021-12-21T18:54:30+00:00","remoteAddr":"192.168.1.241","user":"--","app":"files_sharing","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"/appinfo/app.php is deprecated, use \\OCP\\AppFramework\\Bootstrap\\IBootstrap on the application class instead.","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":1,"time":"2021-12-21T18:54:30+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"\\OC\\Updater::appUpgradeStarted: Updating <music> ...","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":0,"time":"2021-12-21T18:54:30+00:00","remoteAddr":"192.168.1.241","user":"--","app":"music","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"/appinfo/app.php is deprecated, use \\OCP\\AppFramework\\Bootstrap\\IBootstrap on the application class instead.","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":1,"time":"2021-12-21T18:54:30+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":1,"time":"2021-12-21T18:54:30+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"\\OC\\Repair::step: Repair step: Drop any incompatible music database entries","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":0,"time":"2021-12-21T18:54:30+00:00","remoteAddr":"192.168.1.241","user":"--","app":"music","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"/appinfo/app.php is deprecated, use \\OCP\\AppFramework\\Bootstrap\\IBootstrap on the application class instead.","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":1,"time":"2021-12-21T18:54:30+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":1,"time":"2021-12-21T18:54:30+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"\\OC\\Repair::step: Repair step: Remove any playlist files mistakenly added to music_tracks table","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":1,"time":"2021-12-21T18:54:30+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":1,"time":"2021-12-21T18:54:30+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"\\OC\\Repair::step: Repair step: Combine multi-disk albums and store disk numbers per track","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":1,"time":"2021-12-21T18:54:30+00:00","remoteAddr":"192.168.1.241","user":"--","app":"no app in context","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"Deprecated event type for \\OC\\Repair::step: Symfony\\Component\\EventDispatcher\\GenericEvent is used","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":1,"time":"2021-12-21T18:54:30+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"\\OC\\Repair::step: Repair step: Set creation and update dates for the library entities without one","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":3,"time":"2021-12-21T18:54:30+00:00","remoteAddr":"192.168.1.241","user":"--","app":"core","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":{"Exception":"OC\\DB\\Exceptions\\DbalException","Message":"An exception occurred while executing a query: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'created' in 'where clause'","Code":1054,"Trace":[{"file":"/config/www/nextcloud/lib/private/DB/ConnectionAdapter.php","line":77,"function":"wrap","class":"OC\\DB\\Exceptions\\DbalException","type":"::"},{"file":"/config/www/nextcloud/apps/music/lib/Migration/TimestampInit.php","line":60,"function":"executeUpdate","class":"OC\\DB\\ConnectionAdapter","type":"->"},{"file":"/config/www/nextcloud/apps/music/lib/Migration/TimestampInit.php","line":51,"function":"setCreated","class":"OCA\\Music\\Migration\\TimestampInit","type":"->"},{"file":"/config/www/nextcloud/lib/private/Repair.php","line":117,"function":"run","class":"OCA\\Music\\Migration\\TimestampInit","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":1054,"function":"run","class":"OC\\Repair","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":996,"function":"executeRepairSteps","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":340,"function":"updateApp","class":"OC_App","type":"::","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":260,"function":"doAppUpgrade","class":"OC\\Updater","type":"->"},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":132,"function":"doUpgrade","class":"OC\\Updater","type":"->"},{"file":"/config/www/nextcloud/core/ajax/update.php","line":214,"function":"upgrade","class":"OC\\Updater","type":"->"}],"File":"/config/www/nextcloud/lib/private/DB/Exceptions/DbalException.php","Line":70,"Previous":{"Exception":"Doctrine\\DBAL\\Exception\\InvalidFieldNameException","Message":"An exception occurred while executing a query: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'created' in 'where clause'","Code":1054,"Trace":[{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1728,"function":"convert","class":"Doctrine\\DBAL\\Driver\\API\\MySQL\\ExceptionConverter","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1667,"function":"handleDriverException","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1146,"function":"convertExceptionDuringQuery","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/Connection.php","line":257,"function":"executeStatement","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1747,"function":"executeStatement","class":"OC\\DB\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/Connection.php","line":236,"function":"executeUpdate","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/ConnectionAdapter.php","line":75,"function":"executeUpdate","class":"OC\\DB\\Connection","type":"->"},{"file":"/config/www/nextcloud/apps/music/lib/Migration/TimestampInit.php","line":60,"function":"executeUpdate","class":"OC\\DB\\ConnectionAdapter","type":"->"},{"file":"/config/www/nextcloud/apps/music/lib/Migration/TimestampInit.php","line":51,"function":"setCreated","class":"OCA\\Music\\Migration\\TimestampInit","type":"->"},{"file":"/config/www/nextcloud/lib/private/Repair.php","line":117,"function":"run","class":"OCA\\Music\\Migration\\TimestampInit","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":1054,"function":"run","class":"OC\\Repair","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":996,"function":"executeRepairSteps","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":340,"function":"updateApp","class":"OC_App","type":"::","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":260,"function":"doAppUpgrade","class":"OC\\Updater","type":"->"},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":132,"function":"doUpgrade","class":"OC\\Updater","type":"->"},{"file":"/config/www/nextcloud/core/ajax/update.php","line":214,"function":"upgrade","class":"OC\\Updater","type":"->"}],"File":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php","Line":65,"Previous":{"Exception":"Doctrine\\DBAL\\Driver\\PDO\\Exception","Message":"SQLSTATE[42S22]: Column not found: 1054 Unknown column 'created' in 'where clause'","Code":1054,"Trace":[{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/PDO/Statement.php","line":84,"function":"new","class":"Doctrine\\DBAL\\Driver\\PDO\\Exception","type":"::"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1138,"function":"execute","class":"Doctrine\\DBAL\\Driver\\PDO\\Statement","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/Connection.php","line":257,"function":"executeStatement","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1747,"function":"executeStatement","class":"OC\\DB\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/Connection.php","line":236,"function":"executeUpdate","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/ConnectionAdapter.php","line":75,"function":"executeUpdate","class":"OC\\DB\\Connection","type":"->"},{"file":"/config/www/nextcloud/apps/music/lib/Migration/TimestampInit.php","line":60,"function":"executeUpdate","class":"OC\\DB\\ConnectionAdapter","type":"->"},{"file":"/config/www/nextcloud/apps/music/lib/Migration/TimestampInit.php","line":51,"function":"setCreated","class":"OCA\\Music\\Migration\\TimestampInit","type":"->"},{"file":"/config/www/nextcloud/lib/private/Repair.php","line":117,"function":"run","class":"OCA\\Music\\Migration\\TimestampInit","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":1054,"function":"run","class":"OC\\Repair","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":996,"function":"executeRepairSteps","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":340,"function":"updateApp","class":"OC_App","type":"::","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":260,"function":"doAppUpgrade","class":"OC\\Updater","type":"->"},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":132,"function":"doUpgrade","class":"OC\\Updater","type":"->"},{"file":"/config/www/nextcloud/core/ajax/update.php","line":214,"function":"upgrade","class":"OC\\Updater","type":"->"}],"File":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/PDO/Exception.php","Line":26,"Previous":{"Exception":"PDOException","Message":"SQLSTATE[42S22]: Column not found: 1054 Unknown column 'created' in 'where clause'","Code":"42S22","Trace":[{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/PDO/Statement.php","line":82,"function":"execute","class":"PDOStatement","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1138,"function":"execute","class":"Doctrine\\DBAL\\Driver\\PDO\\Statement","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/Connection.php","line":257,"function":"executeStatement","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Connection.php","line":1747,"function":"executeStatement","class":"OC\\DB\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/Connection.php","line":236,"function":"executeUpdate","class":"Doctrine\\DBAL\\Connection","type":"->"},{"file":"/config/www/nextcloud/lib/private/DB/ConnectionAdapter.php","line":75,"function":"executeUpdate","class":"OC\\DB\\Connection","type":"->"},{"file":"/config/www/nextcloud/apps/music/lib/Migration/TimestampInit.php","line":60,"function":"executeUpdate","class":"OC\\DB\\ConnectionAdapter","type":"->"},{"file":"/config/www/nextcloud/apps/music/lib/Migration/TimestampInit.php","line":51,"function":"setCreated","class":"OCA\\Music\\Migration\\TimestampInit","type":"->"},{"file":"/config/www/nextcloud/lib/private/Repair.php","line":117,"function":"run","class":"OCA\\Music\\Migration\\TimestampInit","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":1054,"function":"run","class":"OC\\Repair","type":"->"},{"file":"/config/www/nextcloud/lib/private/legacy/OC_App.php","line":996,"function":"executeRepairSteps","class":"OC_App","type":"::"},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":340,"function":"updateApp","class":"OC_App","type":"::","args":["*** sensitive parameters replaced ***"]},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":260,"function":"doAppUpgrade","class":"OC\\Updater","type":"->"},{"file":"/config/www/nextcloud/lib/private/Updater.php","line":132,"function":"doUpgrade","class":"OC\\Updater","type":"->"},{"file":"/config/www/nextcloud/core/ajax/update.php","line":214,"function":"upgrade","class":"OC\\Updater","type":"->"}],"File":"/config/www/nextcloud/3rdparty/doctrine/dbal/src/Driver/PDO/Statement.php","Line":82}}},"CustomMessage":"--"},"userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":3,"time":"2021-12-21T18:54:30+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"\\OC\\Updater::failure: OC\\DB\\Exceptions\\DbalException: An exception occurred while executing a query: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'created' in 'where clause'","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":3,"time":"2021-12-21T18:54:30+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"\\OC\\Updater::updateEnd: Update failed","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":1,"time":"2021-12-21T18:54:30+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"\\OC\\Updater::maintenanceActive: Maintenance mode is kept active","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} {"reqId":"XgxakEjBkJswEFhwILGL","level":1,"time":"2021-12-21T18:54:30+00:00","remoteAddr":"192.168.1.241","user":"--","app":"updater","method":"GET","url":"/core/ajax/update.php?requesttoken=9Q6jQG%2Bb3Rqgphrvwyh%2FDO5XkohfJ%2BJaHT%2BTU0vmfl4%3D%3Ah3vgITrZqWrK%2FEjXh1wnfd0t2t0RZqk1cFXxCwK%2FOQY%3D","message":"\\OC\\Updater::resetLogLevel: Reset log level to Warning(2)","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0","version":"21.0.0.18"} Does anyone had the same error ? -------------------------------------- used: SET GLOBAL innodb_read_only_compressed=OFF; -------------------------------------- Merry Christmas
  11. Hey community, since August I have the error, bc the switch to alpine. ( on linuxserver /mariadb ) now I switched to the newest mariadb from library ( for the best protection ) with Adminer I uploaded my backup.sql ( picture ) The nextcloud shows me still internal error. I can't find the logs ( in the config.php I change the setting logfile to (config/log/nextcloud.log and gave him with chmod 777 and sudo -u abc permission ) still there is nothing in the file. I change the config.php on the parameter what I used on the mariadb docker ( dbname, dbuser, dbpasswort ) what did I wrong ? Versions: unraid: 6.9.3 Nextcloud: By: linuxserver/nextcloud MariaDB: By: library/mariadb
  12. yes where can I add this post argument ? the last step right ? better is to have the newest version, for the full protection. Edit: thank you, mate
  13. Tried it, but on Adminer I got the error if I upload my backup.sql.
  14. Hey community, i add in nextcloud config.php trusted domains -> mywebsite.de in the pictures you see my swag default config with the error of letsencrypt. i don't understand why the port doesn't work. (the blanc one is my website) what do i wrong ? i just wanna use swag (not reverse proxy) nxc: 192.168.1.2:9443 swag: 192.168.1.2:4443 ( is closed ) Solution: check my domain that he knows my ip
  15. thank you, i stopped the array, did a new configuration (via tools). if i use lsblk, my storage isn't still mounted.
  16. Hey lovely community, i installed 'Unassigned Devices' but my storage doesn't mount automatically. i tried it with fstab, but fstab delete after every reboot. and under assigned devices isn't found there so what is the best way ?
  17. Hey lovely community, i installed 'Unassigned Devices' but my storage doesn't mount automatically. i tried it with fstab, but fstab delete after every reboot. and under assigned devices isn't found there so what is the best way ?