-
Laravel Framework 8.
-
PHP 7.3 or higher.
- Configure
php.ini:
max_input_vars=100000 - Configure
-
MySQL 5.7 or higher.
-
Home: OPhimCMS.CC
-
Admin: Demo.OPhimCMS.CC/admin
-
Free Movies Data: OPhim.Movie
-
Add-on:
-
Theme: MORE…
- CD to project root and run:
composer require hacoidev/ophim-core -W - Configuration your database connection information in file
.env - Then, run command:
php artisan ophim:install - Change app\Models\User:
use Ophim\Core\Models\User as OphimUser;
class User extends OphimUser {
use HasApiTokens, HasFactory, Notifiable;
// ...
}
-
Create new user by command:
php artisan ophim:user -
Remove this route definition in routes/web.php
Route::get('/', function () {
return view('welcome');
});
- Run
php artisan optimize:clear
- CD to project root and run:
composer update hacoidev/ophim-core -W - Then, run command:
php artisan ophim:install - Run
php artisan optimize:clear - Clear PHP Opcache in server (if enabled)
-
Configure a production environment file
.envAPP_NAME=your_app_nameAPP_ENV=productionAPP_DEBUG=falseAPP_URL=https://your-domain.com
-
Configure timezone
/config/app.php'timezone' => 'Asia/Ho_Chi_Minh''locale' => 'vi'
-
Command CMS
php artisan ophim:menu:generate: Generate menuphp artisan ophim:episode:change_domain: Change episode domain play stream
- Generate menu categories & regions:
php artisan ophim:menu:generate
- Setup crontab, add this entry:
* * * * * cd /path/to/project && php artisan schedule:run >> /dev/null 2>&1
Github: https://github.com/hacoidev/ophim-core