Hongmu Notes
Home Program Notes PbootCms

PbootCms

PbootCMS is a brand-new core and permanently open source and free PHP enterprise website development and construction management system. It is a set of efficient, simple and powerful PHP CMS source code that can be used for free and commercially, which can meet the needs of various enterprise website development and construction. The system uses template tags that are as simple as making you cry. As long as you understand HTML, you can quickly develop a corporate website. The official provides a large number of website templates for free download and use, and is committed to providing the best website development and construction solutions for developers and enterprises.

Complete Guide to PbootCMS Security Operation and Maintenance

Complete Guide to PbootCMS Security Operation and Maintenance Program Notes PbootCms

As a free, open source, and commercially available PHP enterprise website development and construction management system, PbootCMS is loved by the majority of webmasters for its ease of use and flexibility. However, because of its large number of users, it has also become a target of frequent scanning and attacks by hackers. The following is a systematic security operation and maintenance plan, covering the complete process from basic reinforcement to emergency response. 1. Core security hardening 1.1 Keeping the program up to date is the most important security...
👁 86
pbootcms source code installation tutorial, background password, page blank processing

pbootcms source code installation tutorial, background password, page blank processing Program Notes PbootCms

1. Upload to your own host, enter the domain name to open, and the authorization page will appear. Go directly to the official website of pbootcms for authorization (free). If a 404 appears on the homepage, go to the backend first and fill in the authorization code. The address for obtaining the authorization code is: https://www.pbootcms.com/freesn/2. Log in to the backend, login method: your domain name/admin.php Account: admin Password: a...
👁 56
pbootcms pseudo-static setting tutorial.

pbootcms pseudo-static setting tutorial. Program Notes PbootCms

The Apache environment and IIS environment have pseudo-static rules added to the root directory by default (do not delete the two files web.config and .htaccess). No operation is required, as long as the host supports pseudo-static. For Nginx environment, please open the nginx.txt file and copy the code inside to the configuration. Let’s take the pagoda as an example. The file of pseudo-static rules is in this way.
👁 68
Compare pbootcms official files with website files to detect abnormal files

Compare pbootcms official files with website files to detect abnormal files Program Notes PbootCms

* PbootCMS Trojan horse scanning and file integrity check script * Purpose: Compare the current website PHP files with the official version to find redundant/tampered PHP files * Usage: Name this file check_malware.php and place it in the root directory of the website, access it through a browser or run it from the command line * Security recommendation: Please delete this script in time after running to avoid malicious use&lt…
👁 76
What should I do if I forget my pbootcms password?

What should I do if I forget my pbootcms password? Program Notes PbootCms

OK, I encountered something like forgetting my password. I searched online for a long time and couldn't find a solution. Then I found the password reset tool on the official website, and now I’ll keep a backup. As for the usage tutorial. 1) Download the reset tool decompression package, and upload the resetpw.php file directly to the root directory of the website after decompression; 2) Directly access the file address in the browser, and then follow the page prompts to enter relevant information to reset. Fill in the "database configuration..."
👁 125
sqlite database online php read operation view, pbootcms database online view

sqlite database online php read operation view, pbootcms database online view Program Notes PbootCms Language Notes PHP

When using pbootcms, a database is often used, but the database of pb is a .db file, so it is very troublesome. There is no ready-made visualization page to view the database, so a php visualization page for php online viewing is developed here. This will be much more convenient. How to use? In the folder of the db file, create a php, put the following code in it, modify your database name, and then access p...
👁 167
What should I do if the PbootCMS [list:visits] tag fails?

What should I do if the PbootCMS [list:visits] tag fails? Program Notes PbootCms

After PbootCMS was upgraded to the latest version (3.2.8), N tags on the list page failed, such as the most commonly used [list:visits] number of visits tag. This problem was caused by the official latest version of the list query SQL being modified from all column query to specified column query. The solution was as follows: the original list call tag {pboot:list scode=0 num=50} was changed to {pboot:list...
👁 161
pbootcms randomly calls articles with high efficiency (not adding rand() to database query)!

pbootcms randomly calls articles with high efficiency (not adding rand() to database query)! Program Notes PbootCms

pbootcms is okay, but the calling method is a bit lacking! I originally wanted to call the article randomly, but I only found random calls. However, this kind of database query sorting is very performance-intensive! Thousands of articles are fine, but tens of thousands or hundreds of thousands of articles, then just wait for it to lag! So I did some research and found that pbootcms supports php tags, which is great! So the calling method that comes with php+, the combination of the two produced the legendary...
👁 420
pbootcms moves content fields to secondary tables (improves website speed)

pbootcms moves content fields to secondary tables (improves website speed) Program Notes PbootCms

In fact, it doesn’t really move! First create a model field: SQL migrate content field to ext content field: 🔒 Hide content: View after comment INSERT INTO ay_content_ext (contentid, ext_contents) SELECT id, content FROM ay_content; UPDATE "mai…
👁 371
pbootcms sqlite database converted to mysql database

pbootcms sqlite database converted to mysql database Program Notes PbootCms

Why convert to mysql database? When the amount of data in the database reaches tens of thousands, there will be the following differences between using SQLite and MySQL: Performance: SQLite is an embedded database suitable for lightweight applications. It uses disk files to store data and has only one connection. In contrast, MySQL is a complete client/server relational database management system that supports multiple connections and has...
👁 621
1 2 3