laravel QueryException line 770 - php

I have a problem when I want to register in laravel. After completing the registration form I see this error message:
QueryException in Connection.php line 770:
SQLSTATE[HY000] [1045] Access denied for user 'homestead'#'localhost' (using password: YES) (SQL: select count(*) as aggregate from users where email =
thank you for helping me.

Create DB and add information in /.env file
DB_HOST=localhost
DB_DATABASE=YOUR_DB_NAME
DB_USERNAME=YOUR_DB_USER_NAME
DB_PASSWORD=YOUR_DB_USER_PASSWORD

Related

How can I fix this error ( Laravel 5.7 )?

When I try to login ?
Illuminate \ Database \ QueryException (1045) SQLSTATE[HY000] [1045]
Access denied for user 'homestead'#'localhost' (using password: YES)
(SQL: select * from users where email = andro.nady2015#gmail.com
limit 1)
Please try this:-
DB_HOST=127.0.0.1
in place of this:-
DB_HOST=localhost
thanks everyone , I solved this problem by download new version of Xampp

php artisan key:generate does not generate key [duplicate]

This question already has answers here:
Access denied for user 'homestead'#'localhost' (using password: YES)
(32 answers)
Closed 4 years ago.
When I try to run " php artisan key:generate " I get the following error in promptScreenshot of the error
Actually I am running a laravel project on different laptop. I am having this issue while generating a key. How can I solve it?
Error In Connection.php line 647: SQLSTATE[HY000] [1045] Access denied for user 'homestead'#'localhost' (using password: YES) (SQL: select * from information_schema.tables where table_schema = homestead and table_name = permissions) In PDOConnection.php line 47: SQLSTATE[HY000] [1045] Access denied for user 'homestead'#'localhost' (using password: YES) In PDOConnection.php line 43: SQLSTATE[HY000] [1045] Access denied for user 'homestead'#'localhost' (using password: YES)
Just put Your system's database configuration in .env file. Like Database name user and password.

Laravel/Doctrine randomly tries to connect to production database

I'm randomly getting server errors because Laravel is trying to connect to the production database, despite the fact that I have a .env file set up and a majority of the time it connects to the correct database.
Here is the error I am receiving:
[2018-02-17 08:05:54] production.ERROR: SQLSTATE[HY000] [1045] Access denied for user 'forge'#'localhost' (using password: NO) (SQL: select * from information_schema.tables where table_schema = forge and table_name = settings) {"exception":"[object]
(Illuminate\\Database\\QueryException(code: 1045): SQLSTATE[HY000]
[1045] Access denied for user 'forge'#'localhost' (using password: NO)
(SQL: select * from information_schema.tables where table_schema = forge and table_name = settings) at C:\\wamp64\\www\\projects\\infusedx\\vendor\\laravel\\framework\\src\\Illuminate\\Database\\Connection.php:664,
Doctrine\\DBAL\\Driver\\PDOException(code: 1045): SQLSTATE[HY000]
[1045] Access denied for user 'forge'#'localhost' (using password: NO)
at
C:\\wamp64\\www\\projects\\infusedx\\vendor\\doctrine\\dbal\\lib\\Doctrine\\DBAL\\Driver\\PDOConnection.php:47,
PDOException(code: 1045): SQLSTATE[HY000] [1045] Access denied for
user 'forge'#'localhost' (using password: NO) at
C:\\wamp64\\www\\projects\\infusedx\\vendor\\doctrine\\dbal\\lib\\Doctrine\\DBAL\\Driver\\PDOConnection.php:43)
Why would doctrine be trying to connect to the wrong database? Is it being insantiated before dotenv sometimes?
First
You can try clear or re-cache your configurations
php artisan config:clear or php artisan config:cache
before running your migration commands
Secondly
I had this issue on heroku. When trying to run migration commands from heroku's ssh heroku ps:exec environment. i was doing:
heroku ps:exec
and
php artisan migrate
but the env variables set in the heroku app isn't available to laravel (env('DB_DATABASE'), etc).
To fix this, i had to run the migrations from the bash
heroku run bash
then
php artisan migrate

Access denied for user 'root'#'localhost' (using password: NO) error in Mysql

I have worked on the mysql database until yesterday, but today when I am trying to access mysql it gave following error.
ERROR 1045 (28000): Access denied for user 'root'#'localhost' (using password: Yes)
I want to get my existing databases since I have not got a backup.
Further, I have followed the step on following lnks and still haven't found the solution to my problem.
Resetting Permissions (MySQL)
ERROR 1045 (28000): (StackOverflow)

SQLITE asking for password in laravel migration

I made SQLite as my default database in Laravel, why is it that PHP artisan migrate is still asking for credentials?
SQLSTATE[HY000] [1045] Access denied for user 'homestead'#'localhost'
(using password: YES)

Categories