Year: 2020
-
Post Views: 14 1. An error occurred while updating in WordPress: the download failed. Too many requests, as shown in Figure 1 2. Open the URL:https://wordpress.org/, Response: 429 Too many requests, so it seems that the reason is that the official WordPress website is blocked in China. as shown in Figure 2 3. After connecting the blue light locally, you…
-
Post Views: 56 1. When saving tasks in Zen Dao, respond to 405, prompt: I’m sorry, because the URL you visit may pose a security threat to the website, your access is blocked. as shown in Figure 1 2. Carefully analyze the saved task content, there is the union all keyword, as shown in Figure 2 3. Delete union all,…
-
Post Views: 11 1. Refer to the Go guide, web server, write file: web-servers.go 2. Accesshttp://localhost:4000/When prompted: The website cannot be accessed, as shown in Figure 1 3. Run in PowerShell: go run web-servers.go, visit againhttp://localhost:4000/When, the output: hello!, as shown in Figure 2
-
Post Views: 17 1. Get the task list of the application of the Penguin, the list is empty, as shown in Figure 1 2. Types of published articles: standard (normal, graphic) articles, successful publishing (that is, the storage is successful), check the sql statement of the publishing task, as shown in Figure 2 3. Get the task list of the…
-
Post Views: 14 1. Perform database migration in Yii 2.0: the MediumText type of MySQL. The four text types are TinyText, Text, MediumText, and LongText. Only supported: text 2. Reference file: \vendor\yiisoft\yii2\db\schemabuildertrait.php, copy to \console\db\mysql\schemabuildertrait.php, refer to the implementation of the text type, add support for tinytext, mediumtext, and longtext 3. In the database migration file, refer to the newly…