Ceci est une ancienne révision du document !
Transférer les fichiers d’install par FTP, puis les mettre dans /var/www/html/nextcloud
Affecter à www-data :
chown -R www-data:www-data /var/www/html/nextcloud/
Installer le module PHP cURL :
agi curl php-curl
Relancer apache :
service apache2 restart
Se rendre sur l’index de Nextcloud et c’est parti pour l’installation !
Error while trying to create admin user: Failed to connect to the database: An exception occurred in driver: SQLSTATE[HY000] [1044] Access denied for user ‘oc_TONUSER’@’localhost’ to database ‘TABDD’
Il faut que l’utilisateur créé pour la base de données MySQL aie tous les droits (même GRANT) comme indiqué ici :
https://help.nextcloud.com/t/error-creating-admin-user/23943 et donc ici : https://askubuntu.com/questions/763336/cannot-enter-phpmyadmin-as-root-mysql-5-7
Error PHP You are using a fallback implementation of the intl extension. Installing the native one is highly recommended instead. at /3rdparty/patchwork/utf8/src/Patchwork/Utf8/Bootup/intl.php#18
agi php-intl service apache2 restart
Enfin en cas d’erreur « Accès depuis un domaine non fiable », se rendre sur le serveur et ajouter le DNS :
nano /var/www/nextcloud/config/config.php
AVANT : 'trusted_domains' => array ( 0 => '192.168.0.29', ), APRES : 'trusted_domains' => array ( 0 => '192.168.0.29', 1 => 'cloud.example.com', ),