Hi everyone,
Iâm curently running nextcloud on my truenas server and it has been running just fine for the past few months.
Recently the webpage became locked with this text on the screen : âplease use the command line to update because updating via web browser is disabledâ.
After running a few commands i could find online (occ maintenance:repair / occ maintenance:mode --off, occ app:update --all) and looking at the config.php, i couldnât find any obvious reason to why my server is bricked.
My config.php looks like that :
"
Citation
'<?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,
),
),
âmemcache.distributedâ => â\OC\Memcache\Redisâ,
âmemcache.lockingâ => â\OC\Memcache\Redisâ,
âredisâ =>
array (
âhostâ => ânextcloud-redisâ,
âpasswordâ => âxxxxxxxxxxxxxxxxâ,
âportâ => 6379,
),
âupgrade.disable-webâ => false,
âpasswordsaltâ => âxxxxxxxxxxxxâ,
âsecretâ => âxxxxxxxxxxxâ,
âtrusted_domainsâ =>
array (
0 => âxxxxxxxxxâ,
1 => â172.17.128.192â,
2 => â192.168.69.76â,
),
âoverwrite.cli.urlâ => âxxxxxxxxxâ,
âoverwriteprotocolâ => âhttpsâ,
âdatadirectoryâ => â/var/www/html/dataâ,
âdbtypeâ => âpgsqlâ,
âversionâ => â30.0.0.14â,
âdbnameâ => ânextcloudâ,
âdbhostâ => ânextcloud-postgres:5432â,
âdbportâ => ââ,
âdbtableprefixâ => âoc_â,
âdbuserâ => âoc_adminâ,
âdbpasswordâ => âxxxxxxxxxâ,
âinstalledâ => true,
âinstanceidâ => âxxxxxxxâ,
âmemories.exiftoolâ => â/var/www/html/custom_apps/memories/bin-ext/exiftool-amd64-glibcâ,
âmemories.vod.pathâ => â/var/www/html/custom_apps/memories/bin-ext/go-vod-amd64â,
âloglevelâ => 2,
âmaintenanceâ => false,
âmemories.gis_typeâ => 2,
âmaintenance_window_startâ => 1,
âdefault_phone_regionâ => 250,
âdefault_timezoneâ => âEurope/Parisâ,
âtrashbin_retention_obligationâ => âauto, 30â,
âmemories.index.modeâ => â3â,
âmemories.index.pathâ => â/photosâ,
âenabledPreviewProvidersâ =>
array (
0 => âOC\Preview\Imageâ,
1 => âOC\Preview\Movieâ,
),
âmemories.vod.ffmpegâ => â/usr/bin/ffmpegâ,
âmemories.vod.ffprobeâ => â/usr/bin/ffprobeâ,
âapp_install_overwriteâ =>
array (
0 => âcamerarawpreviewsâ,
1 => âepubviewerâ,
),
âldapProviderFactoryâ => âOCA\User_LDAP\LDAPProviderFactoryâ,
);
Iâm in way over my head and could use a little help.
