Now it is easier to install under Debian/Ubuntu.
- Download .deb package from SourceForge
- Install in terminal with:
$ sudo dpkg -i mapigniter2_[version]_all.deb
- This will install system-wide at /var/www/html/mapigniter2
- Open in browser http://localhost/mapigniter2/public
- To remove run:
$ sudo dpkg -r mapigniter2
- All data created will be saved at /usr/share/mapigniter2_data
This install instructions takes in consideration that the Requirements are satisfied before going any further.
- Download zip and extract to a web server folder
- Copy .env.example to .env
- Create a database and set your local configuration on .env
- Install as you would install a Laravel application
- php composer.phar install --prefer-dist
- php artisan key:generate
- php artisan migrate
- php artisan db:seed
- Give write permissions to web server to the following folders:
- storage
- bootstrap/cache
- public/storage
- resources/views/pages
- Laravel comes with a .htaccess that allows you to take advantage of URL rewrite. To use this feature enable module rewrite on Apache with: a2enmod rewrite. Next, restart apache.
- Open in browser -- your_website_url/public
Check web server logs for errors