04-03-2022

This commit is contained in:
2022-03-04 17:56:50 +01:00
parent e6fc2251ec
commit 5b45dc0863
70 changed files with 3189 additions and 673 deletions

View File

@@ -0,0 +1,28 @@
# Piwigo
https://fr.piwigo.org
```mysql title="Créer la base MySQL"
MariaDB [(none)]> CREATE DATABASE piwigo_db;
MariaDB [(none)]> CREATE USER 'piwigo_db_user'@'localhost' IDENTIFIED BY 'the-password123!';
MariaDB [(none)]> GRANT ALL ON piwigo_db.* TO 'piwigo_db_user'@'localhost';
MariaDB [(none)]> FLUSH PRIVILEGES;
```
```bash title="Erreur lors de la mise-à-jour des thèmes et plugins"
sudo chown -R http:http plugins/
sudo chown -R http:http themes/
```
[Aide à la création d'un thème](https://fr.piwigo.org/doc/doku.php?id=projet:developpement:themes)
[How to make a child theme](https://piwigo.org/forum/viewtopic.php?pid=131778)
[Modus: how to clone ?](https://piwigo.org/forum/viewtopic.php?pid=173570#p173570)