-
Notifications
You must be signed in to change notification settings - Fork 1
Installation
git clone --recursive https://github.com/andreas22/shared-settings.git
*recursive option is required to download any submodules that exists
cd shared-settings
vim app/config/database.php
Run installation file from command line, you will be asked twice if you want to install database, press 'y' to proceed.
install.bat
Enable mod_rewrite.so in httpd.conf, if is disabled you will have to pass public/index.php/admin/login in order to work
git clone --recursive https://github.com/andreas22/shared-settings.git
*recursive option is required to download any submodules that exists
cd shared-settings
vim app/config/database.php
Run installation file from bash, you will be asked twice if you want to install database, press 'y' to proceed.
./install.sh
find shared-settings/ -type d -print0 | xargs -0 chmod 0755
find shared-settings/ -type f -print0 | xargs -0 chmod 0644
find shared-settings/app/storage/ -type d -print0 | xargs -0 chmod 0775
Enable mod_rewrite.so in httpd.conf, if is disabled you will have to pass public/index.php/admin/login in order to work
PDO SQLite driver requires that if you are going to do a write operation (INSERT,UPDATE,DELETE,DROP, etc), then the folder the database resides in must have write permissions, as well as the actual database file.
chmod 775 app/database/
chmod 775 app/database/production.sqlite
If you have permission issues after assigning all the correct permissions then try disabling selinux.
vi /etc/selinux/config
SELINUX=disabled
and restart computer
username:[email protected] password:password ]
http://url_of_your_application/login
username:[email protected] password:password ]
http://url_of_your_application/admin/login
http://url_of_your_application/user/signup
http://url_of_your_application/user/logout
Authentication: https://github.com/intrip/laravel-authentication-acl/blob/master/docs/index.md
JsonEditor: http://www.jsoneditoronline.org/