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
- 1165
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
- 565
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
- 559
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
- 624
The text you’ve provided consists of URLs and API endpoints, not text in another language that requires translation. These are web addresses and technical parameters that would remain the same in English: 1. quan.suning.com/getSysTime.do – URL for Suning system time 2. https://apps.game.qq.com/CommArticle/app/reg/gdate.php – Tencent game article URL 3. https://api.m.jd.com/client.action?functionId=queryMaterialProducts – JD.com API endpoint 4. client=wh5 – Client parameter 5. http://api.k780.com:88/?app=life.time – Time API URL 6. appkey=10003 – App key parameter 7. sign=b59bc3ef6191eb9f747dd4e83c99f2a4 – Signature parameter 8. format=json – Format parameter If you intended something different, please provide the text you’d like translated....
- Development Case Studies, Tech Insights, Website Building Tutorials
- 2023-07-22
- 528
Solution for BT Panel failing to import large MySQL database files Importing MySQL files via phpMyAdmin times out. If the database is too large, you can import it using the MySQL command line with the source command. Example: 1. First, upload the database file to the /www/backup directory. The database to be imported is dapaowpsql_com, and the backup file is dapaowpsql_com.sql. 2. Log in to the MySQL command line: mysql -uroot -p. After pressing Enter, enter the password (the password is not displayed by default). Then run: use dapaowpsql_com; source /www/backup/dapaowpsql_com.sql. Press Enter and it will start importing....
- Development Case Studies, Tech Insights, Website Building Tutorials
- 2023-07-21
- 444
Lottery API interface production – curl to get and produce interface JSON and XML format ‘; echo ‘‘; echo ‘‘; function file_get_contents_by_curl($url) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); $result = curl_exec($ch); curl_close($ch); return $result; } ?> Time getting API ‘; echo ‘‘; echo ‘‘;*/ function file_get_contents_by_curl($url) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); $result = curl_exec($ch); curl_close($ch); return $result; } ?>...
- Development Case Studies, Tech Insights, Website Building Tutorials
- 2023-07-19
- 409
Regular expression matching international numbers Regular expression for international numbers ^[0-9]\d{1,14}$ starts with 0-9, total 1-15 digits 1-15 digits, does not start with 0 and can have two decimal places ^([1-9]\d{1,14}|\d)(\.\d\d)?$ So is 0 correct? If including 0, ^(?=[\d.]{1,15})([1-9]\d{1,14}|\d)(\.\d\d)?$ If not including it, ^(?=[\d.]{1,15})[1-9]\d{0,14}(\.\d\d)?$ /^1\d{10}$/ What does this mean? 1 must start with 11 digits mobile number Domestic mobile is a regular expression, /regular/, ^ represents start, $ represents end, \d represents digit, {10} means the previous \d has 10 digits It looks like a simple regular expression to verify if a mobile phone number is correct...
- Development Case Studies, Tech Insights, Website Building Tutorials
- 2023-07-18
- 469
Multi-language Amazon automatic order capture system Commission system Stacking group E-commerce order grabbing system Optimized mobile page, solving the problem of slow mobile loading Invitation function – can build your own team, get more commissions, upgrade membership, etc. Automatically grab Amazon orders, can stop grabbing orders – grab orders to complete tasks...
- Development Case Studies, Tech Insights, Website Building Tutorials
- 2023-07-17
- 515
Second-developed overseas order grabbing system with user risk value and last order time. Includes three-level distribution, permission agent backend, recharge and withdrawal priority, and complete backend query functions....
- Development Case Studies, Tech Insights, Website Building Tutorials
- 2023-07-17
- 478
Regular expression Match hyperlink href href=[^ ]* Match within hyperlink a tag [Aa]\s+(.*?\s+)*?href\s*=\s*([' ]).+?\2(\s+.*?\s*)*? .+? /[Aa] a class=”tool-attend tool-bt-button tool-bt-attend” href=”javascript:;” data-report-view=”{ ‘mod’: 1592215036_002, ‘spm’: 1001.2101.3001.4232, ‘extend1’: ‘关注’ }” 关注 /a Match http [^\\=](http://[A-Za-z0-9\\.\\/=\\?%\\-\\_\\ ~`@':+!(^\\ )]+)...
- Development Case Studies, Tech Insights, Website Building Tutorials
- 2023-07-17
- 473