Open your php configuration file php.ini and change the following settings.
memory_limit = 128M
max_execution_time = 300
If you are using Cpanel, you can follow this article to change your PHP memory limit settings https://chemicloud.com/kb/article/how-to-increase-the-php-memory-limit-in-cpanel/
{warning} On this project, we're using the latest Laravel version (currently 9.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).
{warning} If you're a Laravel developer and you want to customize our source code in
platform/core
andplatform/packages
, you need to delete folder/vendor
then run commandcomposer install
to reinstall vendor packages.
public_html
).database.sql
(it's located in source code).APP_URL
in .env
./admin
to access to admin panel.botble
- 159357
.{warning} If you're a Laravel developer and you want to customize our source code in
platform/core
andplatform/packages
, you need to delete folder/vendor
then run commandcomposer install
to reinstall vendor packages.
Update your database credentials and APP_URL
in .env
.
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 lara-mag
If you're pulled source code from GIT server:
php artisan cms:publish:assets
Run web locally:
APP_URL
in .env
to APP_URL=http://localhost:8000
php artisan serve
. Open http://localhost:8000
, you should see the homepage./admin
to access to admin panel.botble
- 159357
.