fix installation error Chocolatey (php artisan migrate)
Good evening, I'm installing Chocolatey Cms, and I'm following this guide: https://github.com/ovflowd/chocolate...w-TutorialWhen I start php artisan migrate it gives me this error; https://gyazo.com/927d8f439beb6246b474d37533005964. How do I solve?
Re: fix installation error Chocolatey (php artisan migrate)
make sure you configure the database settings properly
Re: fix installation error Chocolatey (php artisan migrate)
what file do I need to configure? @Konquer
Re: fix installation error Chocolatey (php artisan migrate)
Quote:
Originally Posted by
Shokkato
what file do I need to configure? @
Konquer
no idea never used chocolatey, but from your error it looks like you haven't got a mysql user called arcturus or have the wrong password for it
edit:
as it's lumen/laravel i bet you'll find the db settings in a .env file in the root directory of the cms
Re: fix installation error Chocolatey (php artisan migrate)
Quote:
Originally Posted by
Shokkato
what file do I need to configure? @
Konquer
MySQL account
Re: fix installation error Chocolatey (php artisan migrate)
You will need to check your .ENV file.
Make sure your MySQL details are correct.
Your sure that the Mysql user is not root. Did you make a new user?
If you did, the user has to have access to the database and the right permissions.
https://image.prntscr.com/image/3dEB...AskXzBGVog.png
Re: fix installation error Chocolatey (php artisan migrate)
Quote:
Originally Posted by
TheOman
You will need to check your .ENV file.
Make sure your MySQL details are correct.
Your sure that the Mysql user is not root. Did you make a new user?
If you did, the user has to have access to the database and the right permissions.
https://image.prntscr.com/image/3dEB...AskXzBGVog.png
solved, thank you very much!