Question By
Unsolved

NotfoundException when trying to finish install

brandonde

Oct 6th, 2017 10:24 AM

<p>Hello,</p> <p>I am running through the installation of GeekShop and I am recieving this error when I click finish</p> <p>![https://imgur.com/7wmNEQ1]</p> <p>For context here is my folder structure </p> <p>![https://imgur.com/rdAK6lu]</p> <p> Any thoughts?</p>
brandonde

Oct 6th, 2017 12:11 PM

thank you! that worked I am now getting new errors for the database not being found

https://i.imgur.com/2tar9T0.jpg

any thoughts?

mark

Oct 6th, 2017 12:47 PM

Run php artisan migrate --force --seed from the terminal.

Else setup a route to execute the command from code:

Artisan::call('migrate', ['--force' => true, '--seed' => true]);
brandonde

Oct 6th, 2017 01:04 PM

I am close, I get denied when trying to run this in my laravel folder:

[PDOException]
SQLSTATE[28000] [1045] Access denied for user 'homestead'@'localhost' (using password: YES)

I am using hostgator shared hosting if that makes any more sense

mark

Oct 6th, 2017 01:06 PM

Please edit you application/.env file to have the correct database credentials. If it's already different from what the error says, then please share the route you added.

brandonde

Oct 6th, 2017 01:13 PM

<p>i have two .env one in home1/brandond/laravel and the other in home1/brandond/public_html/application</p> <p>it looks like it is trying to use the laravel .env file because the username and pass match the error</p> <p>i wonder if I set laravel up wrong</p>
mark

Oct 6th, 2017 01:15 PM

You don't need to setup Laravel yourself, it comes along with Geekshop. So I bet you can delete (or for testing, rename) the "laravel" folder and just edit the application/.env file.

brandonde

Oct 6th, 2017 03:54 PM

thank you everyone! I renamed that laravel folder then did a new install of geek shop and it worked!!