February 2026 [Latest Contact Information]

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:...

October 2022 Latest Program Case

October 2022 latest program case studies – Click the link below to enter: https://dajian168.net/10yueanli...

HTML5 Online Instant Messaging Chat Setup Tutorial

H5 Online IM Chat Instant Messaging Setup Tutorial Description Server Operating System: Linux CentOS 7 Install BaoTa (Bt Panel) BaoTa Environment: Nginx 1.18 + PHP 7.3 + MySQL 5.6 + MongoDB 4.0 Install PHP extensions: fileinfo, Swoole4, mongodb (three extensions) Remove all disabled functions in PHP BaoTa firewall: Open ports 1-65535 Add a website, upload files from the IM folder to the website root directory, set permissions to 777 Modify the website, set URL rewrite to thinkphp, website directory select /web/public Move index.html to the top of default documents Add a database and import data 3eym.com.sql.gz The MongoDB database needs to be uploaded via SSH commands First upload mongod.zip to a folder on the server, after uploading, extract the file, delete the zip file, then execute the following command via SSH: mongorestore -d im path (this path is the folder you extracted) Modify the database configuration information in webconfigdatabase.php Modify the database configuration information in socketappimcommoncontrollerMain.php Modify the IP on line 48 in webappimcommoncontrollerActionBegin1.php Next is compiling the frontend files, the frontend files are in view-h5 First download HBuilderX tool, search and download via Baidu, for how to use it, check the tool’s instructions. If it prompts you to install......

Install Vue environment and build/generate

1. Download and install Node.js Visit https://nodejs.org/zh-cn/ and download the latest LTS version of Node.js. The installation steps are simple, just keep clicking next. 2. Compile the project Open cmd in the project directory, as shown in the folder below. Enter npm install to install the required dependencies npm install Enter npm run dev to run the project npm run dev 3. Possible problems 1. Unable to access remote repository You can use the domestic Taobao mirror, enter the following commands: npm config set registry https://registry.npm.taobao.org npm config get registry // Verify if the setting is successful 2. Insufficient permissions to perform certain operations Open cmd as administrator 3. Unable to compile normally, missing certain components npm install –global –production windows-build-tools 4. Missing a specific dependency (using node-sass as example) npm install node-sass ************************************* npm run dev npm run serve Install development dependencies: npm install babel-plugin-import -D ********************************************* Build npm run build ********************************************* Vue executes npm run dev and reports an error: missing script:dev Check the package.json file in the project folder, there may be two situations: 1. There is a dev line in the script 2. There is no dev line in the script [Insert image description] Has dev......

bbank Exchange Setup Tutorial, Spot Trading Tutorial

Tools needed for exchange K-line charts ******************************************java******************************************** Linux system java – jdk1.8 JAVA installation https://www.cnblogs.com/wjup/p/11041274.html I have already installed openjdk version 1.8.0_312 To check the installed version, enter: java -version Add the path to vi /etc/profile file: JAVA_HOME=/usr/lib/jvm/jre-1.6.0-openjdk.x86_64 PATH=$PATH:$JAVA_HOME/bin CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar export JAVA_HOME CLASSPATH PATH Save and exit. In terminal, enter: . /etc/profile Java installation complete ******************************************elasticsearch installation******************** Elasticsearch installation: https://www.cnblogs.com/socketqiang/p/11363024.html First download: wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.6.0.tar.gz After download completes, enter: tar -zxvf elasticsearch-6.6.0.tar.gz After decompression, rename the folder to the installation directory: mv elasticsearch-6.6.0 elasticsearch Then copy to: /usr/local Go to the config folder in the es installation directory and modify the elasticsearch.yml file: #Configure es cluster name, default is elasticsearch, es will automatically discover es in the same network segment. If there are multiple clusters in the same network segment, this property can be used to distinguish different clusters. cluster.name: my-es #Node name node.name: node-1 #Set index data storage path path.data: /usr/local/elasticsearch/data #Set log storage path path.logs: /usr/local/elasticsearch/logs #Set the IP address for external services. Nodes in the same network segment will join this cluster. network.host: 0.0.0.0 #Set the external http port http.port: 9200 #Set the initial list of master nodes in the cluster. New nodes joining the cluster can be......

bat batch processing multiple lottery draws node js TianHeng lottery draw device

bat simultaneously processes multiple lottery draws, Node.js modifies kj.bat, start node data.js, start node c:\vhosts\kj\data.js, then open TianHeng lottery drawer...

htaccess force redirect to HTTPS

Turns on the URL rewriting engine. If the connection is not secure (HTTPS), permanently redirect (301) all requests to the same URL using HTTPS....

Macau Super Lotto Lottery Drawing Website Source Code Program Setup Download

2022.2.19 Update Log 1. Fix undrawn display issue 2. Latest high-imitation official website 3. Fix mobile display misalignment issue 4. News announcement list UI modification 5. Modify HKD display Macau Super Lotto Lottery Website Those who know, know Admin can input numbers in advance, automatically display when due PHP Environment PHP 7.1.9nts Nginx Framework TP5 FastAdmin Secondary Development Database Tool Navicat Premium MySQL Domain http://www.dajan168.com/ http://www.dajan168.com/adminxxx.php/index/login Admin Login Path (replace domain yourself) Admin Login Account Password admin admin123 vhosts.conf Configuration Root points to public directory server { listen 80; server_name www.dajan168.com; root D:/phpStudy/phpstudy_pro/WWW/dajan168/public ; location / { if (!-e $request_filename) { rewrite ^/(.*)$ /index.php?s=$1 last; } index index.php index.html error/index.html; error_page 400 /error/400.html; error_page 403 /error/403.html; error_page 404 /error/404.html; error_page 500 /error/500.html; error_page 501 /error/501.html; error_page 502 /error/502.html; error_page 503 /error/503.html; error_page 504 /error/504.html; error_page 505 /error/505.html; error_page 506 /error/506.html; error_page 507 /error/507.html; error_page 509 /error/509.html; error_page 510 /error/510.html; autoindex off; } location ~ \.php(.*)$ { fastcgi_pass 127.0.0.1:9001; fastcgi_index index.php; fastcgi_split_path_info ^((?U).+\.php)(/?.+)$; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info; include fastcgi_params; } }...

Micro Disk/Time Disk/Micro Transaction/Forex Disk/ThinkPHP5 Backdoor Disclosure and Solution

2022.1.30 Record: WeiPan/Time Disk/Micro Trading/Foreign Exchange Disk/ThinkPHP5 Backdoor Due to frequent attacks, it’s really annoying. After changing domain names and servers several times, I’ve summarized the following security issues. Let’s share this disgusting behavior. Hacker @Ma.. (not disclosed) deletes the database every time and asks for 300. Main exploitation methods: – ThinkPHP vulnerabilities – Scanning for IP addresses – Using upload vulnerabilities: generating 1.php in the root directory, connecting with caodao, then uploading webshell ****************************** Solutions and Fixes ****************************** – Block hacker IP addresses – Prevent server IP exposure – Prohibit IP addresses from accessing the website – Block all search engines from accessing any part of the website robots: User-agent: * Disallow: / – Modify website name to random English – Disable random registration – Fix vulnerability files – Modify backend login address – Backend has added security verification – Domain/adminxxxxxxx – Modify application/route.php...

2022 High Imitation WeChat – Full-featured IM Instant Messaging – Android Chat App – iOS Chat App – H5 Chat – Online Customer Service – Uniapp Version

2022 High Imitation WeChat – Full-Featured IM Instant Messaging – Android Chat App – Apple Chat App – H5 Chat – Online Customer Service – uniapp Version Source code is a virtual item. To avoid any misunderstanding, all features are based on the demo. Please consult customer service before placing your order. 2021.11.16 Fixed audio and video calls, added file transfer 2021.10.7 Added a main page button in the center of the bottom menu. The name and URL can be modified in the app source code Server Configuration: 4 cores, 8GB RAM, bandwidth 10Mbps or above Server System: Linux Centos 7.6 64-bit Features Introduction — Supports complete IM features including text, emojis, images, voice, audio/video calls, single chat, group chat, Explore, Moments, red packets, and more. Single Chat: Quickly enable private messaging with various communication capabilities such as images, voice, animated stickers, short videos, red packets, and audio/video calls. Message history supports roaming. Group Chat: Quickly enable group chat with flexible group member and permission management including single user mute, all members mute, group red packets, setting administrators, group transfer, kicking members, and more. Message history supports roaming for large groups and can be further enhanced. Multi-Device Support: Allows user......

2021 Micro Trading Perfect Operation Version – Cryptocurrency – Gold & Silver – Forex – Partial Loss Percentage (Not Full Loss) – Chinese Only

2021 Micro Trading Perfect Operation Version – Virtual Currency – Gold & Silver – Forex – Loss Percentage Not Full Loss – Chinese Only 2021 Micro Trading Perfect Operation Version Virtual Currency Gold & Silver Forex Perfect Control K-line Normal Voice Reminders USDT Payment Already Integrated Fixed Series of Bugs, etc. Loss Percentage Not Full Loss Chinese Only Frontend Interface: Backend Interface: Disclaimer: When using this system, you agree to the following by default: 1. Users must operate within national relevant laws and regulations and obtain authorization from relevant national departments. Prohibited for any illegal activities. 2. Usage is limited to testing, experiment, and research purposes only. Prohibited for any commercial operations. This site does not assume responsibility for any illegal activities of users during the usage process....