Question By
Unsolved

installing pixel 2

y7ia007

Jul 7th, 2021 01:16 PM

Need help installing pixel 2

bobbyiliev

Jul 16th, 2021 12:04 AM

Hi there,

What you need to do is:

  • Download the installation files
  • Upload them to your cPanel
  • Extract the zip file
  • Then via your terminal SSH to your server, then cd to the directory where you've uploaded the files and run:
composer install
  • Then via cPanel create a new database + db username + db password and note them down
  • Then via your File manager copy the .env.example to .env and update the DB details accordingly:
APP_URL=http://website.com
DB_DATABASE=database_name
DB_USERNAME=database_user
DB_PASSWORD=database_pass
  • Finally again via SSH run these 3 commands inside the directory where you've extracted the files at:
php artisan migrate
php artisan db:seed
php artisan storage:link

If you wish provide me with the login details to your cPanel account via DM and I will do it for you.