Category: Windows 10 Home Chinese Edition
-
Post Views: 17 1. When executing the command: git push -u origin master, prompt: The authentication of hostgithub.com (52.192.72.89)cant be established.ecdsa key fingerprint is sha256: p2qamxnic1tjyweiottrvc98/r1bufwu3/liykgufqm.. as shown in Figure 1 2. Push through TortoiseGit, and still report an error: Logon Failed, use Ctrl+C to cancel Basic Credential Prompt. as shown in Figure 2 3. Remote: On August 13, 2021,…
-
Post Views: 50 1. Laptop (ThinkPad T570) The headphones have sound, but there is no sound from the outside. There is sound before confirmation. 2. Open the Lenovo service website: https://newsupport.lenovo.com.cn/ . Search: T570, selection: ThinkPad T570. as shown in Figure 1 3. In the newly opened page, click: Driver Download. as shown in Figure 2 4. Expand the sound…
-
Post Views: 15 1. Report an error in Windows 10, Nginx 1.10, and PHP 7.4: 413 Request Entity Too Large. The size of the uploaded file: 286MB. as shown in Figure 1 2. Check phpinfo, the size of the uploaded file is limited to 1024M. as shown in Figure 2 3. Add to nginx’s server: client_max_body_size 1024M; 4. Restart nginx…
-
Post Views: 19 1. Execute the command line in Windows 10 and report an error: Call to undefined function App\Console\Commands\POSIX_Getpid(). as shown in Figure 1 2. Reference URL:https://www.php.net/manual/zh/intro.posix.php. This extension is not available on Windows platforms. You can also try using getMyPid() instead. as shown in Figure 2 3. POSIX_GETPID — Returns the current process ID. Decide to replace with:…
-
Post Views: 21 1. Error in Yii 2.0: Malformed UTF-8 Characters, Possibly Incorrectly Encoded. 2. Check the code below 3. Print out $E->GetMessage(), which contains garbled characters. as shown in Figure 1 4. Edit the code, MB_CONvert_encoding — Convert the encoding of characters. The response status code is: 500, and the response body is: “SQLState[HY000][2002]php_network_getaddresses: getaddrinfo failed: I don’t know…