I've implemented laracasts/cypress into our application and I've also used php artisan schema:dump --prune
to clear our migrations. When I use the Cypress command cy.refreshDatabase()
the endpoint returns the following error.
I suspect it has to do with this line of code not having the full path of the mysql binary: https://github.com/laravel/framework/blob/8.x/src/Illuminate/D...
It works when I replace the mysql-command with the full path command. Is there any way to set the full path or is this a bug?
[2021-06-03 14:48:07] local.ERROR: The command "mysql --user="${:LARAVEL_LOAD_USER}" --password="${:LARAVEL_LOAD_PASSWORD}" --host="${:LARAVEL_LOAD_HOST}" --port="${:LARAVEL_LOAD_PORT}" --database="${:LARAVEL_LOAD_DATABASE}" < "${:LARAVEL_LOAD_PATH}"" failed.
Exit Code: 127(Command not found)
Working directory: /Users/nick/Code/pixeo-flowlab/public
Output:
================
Error Output:
================
sh: mysql: command not found
{"exception":"[object] (Symfony\\Component\\Process\\Exception\\ProcessFailedException(code: 0): The command \"mysql --user=\"${:LARAVEL_LOAD_USER}\" --password=\"${:LARAVEL_LOAD_PASSWORD}\" --host=\"${:LARAVEL_LOAD_HOST}\" --port=\"${:LARAVEL_LOAD_PORT}\" --database=\"${:LARAVEL_LOAD_DATABASE}\" < \"${:LARAVEL_LOAD_PATH}\"\" failed.
Exit Code: 127(Command not found)
Working directory: /Users/nick/Code/pixeo-flowlab/public
Output:
================
Error Output:
================
sh: mysql: command not found
at /Users/nick/Code/pixeo-flowlab/vendor/symfony/process/Process.php:267)
[stacktrace]
#0 /Users/nick/Code/pixeo-flowlab/vendor/laravel/framework/src/Illuminate/Database/Schema/MySqlSchemaState.php(77): Symfony\\Component\\Process\\Process->mustRun(NULL, Array)
#1 /Users/nick/Code/pixeo-flowlab/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(145): Illuminate\\Database\\Schema\\MySqlSchemaState->load('/Users/nick/Cod...')
#2 /Users/nick/Code/pixeo-flowlab/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(113): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->loadSchemaState()
#3 /Users/nick/Code/pixeo-flowlab/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php(77): Illuminate\\Database\\Console\\Migrations\\MigrateCommand->prepareDatabase()
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community