When I try to open the files section the files doesn’t load at all. The edit bar is also not shown. The following errors are thrown in the javascript console:
Uncaught ReferenceError: OC is not defined
Uncaught ReferenceError: OCA is not defined
Content Security Policy: The page’s settings blocked the loading of a resource at inline (“script-src”).
Uncaught TypeError: can't access property "FileInfo", OC.Files is undefined
Uncaught TypeError: can't access property "FileInfo", OC.Files is undefined
Uncaught TypeError: can't access property "Client", OC.Files is undefined
TypeError: can't access property "prototype", OCA.Files.FileList is undefined
Uncaught TypeError: can't access property "prototype", OCA.Files.FileList is undefined
Uncaught TypeError: OCA.Files.Navigation is not a constructor
Uncaught (in promise) TypeError: can't access property "Client", OC.Files is undefined
These errors are partically repeating multiple times. Also the errors just appeared without changes of mine at the application, it’s configs or source code. The Nextcloud instance was installed using the Nextcloud Plesk addon.
Because I haven’t changed any relevant settings or modified the source code I cannot provide steps to reproduce the error.
Details
Nextcloud version 18.0.6:
Operating system and version Linux OS; Webserver using Plesk:
Apache or nginx version nginx newest version:
PHP version 7.4.7:
Nextcloud log
[files_antivirus] Fatal: OCA\Files_Antivirus\BackgroundJob\BackgroundScanner::run, exception: The antivirus executable could not be found at /usr/bin/clamscan
[mail] Warning: not enough messages to train a classifier
config.php
<?php
$CONFIG = array (
'passwordsalt' => '####',
'secret' => '####',
'trusted_domains' =>
array (
0 => '####',
1 => '####',
),
'datadirectory' => '#####',
'dbtype' => 'mysql',
'version' => '18.0.6.0',
'overwrite.cli.url' => '####',
'dbname' => '####',
'dbhost' => '####',
'dbport' => '####',
'dbtableprefix' => '####',
'mysql.utf8mb4' => true,
'dbuser' => '####',
'dbpassword' => '####',
'installed' => true,
'instanceid' => 'oc9q5###wpf',
'theme' => '',
'loglevel' => 1,
'maintenance' => false,
'mail_from_address' => 'no-reply',
'mail_smtpmode' => 'smtp',
'mail_sendmailmode' => 'smtp',
'mail_domain' => '#######',
'mail_smtpsecure' => 'ssl',
'mail_smtpauthtype' => 'LOGIN',
'mail_smtpauth' => 1,
'mail_smtphost' => '######',
'mail_smtpport' => '###',
'htaccess.RewriteBase' => '/',
'simpleSignUpLink.shown' => false,
'updater.release.channel' => 'stable',
);
No errors in nginx logs.