I encountered an error yesterday which stopped the availible application being displayed on both my Nextcloud 13 and 14 installations.
It turns out to be a bug which can be fixed by inserting the following line into the installdir/config/config.php file.
1 |
'appstoreurl' => 'https://apps.nextcloud.com/api/v0', |
The entire file should look something like this.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
<?php $CONFIG = array ( 'passwordsalt' => 'loylkinwfoweniobnfnweFZg0C', 'secret' => 'oYTKoiuwhfnwenfoiwenflknfwekjIY9N8r', 'trusted_domains' => array ( 0 => 'localhost', 1 => '10.1.1.148', ), 'datadirectory' => '/var/www/html/nextcloud/data', 'dbtype' => 'mysql', 'version' => '14.0.4.2', 'overwrite.cli.url' => 'http://localhost', 'dbname' => 'nextcloud', 'dbhost' => 'localhost', 'dbport' => '', 'dbtableprefix' => 'oc_', 'dbuser' => 'user', 'dbpassword' => 'password', 'installed' => true, 'instanceid' => 'ihnfeoownfeoih', 'appstoreurl' => 'https://apps.nextcloud.com/api/v0', ); |