Код: Выделить всё
require __DIR__ . '/../vendor/autoload.php';
$app = require_once __DIR__ . '/../bootstrap/app.php';
$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);
file_put_contents('.env', $envContent);
ob_start();
$kernel->call('migrate', ['--force' => true]);
$kernel->call('db:seed');
Но после запуска миграции я получаю сообщение об ошибке
р>
Код: Выделить всё
SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: YES) (SQL: select * from information_schema.tables where table_schema = spnv_store and table_name = migrations and table_type = 'BASE TABLE')Кто-нибудь может помочь?
Подробнее здесь: https://stackoverflow.com/questions/786 ... or-project
Мобильная версия