Understand AnQi CMS - Official Resources and Support Channels

Calendar 👁️ 47

Summarize the technical resources and support channels such as the official website of AnQiCMS, online demos, development documentation, template manuals, API documentation, GitHub repository, and user communication groups. When encountering issues, you can quickly find the corresponding help according to your needs.


Official website and documentation

Resources address Description
Official website https://en.anqicms.com Product introduction, news and dynamic
Online Demonstration https://demo.anqicms.com Demo site (backend/systemAccountadmin/ Password123456)
Developer Documentation https://en.anqicms.com/help Backend feature usage help
Template Development Manual https://en.anqicms.com/manual Template Tags and Filters Documentation
API documentation https://en.anqicms.com/anqiapi RESTful + GraphQL API Documentation
Update Log CHANGELOG.md Detailed Change Records for Each Version

Source Code Repository

platform address
GitHub https://github.com/fesiong/anqicms
GitCode (domestic mirror) https://gitcode.com/anqicms/anqicms
Background management front-end https://github.com/fesiong/anqicms-admin
Docker image https://hub.docker.com/r/anqicms/anqicms

Download channels

Channel Description
GitHub Releases https://github.com/fesiong/anqicms/releases— Includes Linux / Windows / MacOS binary packages
Official website download https://en.anqicms.com/download
Docker Hub docker pull anqicms/anqicms:latest

Community and Support

method Description
GitHub Issues Submit Bug Report and Feature Suggestions
WeChat Group Add WeChat IDwebsafety, Scan the QR code to join the technical exchange group
Email [email protected]

❓ Can the background data of the demonstration site be modified at will for testing? Will it affect other demonstration users?

Official Demonstration Site (demo.anqicms.comisIndependent test environmentAny operation performed inside (adding articles, changing templates, modifying configurations) will not affect the official version. The demo site hasTimed restore mechanismIt will be reset to the initial state regularly, so there is no need to worry about 'breaking the demo site'.

But note that the demo site is only for experience and learning,Do not store important dataAlso do not use the demo site for business purposes.

❓ What should I do if I encounter 'Too many Release versions to understand' when downloading?

There are many versions listed on the GitHub Releases page, when downloading, you only need to pay attention to the latest version of the latest file:

找到最新的版本标签(如 v3.6.2)
└── Assets(附件列表)
    ├── anqicms-linux-amd64.tar.gz     # Linux 64位 系统 → 大部分服务器选这个
    ├── anqicms-windows-amd64.zip      # Windows 64位 系统
    ├── anqicms-darwin-amd64.tar.gz    # MacOS Intel 芯片
    ├── anqicms-darwin-arm64.tar.gz    # MacOS Apple Silicon(M1/M2/M3)
    └── Source code (zip/tar.gz)       # 源码包(二次开发用,一般用户不需要)

If you are not sure about your server architecture, use the following command to view:

uname -m
# 输出 x86_64 → 选 amd64
# 输出 aarch64 → 选 arm64(部分 ARM 服务器)

❓ What is the fastest way to get an answer during installation and usage?

Recommend the following channels in order of speed:

Priority Channel Response speed Description
⭐ Fastest WeChat Group Minutes to several hours The author is directly in the group, but be sure to clarify the version, environment, and operation steps when asking questions
Second Search Issues Search and get instant results Search for keywords in GitHub Issues, it is likely that someone has encountered the same problem
Third Submit an Issue 1-3 days If you can't find anything, create a new Issue to describe the problem
Fourth Send an email 1-3 days Suitable for non-urgent issues

Before asking a question, it is recommended to do the following three things:

  1. Search for the FAQ section of this tutorial (Chapter 9), to see if there is a corresponding issue
  2. Search GitHub Issues for duplicate problems
  3. Check the cache directoryerror.logError information

When asking a questionPlease attach the following information(Saves communication time):

- 安企CMS 版本:___(后台右上角可查看)
- 操作系统:___(Windows/Linux/MacOS)
- 运行环境:___(直接运行/Docker/宝塔面板)
- 数据库版本:___(MySQL 版本)
- 问题描述:___
- 错误日志:___(如果有)

Related articles

Understand AnQi CMS - System file structure

Understand the complete directory structure of AnQi CMS after installation, master the specific functions of each key directory and file such as the main program, configuration files, template directories, attachment directories, runtime data, etc., convenient for subsequent daily maintenance and secondary development. AnQi CMS complete directory structure overview, introducing the use of each directory and file.

2026-07-05

Understand AnQi CMS - Version System

Understand the version number rules (main version.minor version.revision number) of AnQi CMS, the history of version evolution, and the functional differences between community version and authorized version, to help users choose the appropriate version for installation and use according to their own needs.

2026-07-05

Understand AnQi CMS - Environment requirements

Before installing AnQi CMS, please confirm that the server meets the minimum requirements of the operating system (Linux/Windows/MacOS), database (MySQL/MariaDB), network environment, hardware configuration, etc., to ensure that the system can run normally.

2026-07-05

Exploring the Core Features of Anqi CMS

SEO Optimization Tools: Static URLs

2026-07-04

Download and install AnQi CMS

Introduce the various download channels of AnQi CMS installation package (official website, GitHub, mirror site), the method of version selection for different operating systems and architectures, and the file verification method of the installation package to ensure that the correct and complete version is downloaded.

2026-07-10

Installation of Anqi CMS - Baota panel deployment

2.2 Tower Panel Deployment Applicable Version: Tower Panel 7.9.3+. Tower Panel Deployment is divided into two methods: traditional deployment (uploading installation packages, configuring reverse proxy) and Docker one-click deployment. This chapter will introduce the traditional deployment method first.Preparation A Linux server with Baota panel installed (CentOS / Ubuntu / Debian are all okay) A domain name resolved to the server (such as www.anqicms.com) MySQL 5.6.35+ installed (recommended 5.7+ or 8.0) Download AnQiCMS Linux package from the official website or GitHub Method one: Baota 7

2026-07-18

Installation of Anqi CMS - Deployment with PHPStudy (Xiao Pi panel)

The application scenario: Windows local development environment or Windows server. PHPStudy (Xiao Pi panel) integrates components such as Nginx, MySQL, PHP, and AnQiCMS runs through Nginx reverse proxy.Preparation has been completed PHPStudy (Xiaopi Panel) software running mode has been switched to Nginx + MySQL package A local test domain (such as dev.anqicms.com) or access using IP + port AnQiCMS Windows installation package has been downloaded Installation steps Step 1: Create a site Open PHPStudy

2026-07-18

Manual deployment of AnQi CMS on the server

Use case: Linux servers without a panel (such as CentOS / Ubuntu), suitable for users familiar with command-line operations.Deployed by downloading the package, configuring Nginx reverse proxy, and MySQL database. Preparations A Linux server (CentOS 7+ or Ubuntu 20.04+) with Nginx and MySQL 5.6.35+ installed (recommended to use the LNMP one-click installation package) A domain name resolved to the server Downloaded AnQiCMS Linux installation package Installation steps Step 1: Download and unzip # Log in to the server ssh

2026-07-18