
System Function Introduction: Support articles, forums, downloads, pictures, novels, videos, shopping malls, topics and other modules. All modules support custom fields, and all website functions you think of can be realized.
Member group: Member group price + time + privileges, member level and icon.
Payment interface: Weixin Pay and the complete visa-free payment system connected to this station.
Plug-in introduction: Check-in, reward, push articles by Baidu.
Remote attachment: Tencent Cloud, Baidu Cloud, Alibaba Cloud.
System cache: File cache, Memcached cache, Redis cache, WinCache cache, APC cache.
Other functions: Customize pseudo-static rules, generate static pages, customize pages, upload submissions, comments, member discounts, SMS emails, multi-language.
Installation tutorial:
1. Modify the database address first.
Open the config folder, find database.php and modify your own database
2. Import sql into the database.
3. Go to the background and modify your domain name.
Back-end address: Domain Name/admin.php
Default account admin
Default password 123456
4. You can explore the other basics yourself.
Pseudo-static rules:
location / {
if (-f $request_filename) {
break;
}
if ($request_filename ~* \”\\.(js|ico|gif|jpe? g|bmp|png|css)$\”) {
break;
}
if (!- e $request_filename) {
rewrite . /index.php last;
}
}
Comments0