How to display friendly information to users on the front end during the website maintenance period of AnqiCMS's 'Shutdown Prompt' feature?

Calendar 👁️ 391

In website operation, we all understand the importance of maintenance work.Whether it is system upgrade, data migration, or resolving urgent faults, the website will always have a period of time when it has to be "offline".However, how to ensure the smooth progress of maintenance work during this special period, while minimizing the impact on user experience and not damaging the professional image of the website, is indeed a problem worthy of our deep reflection.The "site closure prompt" feature of AnQiCMS (AnQiCMS) is designed to solve this pain point, allowing us to communicate information to the front desk users in a friendly and clear manner.

Imagine a user eagerly visiting your website, only to see a cold technical error page, or simply be unable to access it, this experience is undoubtedly frustrating, and may even lead them to leave.The shutdown prompt function of Anqi CMS is like a thoughtful and considerate website butler, informing users in advance that the website is undergoing "renovation upgrade" and providing subsequent guidance, transforming this negative experience into an opportunity to show professionalism and responsibility.

Enable the shutdown prompt feature: simple backend settings

To enable the closed site prompt in Anqi CMS, the operation is very intuitive.You just need to log in to the backend, find "Backend Settings" in the left navigation bar, and click to enter the "Global Function Settings" page.On this page, you will see an option named "Website Status".

In most cases, the website status is set to 'normal operation'.When you need to perform maintenance, just switch it to "standby mode".After switching, you will notice a text box for 'station closure tips' below.This is the place where you write information for users.You can directly enter a short piece of text here, for example, 'The website is under upgrade and maintenance, it is expected to be restored after XX hours, we apologize for the inconvenience!'}].The system will display this text as the default shutdown prompt to all users visiting your website.

After completing the setup and saving, when users visit your website again, they will no longer see a blank page or error code, but instead, the friendly tips you have meticulously prepared.

Create a personalized prompt page:errors/close.htmlpower

It is just a text prompt, which may not be enough to fully satisfy our pursuit of user experience. The powerful aspect of AnQi CMS lies in the fact that it not only provides the basic closed station prompt text box, but also allows us to customize a dedicated closed station prompt page——errors/close.html.

This file is located in the template directory you are currently using, for example/template/default/errors/close.html.It is a standard HTML template file, which means you can freely use HTML structure, CSS style, and even JavaScript scripts to create a content-rich, visually appealing standalone prompt page.

In this custom page, you can fully utilize the Anqi CMS template tags to dynamically pull in the 'site closure prompt' text set in the background, for example, using{% system with name="SiteCloseTips" %}Label. In addition to this core prompt, you can further enrich the content:

  • Clear maintenance reasons and schedule:Elaborate on the purpose of the maintenance (for example,
  • Contact Information:If the user has an urgent need, what channels can they use to contact you? You can utilize{% contact with name="Cellphone" %}or{% contact with name="Email" %}Tags, dynamically display the phone, email, and other information you configure in the background "Contact Settings".
  • Social media links:Guide users to follow your social media platform so that they can also get the latest updates during the website maintenance period and maintain interaction with the brand.
  • Aesthetic visual design:Match your brand's color scheme and style, add appropriate background images, icons, or animations to make waiting less boring.
  • Little interaction: Consider adding a simple countdown timer, or a casual game to alleviate the user's waiting mood.

By such customization, your landing page will no longer be just a simple notification, but a temporary reception area that reflects the warmth and professionalism of your brand.

Content is King: Write a friendly exit prompt

Even with strong technical support, friendly wording is still crucial. A good exit prompt should:

  1. Be straightforward:Honestly explain the current status of the website and why this situation has occurred.
  2. Set expectations:Clearly inform the user when the website will be restored to normal, so that they have a clear idea.
  3. Provide an alternative:If possible, provide other ways to obtain information or services, such as your customer service phone number, social media page, or other temporary access pages.
  4. Express regret and gratitude:Express sincere apologies for the inconvenience caused to the user and thank them for their understanding and patience.
  5. Maintain brand consistency:Even if it is a closed station page, it should maintain consistency with the overall style and tone of your website.

Through the "site closure prompt" function of Anqi CMS, website maintenance is no longer an embarrassing moment for operations, but an excellent opportunity for you to show user care and enhance your brand image.It turns every necessary shutdown into an opportunity for an honest communication with the user.


Frequently Asked Questions (FAQ)

1. Will the SEO of the website be affected after enabling the closed station prompt?The shutdown prompt function is mainly designed to optimize user experience.In technical terms, when a website is in a shutdown state, the content accessed by search engine spiders is a prompt page, rather than the normal website content.If the shutdown time is short (a few hours to a day), it usually has little impact.If the site is in a closed state for a long time, it may affect the crawling and ranking of search engines.To minimize the SEO impact, it is advisable to configure the server to return a 503 Service Unavailable status code during the shutdown period (although the shutdown prompt of Anqi CMS is currently displayed on the front page, it usually returns a 200 status code, but improving user experience can also indirectly reduce user churn to some extent, thereby maintaining the long-term SEO health of the website).

2. Can I customize theerrors/close.htmlAdd a contact form to the page so that users can leave a message or subscribe to updates?Of course you can. Sinceerrors/close.htmlIt is a completely customizable template file, you can add HTML form elements like on other pages. If you want to implement a message feature, you need to manually integrate the Anqi CMS message form tag{% guestbook fields %}or a similar user input mechanism, and ensure that the backend can correctly receive and process this data.For subscription updates, you can integrate a third-party email subscription service form code or implement a simple subscription function.

3. Can the administrator still access the back end for operations when the site is closed?Yes, even if the website is in a shutdown state, administrators can still access the specific backend management address by visiting (for example您的域名/system/Log in and operate the backend. The shutdown notice is only displayed to front-end users, and it will not affect administrators from entering the backend to perform maintenance or management tasks.

Related articles

How to correctly display the independent content of each site on the front page of the multi-site management function of AnqiCMS?

In today's digital environment, many businesses and individuals need to manage multiple websites, whether it be different brand sites, product sub-sites, or multilingual versions for different markets.A system that can efficiently handle content across multiple sites is particularly important to meet such demands.The multi-site management feature of AnqiCMS is exactly for this purpose, it allows you to easily manage multiple websites from a single backend, while ensuring that each site can independently and correctly display its exclusive content on the front page.### The core advantages of AnqiCMS multi-site management First, let's understand

2025-11-09

How does AnqiCMS ensure that mathematical formulas and flowcharts can be displayed correctly on the front end after enabling the Markdown editor?

Today, with the increasing diversity of content creation, websites not only carry text and images, but also often need to display complex mathematical formulas or intuitive flowcharts.For those who use AnqiCMS, the good news is that the system has built-in powerful Markdown editor support, and with simple configuration, it can ensure that these professional contents are perfectly presented on the website front-end.Below, let's take a look at how to operate, making your website content richer and more professional.

2025-11-09

How to implement template inheritance using the extends tag in AnqiCMS templates to unify the visual style of the website?

In website operation, maintaining a consistent visual style is the key to brand image and user experience.Imagine if every page layout on your website was different, with navigation positions changing back and forth, users would feel confused and even lose interest.Fortunately, AnqiCMS provides a powerful and elegant way to solve this problem - that is through the `extends` tag in the template inheritance mechanism.AnqiCMS has adopted a template engine syntax similar to Django, making template development intuitive and efficient.

2025-11-09

How to use AnqiCMS template include tag to introduce common code fragments and achieve page structure reuse?

In website content management, we often encounter situations where it is necessary to display the same content blocks, such as headers, footers, sidebars, or navigation menus, on multiple pages.If you copy and paste this code every time, it is not only inefficient, but also when you need to modify it, you have to face the繁琐 of repeated operations in multiple files.If this continues, the maintenance and updates of the website content will become extremely difficult, and inconsistencies in the experience may even occur.

2025-11-09

How to configure the image processing method (Webp, compression, thumbnail) in AnqiCMS content settings to optimize front-end loading speed and display quality?

In the era where content is king, the loading speed and display quality of website images have a significant impact on user experience and search engine optimization (SEO).High-quality images, if they load slowly or are blurry, not only may deter visitors, but may also affect the website's ranking in search engines.Luckily, AnqiCMS provides a series of powerful and flexible image processing features to help us easily meet these challenges.Next, we will delve deeper into how to cleverly configure the image processing method in AnqiCMS content settings, including WebP

2025-11-09

How to batch regenerate the thumbnails of AnqiCMS to adapt to the new display size requirements of the front page?

The display effect of image materials is crucial during website operation.Sometimes, due to website template updates, design style adjustments, or considerations for optimizing performance, the front-end page of the website may require new display sizes for image thumbnails.In this case, how can a large number of images uploaded to AnqiCMS (AnqiCMS) be generated into appropriate thumbnails according to new size requirements, rather than manually processing one by one, which has become a concern for many users.AnqiCMS fully considers the actual needs of content operators and built-in convenient thumbnail batch processing function

2025-11-09

How to display specific content or member permission prompts for different user groups on the front page of Anqi CMS?

In website operation, providing differentiated content or services for different user groups is an important strategy to enhance user experience and achieve content monetization.AnQiCMS (AnQiCMS) understands this need, built-in powerful user group management and VIP system, allowing you to easily implement personalized content display and permission control on the front page. ### Flexible User Groups and Permission System One of the core strengths of Anqi CMS is its flexible user group and VIP system.In the background, you can create multiple user groups, such as "Regular User", "Registered Member", "VIP Member"

2025-11-09

How to display detailed information of image resources on the front page, such as file name, size, and image address?

When using AnQiCMS to manage website content, images are undoubtedly an important element in enhancing page attractiveness.We often need to display not only the image itself on the front-end page, but also further details about the image, such as their filenames, sizes, and storage addresses.This is very helpful for visitors to understand the background of the image, to reference the content, or to manage and download the image.

2025-11-09