Laravel, проблема с подключением к БД

171
25 ноября 2018, 11:10

При попытке миграции получаю такие ошибки:

In Connection.php line 664:
SQLSTATE[HY000] [1045] Access denied for user 'kurusa_main'@'localhost' (using password: YES) (SQL: select * from information_schema.tables where table_schema = kurusa_test and table_name = migrations)

In Connector.php line 67: SQLSTATE[HY000] [1045] Access denied for user 'kurusa_main'@'localhost' (using password: YES)

Я уверена на 100%, что данные для подключения к БД верны. Пробовала выполнить у себя на сервере new PDO('mysql:host=127.0.0.1;dbname=kurusa_test', "kurusa_main", "password"); - успешно.

Не пойму что не так. B Connection.php line 664:

       throw new QueryException(
            $query, $this->prepareBindings($bindings), $e
        );

Контекст кода таков:

protected function runQueryCallback($query, $bindings, Closure $callback)
{
    // To execute the statement, we'll simply call the callback, which will actually
    // run the SQL against the PDO connection. Then we can calculate the time it
    // took to execute and log the query SQL, bindings and time in our memory.
    try {
        $result = $callback($query, $bindings);
    }
    // If an exception occurs when attempting to run a query, we'll format the error
    // message to include the bindings with SQL, which will make this exception a
    // lot more helpful to the developer instead of just the database's errors.
    catch (Exception $e) {
        throw new QueryException(
            $query, $this->prepareBindings($bindings), $e
        );
    }
    return $result;
}

В Connector.php line 67:

return new PDO($dsn, $username, $password, $options);

Вместо этого пробовала написать свой вариант:

return new PDO('mysql:host=127.0.0.1;dbname=kurusa_test', "kurusa_main", "password");

Так же безуспешно.

READ ALSO
В чем проблема с кодировкой title?

В чем проблема с кодировкой title?

На двух страницах начало html одинаковое:

154
Фигня с isotope фильтром

Фигня с isotope фильтром

У меня стоят в ряд блоки(display flex)У них стоит параметр flex: 1 0 auto; Что бы все тянулись на высоту самого высокого блока в ряду

178
Проблема с размер страницы

Проблема с размер страницы

моя проблема заключается в слудующем:при добавлении блока, изменяется высота страницыКак вернуть нормальною высоту страницы? И как удлать...

143