Category: Windows 10 Home Chinese Edition
-
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: 13 1. Check the Go file: exercise-maps.go, the code is as follows 2. Run the file, Go reports an error: exercise-maps.go:4:2: Cannot find package “code.google.com/p/go-tour/wc” in any of: C:\Go\src\code.google.com\p\go-tour\wc (from $goroot) C:\Users\Administrator\Go\src\code.google.com\p\go-tour\wc (from $gopath), as shown in Figure 1 3. Open the URL of Go Tour on GitHub:https://github.com/golang/tour, after turning on the blue light connection, install the go…
-
Post Views: 14 1. For Windows users, the Go project provides two installation options (except from the source code installation): The ZIP archive requires you to set some environment variables, and the experimental MSI installer will automatically configure your installation. Open URL:https://studygolang.com/dl, download the MSI installer, as shown in Figure 1 2. Download the file: go1.13.4.windows-amd64.msi, right-click -> install, as…
-
Post Views: 13 1. On the develop branch in the local environment, execute the console command and report an error: as shown in Figure 1 2. Since this bug has been fixed in a single commit (EE8290) on the feature-netease branch, as shown in Figure 2 Therefore, it is decided to merge a single commit (EE8290) on the develop branch…
-
Post Views: 15 1. In the console command of Yii 2.0, an error is reported: yii\db\exception: redis error: err Invalid DB index Redis command was: Select 29 in /vendor/yiisoft/yii2-redis/src/connection.php:736, view /console/runtime/logs/app.log 2. The analysis found that when executing the command: Select 29, switch to the corresponding database: 29 errors, and a Redis instance has 16 databases by default, from 0…
-
Post Views: 14 1. The number of request parameters is 1136, as shown in Figure 1 2. Error in PHP 7.2: MB_parse_str(): Input variables exceeded 1000. To increase the limit change max_input_vars in php.ini. as shown in Figure 2 3. MAX_INPUT_VARS Indicates how many input variables are accepted (limits apply to the $_GET, $_POST and $_COOKIE hyperglobal variables, respectively) The…