PLATFORM
  • Tails

    Create websites with TailwindCSS

  • Blocks

    Design blocks for your website

  • Wave

    Start building the next great SAAS

  • Pines

    Alpine & Tailwind UI Library

  • Auth

    Plug'n Play Authentication for Laravel

  • Designer comingsoon

    Create website designs with AI

  • DevBlog comingsoon

    Blog platform for developers

  • Static

    Build a simple static website

  • SaaS Adventure

    21-day program to build a SAAS

Question By
Unsolved

NotfoundException when trying to finish install

brandonde

Oct 6th, 2017 10:24 AM

Hello,

I am running through the installation of GeekShop and I am recieving this error when I click finish

![https://imgur.com/7wmNEQ1]

For context here is my folder structure

![https://imgur.com/rdAK6lu]

Any thoughts?

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

i have two .env one in home1/brandond/laravel and the other in home1/brandond/public_html/application

it looks like it is trying to use the laravel .env file because the username and pass match the error

i wonder if I set laravel up wrong

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!!