爱影CMS安装教程

爱影 CMS 是市面上不多见的 GO 语言实现的 CMS 软件。虽然免费但是没有开源,考虑官方已经一个多月没有更新,且官方社区、电报群、在线客服都处于失联状态,很有可能要干不下去。所以先把官方安装教程、相关资源做个备份。

Ubuntu 安装脚本

官方提供了一键安装脚本,很方便。

1
sudo rm -f iycms.sh; sudo wget --no-check-certificate -c -O iycms.sh https://www.iycms.com/api/static/down/linux/ubuntu/install_x86_64.sh;sudo chmod +x iycms.sh;sudo ./iycms.sh

install_x86_64.sh 文件内容:

阅读更多

爱影CMS常用数据库表注释

在管理后台删除已经采集过的资源站时,爱影 CMS 不会扫描数据库把对应的采集纪录删掉,这时候就需要自己维护数据库,备注下这过程涉及的表。

collection

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
create table collection
(
id bigint auto_increment
primary key,
name varchar(191) default '' not null comment '名称',
data_method bigint default 1 not null comment '数据类型:1JSON 2XML',
data_type bigint default 1 not null comment '数据类型:1视频 2影人',
address varchar(191) default '' not null comment '地址',
param varchar(191) default '' not null comment '参数',
`desc` text null comment '说明',
charging_mode bigint default 1 not null comment '收费模式 1免费 2vip免费 3金币点播',
data_handle bigint default 1 not null comment '数据操作 1新增+更新 2新增 3更新',
log_id bigint default 0 not null comment '请求日志id',
sr_id bigint default 0 null comment '超管平台资源id',
status bigint default 1 null comment 'COMMENT',
create_at bigint not null,
update_at bigint not null,
match_player tinyint(1) null comment '是否匹配资源播放器',
use_parse int default 0 not null comment '是否启用解析,1-是,2-否',
parse_address varchar(191) default '' not null comment '解析地址,视频播放地址',
tags text null comment '来源',
color text null,
bold int default 0 not null,
sort int default 99 not null
)
collate = utf8mb4_unicode_ci;
阅读更多