Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Installation requires more configuration? #17

Open
mdennnism opened this issue Dec 15, 2017 · 5 comments
Open

Installation requires more configuration? #17

mdennnism opened this issue Dec 15, 2017 · 5 comments

Comments

@mdennnism
Copy link

Issue:

  1. Installation of estatezillla is not that straightforward.
    I have installed as instructed and only the admin page is opening and the credentials supplied are not working.
  2. In order to get the install script to run I had to add php identifier tag in the install.php file after the the html text on Unzipping.
  3. Once the install.php ran the admin page opened and the credentials admin/changeme were rejected as invalid
  4. Trying to access the 'Create Account Page' results in a fatal error as below

Are there additional configurations I need to do such as DB setup etc?

FatalErrorException in Handler.php line 25:
Uncaught TypeError: Argument 1 passed to App\Exceptions\Handler::report() must be an instance of Exception, instance of Error given, called in /var/www/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php on line 73 and defined in /var/www/public_html/app/Exceptions/Handler.php:25
Stack trace:
#0 /var/www/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(73): App\Exceptions\Handler->report(Object(Error))
#1 [internal function]: Illuminate\Foundation\Bootstrap\HandleExceptions->handleException(Object(Error))
#2 {main}
thrown

@jstrrr
Copy link

jstrrr commented Dec 15, 2017

When i install it on localhost which is XAMPP the admin panel is working, but when i try it on another host it's not work. I don't know why.

@typo3ua
Copy link

typo3ua commented Dec 16, 2017

The database to run this application is missing and too system not connect to database.

When install system does not setup and does not configuring database

@vvalchev
Copy link

vvalchev commented Mar 7, 2018

Change the file config/database.php and set

default => 'sqlite'

This will use the build-in sqlite database, which is great. Otherwise the default option is 'mysql' and you need to set the following environment properties:

			'host'      => env('DB_HOST', 'localhost'),
			'database'  => env('DB_DATABASE', 'forge'),
			'username'  => env('DB_USERNAME', 'forge'),
			'password'  => env('DB_PASSWORD', ''),
			'port'  	=> env('DB_PORT', ''),

@SqualaDesign
Copy link

@vvalchev I try to use mysql but seem not working, I cannot have access on admin

@vvalchev
Copy link

Probably you should install sqlite command line tool, open the sqlite database and dump the schema sql. Then you can import it in mysql (after some small modifications, hopefully).

However, i've found that even with sqlite, some tables are wrongly defined and you are unable to add a new property. Some other part of the application also didn't worked.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants