Year: 2023
-
Post Views: 15 1. When executing: npm run build, an error is reported: ln -sf ../frontend/dist/assets public/assets,lnIs not recognized as an internal or external command, operatorable program or batch file. . as shown in Figure 1 2. Since the Windows system does not support it, I finally decided to execute this command in the Ubuntu-20.04 system in WSL2. Tip: No…
-
Post Views: 22 1. Reference:Install PHP, its version defaults to PHP 7.4 2. Uninstall PHP 7.4 and its dependencies first 3. Reference:How to install and run PHP 8.x on Ubuntu 20.04. Add the PHP PPA repository. Install PHP 8.1 using the following command. 4. Install PHP 8.1 successfully. as shown in Figure 1
-
Post Views: 36 1. Reference:Install Shopify CLI 3.0 (based on Node.js) in Windows 10 Professional, check in advance whether the corresponding requirements are met . 2. Reference:The requirements in Linux are as follows 3. Node.js is not installed, refer to:Installation . Installation failed. 4. Execute the command: sudo apt-get update 5. Execute the command again: sudo apt-get install -y nodejs,…
-
Post Views: 17 1. System inspection: wangqiang.store’s domain name real-name authenticationⓘ information (*strong, resident ID card: 1405********1539) is inconsistent with the main information of the record you filled in. as shown in Figure 1 2. It may be because the domain name was just registered. The content of the text message received is as follows: [Aliyun] hi50186795@aliyun.com Hello! There is…
-
Post Views: 53 1. Some currencies do not exist in Ouyi, so they need to be purchased in MEXC. Therefore, you need to transfer the USDT from OE to MEXC through ARB cross-chain 2. Open MEXC, now the total assets of the account are equivalent to 0, click to recharge. as shown in Figure 1 3. Recharge USDT and select…
-
Post Views: 15 1. Report an error in the browser console: UncaughtSyntaxError: Invalid or Unexpected token (XXX.js). as shown in Figure 1 2. The last discovery is that the content of the JS file in the response contains \, and the content is escaped. as shown in Figure 2 3. After the \ is removed from the content of the…
-
Post Views: 20 1. In Laravel 6, when installing Laravel Mix (npm install), an error is reported: npm err! Eresolve Unable to resolve dependency tree. as shown in Figure 1 2. Find the existence of the program root directory: yarn.lock, replace with: yarn command, no more errors. as shown in Figure 2
-
Post Views: 23 1. Reference:The same CSS file (their ETags are equal), due to the difference in the response’s content-type, leads to the difference in the interface of the web page. Discover the response’s Content-Type based on MIME_CONTENT_TYPE – the MIME type of the detection file, and finally based on the MIME-TYPE detection LEAGUE/MIME-TYPE-detection League/mime-type-detection implementation. Detect according to content,…