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
DB_PASSWORD Environment Variable Not Loading in Early Bootstrap
Description
When using Lumen 10.x with phpdotenv 5.x, there's an issue where the DB_PASSWORD environment variable is not properly loaded during early application bootstrap, while other DB_* variables (DB_HOST, DB_PORT, etc.) load correctly. This affects database connectivity as the password is empty when Eloquent tries to establish a connection.
Try to connect to the database
Current Behavior
All DB_* environment variables are loaded correctly EXCEPT for DB_PASSWORD
env('DB_PASSWORD') returns an empty string
Database connection fails with "Access denied for user 'root'@'localhost' (using password: NO)"
Expected Behavior
DB_PASSWORD should be loaded along with other DB_* variables
Database connection should work with the provided password
Workaround
Currently using this workaround in bootstrap/app.php:
Additional Context
This only affects the DB_PASSWORD variable; all other environment variables (including other DB_* variables) load correctly
The issue appears to be related to the timing of environment variable loading versus database initialization
The problem doesn't occur in full Laravel framework, only in Lumen
The text was updated successfully, but these errors were encountered:
Unfortunately we don't support this version of the library anymore. Please check out our support policy on which versions we are currently supporting. Can you please try to upgrade to the latest version and see if your problem persists? If so, please open up a new issue and we'll help you out.
Lumen Version
10.0.4
PHP Version
8.1.0
Database Driver & Version
No response
Description
DB_PASSWORD Environment Variable Not Loading in Early Bootstrap
Description
When using Lumen 10.x with phpdotenv 5.x, there's an issue where the
DB_PASSWORD
environment variable is not properly loaded during early application bootstrap, while other DB_* variables (DB_HOST, DB_PORT, etc.) load correctly. This affects database connectivity as the password is empty when Eloquent tries to establish a connection.Environment
Steps To Reproduce
Try to connect to the database
Current Behavior
All DB_* environment variables are loaded correctly EXCEPT for DB_PASSWORD
env('DB_PASSWORD') returns an empty string
Database connection fails with "Access denied for user 'root'@'localhost' (using password: NO)"
Expected Behavior
DB_PASSWORD should be loaded along with other DB_* variables
Database connection should work with the provided password
Workaround
Currently using this workaround in bootstrap/app.php:
Additional Context
This only affects the DB_PASSWORD variable; all other environment variables (including other DB_* variables) load correctly
The issue appears to be related to the timing of environment variable loading versus database initialization
The problem doesn't occur in full Laravel framework, only in Lumen
The text was updated successfully, but these errors were encountered: