Weaving dreams website regularly audits, regularly releases dream weaving plug-ins

Please pay attention to check whether the Dream Weaving website has been re-developed before installation. If it has been re-developed, please compare the files to avoid file overwriting errors. Please pay attention to the backup. I have tested it and it can be used normally. Version: 5.7utf-8

The download address of the regular audit plug-in of the Weaving Dream website is at the bottom
1. Change the name of the dede folder in the plug-in to the name of the folder you log in

2. Copy and paste all the plug-in files to the root directory of the website, and select overwrite.

3. Modify the file plus\timing_check.php as follows: Line 4 code: "define('DEDEADMIN', DEDEROOT.'/dede');", modify dede to the name of your back-end folder

4. Add the timing execution /plus/timing_check.php file,
4.1. If you are using the pagoda control panel, you can add-Task Type- "Access URL" in the pagoda's scheduled task, and then fill in the update time and task name in turn .

Weaving dream website regular audit plug-in
4.2. Or add the following code before </body> at the end of the default homepage template you use: <script src="/plus/timing_check.php" language="javascript"></script>
so that only in the set time period Timed review will only be performed after visiting the homepage once inside (the first method is recommended)


5. Log in to the background as a super administrator, select [System]-[SQL Command Tool] in the main menu, and enter the following in the text box of "Run SQL Command Line:" (click "OK" after input).

Note: Change the database table prefix "dede_" to your website database table "prefix_", there are three places. (The plug-in installation is complete everywhere)

CREATE TABLE `dede_check_time` (
`id` MEDIUMINT( 8 ) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`start_time` TINYINT( 2 ) UNSIGNED NOT NULL DEFAULT '0',
`end_time` TINYINT( 2 ) UNSIGNED NOT NULL DEFAULT '0',
`amount` SMALLINT( 5 ) UNSIGNED NOT NULL DEFAULT '0',
`check_time` INT( 10 ) UNSIGNED NOT NULL 
) ENGINE = MYISAM ;
ALTER TABLE `dede_check_time` ADD `lmorzs` TINYINT( 1 ) UNSIGNED NOT NULL DEFAULT '0',
ADD `maxpagesize` SMALLINT( 5 ) UNSIGNED NOT NULL ;
ALTER TABLE `dede_check_time` ADD `typeid` SMALLINT( 5 ) UNSIGNED NOT NULL ;

6. Instructions for weaving dreams timing audit plug-in

 

  • Log in to the background as a super administrator, select [Core] [Timed Audit] in turn, and enter the time period for the timed audit, as shown in the following figure:

Weaving dreams website regularly audits, regularly releases dream weaving plug-ins

Function description:
1. Several time periods can be set. During these time periods, a specified number of unreviewed articles will be automatically reviewed and generated every day, and each time period will only be updated once a day.
2. Automatically update the homepage of the website and the column pages that need to be updated. The column pages that need to be updated are the columns generated by new articles, and the columns that are not updated without new articles will not be updated, which improves the performance of the update.
3. You can update the article according to the column or the total number. Update articles according to the columns, and update the specified number of articles in each column. The articles are updated according to the total number, and the specified number of articles will be updated according to the id from small to large.
4. Articles are updated in the order of the article id from small to large, and the articles added first are guaranteed to be updated first.
5. The publication time of the article is the review time.
6. Additional functions: update the whole site, add a time period, set the number of audits to 0, the whole site will be updated
*homepage

Example description: The above picture is only reviewed once a day in each time period. For example: 3 o'clock to 5 o'clock this time, 3 o'clock, 4 o'clock (not including 5 o'clock) during this period, as long as a user visits the home page of the website, each column will review and produce 2 articles, and the publication time will become that time Time of review. Note: If no user visits the homepage of the website during this period, it will not be reviewed. From 14:00 to 16:00, if a user visits the homepage of the website, 10 articles will be updated. Instead of updating according to the column, 10 articles will be updated from small to large according to the article id.

Download address   https://download.csdn.net/download/qq_39339179/14910893

 

 

Guess you like

Origin blog.csdn.net/qq_39339179/article/details/112962845