I have used Nextcloud for several months without problems, but still used version 9. So today, I upgraded using the web updater, going through version 10 to 11.0.1. The upgrade ran without any problems, but after reloading the Nextcloud instance I keep getting an internal server error:
Internal Server Error
The server encountered an internal error and was unable to complete your request.
Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report.
More details can be found in the server log.
Technical details
Remote Address: 12.34.56.78 Request ID: wRzu2BQ0q3kA/LxPB5pN
Nextcloud version: 11.0.1
Operating system and version: Debian stable
Apache or nginx version: lighttpd
PHP version : 5.6
My config file:
$CONFIG = array ( 'instanceid' => 'oc8d856504ae', 'passwordsalt' => 'MYSALT', 'secret' => 'SECRET', 'trusted_domains' => array ( 0 => 'my.domain.com', ), 'datadirectory' => '/var/lib/owncloud/data', 'overwrite.cli.url' => 'https://my.domain.com', 'dbtype' => 'mysql', 'version' => '11.0.1.2', 'appstoreenabled' => true, 'dbname' => 'owncloud', 'dbhost' => 'localhost', 'dbtableprefix' => 'oc_', 'dbuser' => 'owncloud', 'dbpassword' => 'PASSWORD', 'installed' => true, 'memcache.local' => '\\OC\\Memcache\\APCu', 'forcessl' => true, 'maintenance' => false, 'loglevel' => 2, 'theme' => '', 'trashbin_retention_obligation' => 'auto', 'updatechecker' => false, 'appcodechecker' => false, 'appstoreurl' => 'https://api.owncloud.com/v1', 'apps_paths' => array ( 0 => array ( 'path' => '/var/www/nextcloud/apps', 'url' => '/apps', 'writable' => true, ), ), 'mail_from_address' => 'cloud', 'mail_smtpmode' => 'php', 'mail_domain' => 'domain.com', 'htaccess.RewriteBase' => '/', 'updater.secret' => 'SECRET', 'updater.server.url' => 'https://updates.nextcloud.com/updater_server/', 'updater.release.channel' => 'beta', );
Lighttpd does not show any errors, so I am pretty much at a loss. Any ideas what’s going wrong here?? Any help would be hightly appreciated.