Bonjour, j'essaie de lancer un site Web mais après, cette erreur est apparue
connect to PostgreSQL server: FATAL: no pg_hba.conf entry for host "4X.XXX.XX.XXX", user "userXXX", database "dbXXX", SSL off in C:\xampp\htdocs\xmastool\index.php on line 37après avoir googlé , il indique que je dois juste ajouter une entrée dans le fichier pg_hba.conf pour cet utilisateur particulier. c'est mon fichier pg_hba.conf.
# TYPE  DATABASE        USER            ADDRESS                 METHOD
# IPv4 local connections:
local dbXXX userXXX md5
host    dbXXX  userXXX  XX.XXX.XXX.XXX           md5
host    all             all             127.0.0.1/32            md5
# IPv6 local connections:
host    all             all             ::1/128                 md5
# Allow replication connections from localhost, by a user with the
# replication privilege.
#host    replication     postgres        127.0.0.1/32            md5
#host    replication     postgres        ::1/128                 md5mais après cela, l'erreur persiste. J'ai redémarré mon serveur XAMPP plusieurs fois mais aucune modification ne s'affiche. Merci d'avance

SELECT pg_reload_conf().