When I click on the enable button I get the error.
“Signature could not get checked. Please contact the app developer and check your admin screen.”
So did a load of searching and found
https://owncloud.org/blog/good-bye-apps-owncloud-com/
and put
‘appstoreurl‘ => ‘https://marketplace.owncloud.com/api/v0‘,
in config.php as sugested
Now the productivity and Multimedia sections of the appa are empty(*.
Ben
Server configuration
Operating system: Unbuntu 16.04
Web server: Apache/2.4.18 (Ubuntu)
Database: mariadb 10.0.31-MariaDB-0ubuntu0.16.04.2 Ubuntu 16.04
PHP version: 7.0.22
ownCloud version: 9.1.6
Updated from an older ownCloud or fresh install: fresh
Where did you install ownCloud from:
deb download.owncloud.com /
config.php
<?php $CONFIG = array ( 'updatechecker' => false, 'instanceid' => 'octs9shjkf4o', 'passwordsalt' => 'b4ZA/FCoSNnP+oWBSqqeyQ0UKMkqST', 'secret' => '0MLjeiZnV5dv8Ow26o6YGF+/4DnRJg02GFcZjL92FQbvY81v', 'trusted_domains' => array ( 0 => '192.168.1.55', 1 => 'prsc-cloud.org', ), 'datadirectory' => '/var/www/owncloud/data', 'overwrite.cli.url' => 'https://192.168.1.55/owncloud', 'dbtype' => 'mysql', 'version' => '9.1.6.2', 'logtimezone' => 'UTC', 'installed' => true, 'memcache.local' => '\\OC\\Memcache\\Redis', 'redis' => array ( 'host' => 'localhost', 'port' => 6379, ), 'memcache.locking' => '\\OC\\Memcache\\Redis', 'maintenance' => false, 'dbname' => 'owncloud', 'dbhost' => 'localhost', 'dbuser' => 'owncloud', 'dbpassword' => '**__**', 'loglevel' => 3, 'mail_from_address' => 'bene', 'mail_smtpmode' => 'php', 'mail_domain' => 'funkytwig.com', 'htaccess.RewriteBase' => '/owncloud', 'has_internet_connection' => true, 'theme' => '', ); ```