A
Asked
Copied the downloaded files to htdocs/pos
npm i and composer install is done
after I hit localhost/pos/install it redirects me to http://localhost/dashboard/
however; when I hit http://localhost/pos/public/install it gives me this error
https://pasteboard.co/WQGo0PJrZx5p.png
https://pasteboard.co/ftbDKq1sMDwU.png
npm i and composer install is done
after I hit localhost/pos/install it redirects me to http://localhost/dashboard/
however; when I hit http://localhost/pos/public/install it gives me this error
https://pasteboard.co/WQGo0PJrZx5p.png
https://pasteboard.co/ftbDKq1sMDwU.png
- AAnsweredwhen I go to http://localhost/pos/public/install/checklist it says
{
success: false,
message: "Please check the following server requirement",
errors: [
"Imagick PHP extension needs to be loaded!"
]
}
https://pasteboard.co/ffOt0bqWJfuO.pn
however I already have image magick
https://pasteboard.co/fCejqNuq26Nm.png - AAnsweredhttps://pasteboard.co/27Upl8gbQ4c6.png
still the same error - MSAnsweredHello,
You need to add virtual host for local installation and set the correct `public` root path. Please don't use public folder to access your site.
You can google how to add virtual host for your web platform. Laragon is known to be good for Laravel.
Thank you - AAnsweredphp artisan serve
and I get stuck in this error
https://pasteboard.co/Ts2J3PhGyvOe.png - MSAnsweredHello,
I can see the connection reset error. Please make sure that you are connected and try again.
I will check the installer; it should show the error, but I can't see any on your screenshot.
Thank you - AAnsweredPDO::__construct("mysql:host=127.0.0.1;port=3306;dbname=pos", "pos", "pass123", [])
while migrating
php artisan migrate:refresh --force --seed
it is using pass123 by default even though i have set another password in .env file.
How do I change it
https://pasteboard.co/Wxm0Z3pu1yQv.png - MSAnsweredHello,
Please double check the username and purchase code for no database error.
artisan command uses the password from env file. Please make sure that you don't have any other env file and that you have cleared the config `php artisan config:clear`
Thank you - Login to Reply