On this project, we're using the latest Laravel version (currently 7.x). Please go to Laravel documentation page for more information.
It’s based on Laravel framework, the root folder for it is /public. You shouldn’t install it on a sub-folder, use sub-domain is better than sub-folder. (we won’t support to install our product on sub-folder).
If you're a Laravel developer and you want to customize our source code in
platform/coreandplatform/packages, you need to delete folder/vendorthen run commandcomposer installto reinstall vendor packages.
public_html).database.sql (it's located in source code)..env from .env.example and update your database credentials.APP_URL in .env is correct your domain. It should be APP_URL=http://your-domain.com/admin to access to admin panel.botble - 159357.If you're a Laravel developer and you want to customize our source code in
platform/coreandplatform/packages, you need to delete folder/vendorthen run commandcomposer installto reinstall vendor packages.
Create .env file from .env-example and update your configuration.
Using sample data:
database.sql.Don't use sample data:
Run php artisan migrate to create database structure.
Run php artisan cms:user:create to create admin user.
Run php artisan cms:theme:activate martfury
If you're pulled source code from GIT server:
php artisan vendor:publish --tag=cms-public --forcephp artisan cms:theme:assets:publishRun web locally:
APP_URL in .env to APP_URL=http://localhost:8000php artisan serve. Open http://localhost:8000, you should see the homepage./admin to access to admin panel.botble - 159357.