Nextcloud version (eg, 20.0.5): 21.0.1
Operating system and version (eg, Ubuntu 20.04): Debian 10
Apache or nginx version (eg, Apache 2.4.25): nginx/1.14.2
PHP version (eg, 7.4): 7.3.27
The issue you are facing: Creating a new user automatically creates an Templates
folder. I do not wish for this to happen and have even set the templatedirectory
to NULL in config.php
, but to no avail. Any help would be appreciated!
Is this the first time you’ve seen this error? (Y/N): Y
The output of your Nextcloud log in Admin > Logging:
not relevant
The output of your config.php file in /path/to/nextcloud
(make sure you remove any identifiable information!):
$CONFIG = array (
'htaccess.RewriteBase' => '/',
'instanceid' => '***',
'passwordsalt' => '***',
'secret' => '***',
'trusted_domains' =>
array (
0 => '***',
1 => '***',
),
'default_phone_region' => 'DE',
'datadirectory' => '/srv/www/data',
'dbtype' => 'mysql',
'version' => '21.0.1.1',
'overwrite.cli.url' => 'https://***',
'dbname' => '***',
'dbhost' => '***',
'dbport' => '',
'dbtableprefix' => 'oc_',
'mysql.utf8mb4' => true,
'dbuser' => '***',
'dbpassword' => '***',
'installed' => true,
'maintenance' => false,
'theme' => '',
'loglevel' => 2,
'app_install_overwrite' =>
array (
0 => 'onlyoffice',
1 => 'whiteboard',
2 => 'apporder',
),
'memcache.local' => '\\OC\\Memcache\\APCu',
'filelocking.enabled' => true,
'memcache.locking' => '\\OC\\Memcache\\Redis',
'redis' =>
array (
'host' => 'localhost',
'port' => 6379,
'timeout' => 0.0,
'password' => '',
),
'skeletondirectory' => '/srv/www/skeleton',
'templatedirectory' => NULL,
'default_language' => 'de_DE',
'default_locale' => 'de_DE',
);