You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Utilisateur de la base de données PGSQL. */
define('DB_USER', 'myusername');
`
And here the issue is that when connecting to the PostgreSQL database, it wanted to connect on a database called myusername using the user myusername, instead of trying to connect to the database called mydatabasename with the user myusername.
So to get things working, I had to rename my database from mydatabasename to myusername.
The text was updated successfully, but these errors were encountered:
Mentioned in: #73
define('DB_NAME', 'mydatabasename');
/** Utilisateur de la base de données PGSQL. */
define('DB_USER', 'myusername');
`
And here the issue is that when connecting to the PostgreSQL database, it wanted to connect on a database called myusername using the user myusername, instead of trying to connect to the database called mydatabasename with the user myusername.
So to get things working, I had to rename my database from mydatabasename to myusername.
The text was updated successfully, but these errors were encountered: