Contact Information: To prevent loss, please remember this website: dajian168.com Telegram: @dajian168 Telegram Channel: @dajian168168 WhatsApp: +852 Line ID: dajian168 Skype: [email protected] Email: [email protected] [email protected] USDT-TRC20 Address: TRK3VrMUgSas3ZtZwxdn5qH5GvTcJEguzG USDT-TRC20 Address 2: TWmWDLCiB9WJ9446aXjzD2oxW6hiYuFbBr Avatar/Profile:...
- About Us
- 2024-06-29
- 1447
...
- Development Case Studies, Tech Insights, Website Building Tutorials
- 2024-07-23
- 590
Record a case – Tianheng Xingcai 2.1 backend withdrawal without prompt and click processing failure issue. After configuring SSL certificate HTTPS, the backend does not pop up or prompt about this issue. Click processing fails, check database error: banklist....
- Development Case Studies, Tech Insights, Website Building Tutorials
- 2024-04-15
- 669
Delete all lottery draw result data ssc_data...
- Development Case Studies, Tech Insights, Website Building Tutorials
- 2024-03-23
- 636
Delete Remote Connection Records and Run Box Records – Batch File Windows 11 as Example @echo off REM Delete remote desktop connection history in registry reg delete HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client\Default /va /f reg delete HKEY_LOCAL_MACHINE\Software\Microsoft\Terminal Server Client\Default /va /f reg delete HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client\Servers /f REM Add registry key reg add HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client\Servers REM Delete Default.rdp file in Documents folder del /ah %homepath%\documents\default.rdp REM Delete run box history reg delete HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\RunMRU /va /f del /Q /F %APPDATA%\Microsoft\Windows\Recent\* echo. %APPDATA%\Microsoft\Windows\PowerShell\PSReadline\ConsoleHost_history.txt REM Delete contents of a certain folder @echo off set folderPath=C:\123\123 if exist %folderPath% ( rmdir /s /q %folderPath% echo folder ok ) else ( echo folder none ) REM Delete contents of a certain folder @echo off set folderPath=C:\Users\Administrator\AppData\Local\Microsoft\Terminal Server Client if exist %folderPath% ( rmdir /s /q %folderPath% echo folder ok ) else ( echo folder none ) REM Delete Clear system events PowerShell -ExecutionPolicy Bypass -File C:\Users\Administrator\Desktop\ClearEventLogs.ps1 echo all ok pause...
- Development Case Studies, Tech Insights, Website Building Tutorials
- 2024-02-03
- 872
Share three free cryptocurrency API interfaces for those who need them: – https://api.huobi.pro/market/history/kline?symbol=ethusdt&period=15min&size=20 – https://min-api.cryptocompare.com/data/v2/histohour?fsym=ETH&tsym=USDT&limit=20&aggregate=15 – https://api.binance.com/api/v3/klines?symbol=ETHUSDT&interval=15m&limit=20...
- Development Case Studies, Tech Insights, Website Building Tutorials
- 2023-12-03
- 824
When registering a user in Weipan ThinkPHP, there is no response, and a 500 error is displayed upon redirect. Check the domain field in the database user table, or other fields, and change them to allow null and set the length to 128....
- Development Case Studies, Tech Insights, Website Building Tutorials
- 2023-11-04
- 607
Windows Server 2016 Installing .NET 3.5 Error – Source File Not Found Solution Installation method: Download NetFx3.cab and place it in the C:\Windows folder (C:\Windows) Click Start, find Windows PowerShell, right-click and run as administrator, then enter the following command: dism.exe /online /add-package /packagepath:C:\WINDOWS\netfx3.cab Online sources mention copying the sxs file from the sources folder of Windows Server 2016. I found it too complicated and tried to open it, but got an error – c:\windows\netfx3.cab Error: 0x80070003...
- Development Case Studies, Tech Insights, Website Building Tutorials
- 2023-08-12
- 685
Windows 2016 server fails to switch to Chinese, displaying “connect to the internet to check for language packs” 1. Download the Windows Server 2016 language pack. Enter the URL: https://download.csdn.net/download/tony_vip/12230547 2. On the server, press the Win+R key combination to open the Run utility, enter lpksetup and press Enter. 3. Select “Install display languages” Content source: https://blog.csdn.net/tony_vip/article/details/104683611...
- Development Case Studies, Tech Insights, Website Building Tutorials
- 2023-08-12
- 709
In Windows 11, you can set up automatic clearing of Remote Desktop connection records on startup by following these steps: Open the Run dialog box. You can press the Win + R shortcut key to open the Run dialog box. Type regedit and click OK to open the Registry Editor. In the Registry Editor, navigate to the following path: HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client In the Terminal Server Client folder, right-click on a blank area and select New – DWORD (32-bit) Value to create a new DWORD entry. Name the newly created DWORD entry fDenyTSConnections. Right-click on the fDenyTSConnections entry and select Modify. Set the Value data to 1 and click OK. Close the Registry Editor. Now, each time you start your computer, Windows 11 will automatically clear the Remote Desktop connection records. Please note that this setting only clears Remote Desktop connection records established during the startup process and will not affect any currently established connections....
- Development Case Studies, Tech Insights, Website Building Tutorials
- 2023-08-12
- 711
Sina Stock Real-time Data hq.sinajs.cn Interface Repair Sina stock real-time data hq.sinajs.cn suddenly became inaccessible and couldn’t fetch data. This is because Sina stock has blocked the interface. You can get data by adding a forged header domain in the original data collection interface. $ch = curl_init(); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_REFERER, https://finance.sina.com.cn ); //referer curl_setopt($ch, CURLOPT_TIMEOUT, 500); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); curl_setopt($ch, CURLOPT_URL, $uri); $response = curl_exec($ch); if (curl_errno($ch)) { //$errno = curl_error($ch); curl_close($ch); //return [‘errno’ = $errno]; return false; } else { curl_close($ch); return $response; } ******************* The commonly used Sina real-time stock data interface, http://hq.sinajs.cn/list=code, has recently been updated. Direct access via web page returns “Kinsoku jikou desu!” (Japanese for “Access denied,” quite cultural!) After investigation, it was found that HTTPS must be used, and a Referer field must be added to the request header. Since I previously used @持有封基 teacher’s Excel template, the related VBS code needs to be updated to add request headers. However, the original XmlHttp object cannot forge some HTTP header information (including Referer), so it must be changed to WinHttp object to access. Here is the modified macro code: With CreateObject(“WinHttp.WinHttpRequest.5.1”) .Open “GET”, URL, False .setRequestHeader “Referer”, “https://finance.sina.com.cn” .Send sTemp......
- Development Case Studies, Tech Insights, Website Building Tutorials
- 2023-07-27
- 824