April 26Apr 26 On 4/25/2025 at 12:42 PM, antoniedik said:Disini ada yang pakai WhatsHam?Whatsapp CRM, dibawah salah satu screenshotnyaSaya pakai keduanya
April 28Apr 28 On 4/20/2025 at 7:54 AM, john6969 said:Saya om, persis seperti itu, akhirnya ane modif halaman scan qrnya pake API generate QRcode, tidak pakai websocketmau donk om, pm boleh om saya sudah muter2 gk dapat2 om
April 29Apr 29 On 6/16/2023 at 4:26 PM, Aku Ircham said:Aku bisa kok mas, japri aja mas, nanti saya ajarimauuu kak
April 29Apr 29 tidak bisa menampilkan barcode, mohon bantuannyauntuk server.js sudah run dengan port 3112
April 29Apr 29 On 4/25/2025 at 2:42 AM, antoniedik said:Disini ada yang pakai WhatsHam?Whatsapp CRM, dibawah salah satu screenshotnyaThis topic is about Whatsapp Gateway | Multi Device, to discuss WhatsHAM or WhatsCRM create another topic.
April 29Apr 29 On 4/9/2025 at 6:00 AM, RIFKI WANDI APRIYAN said:Halo gan, saya mau numpang tanya nih, ini kenapa ya nodenya gak bisa ke connect padahal system nodejs sudah runningX2
April 30Apr 30 On 4/20/2025 at 6:54 AM, john6969 said:Saya om, persis seperti itu, akhirnya ane modif halaman scan qrnya pake API generate QRcode, tidak pakai websocketSaya juga mau dong om
April 30Apr 30 On 7/10/2024 at 2:39 PM, Magd Almuntaser said:How To Run (Whatsapp Gateway Multi Device) Via SSL(For All Version)((Cpanel+Cloudflare)) In this guide, we will use SSL for cPanel and Cloudflare users only.1- we need to know that Cloudflare uses these ports exclusively:44320532083208720968443We will use port 8443 because it is not used by cPanel.2- let's assume the script is located at this domain:https:// magd.com/wsWe will go to Cloudflare and select SSL/TLS -> Overview, then choose Full. 3- we will edit the .env file located in the root directory of the script and change these fields to https:// and Port to 8443 APP_URL=https://magd .comWA_URL_SERVER=https://magd .com:8443PORT_NODE=84434- we will login to cPanel, go to SSL/TLS:and then Manage SSL sites:5- Now we will select Use Certificate for New Site:Two fields will appear. The first is Certificate: (CRT) which we will copy and save in a file named cert.pem. The other is Private Key (KEY) which we will save in a file named key.pem:6- We will upload the two files we saved, cert.pem and key.pem, to the root directory of the script. Then, we will edit the server.js file and replace this code from:/** * EXPRESS FOR ROUTING */const express = require("express"); const app = express(); const http = require("http"); const server = http.createServer(app);To: /** * EXPRESS FOR ROUTING */const serverOptions = { key: fs.readFileSync('key.pem'), cert: fs.readFileSync('cert.pem') } const express = require("express"); const app = express(); const https = require("https"); const server = https.createServer(serverOptions, app);7- And finally, the last step, is to edit the routes/web.php file and add this code at the end of the file: URL::forceScheme('https'); Now you can restart Node.js and enjoy using the script over HTTPSI will later post how to use SSL on the aaPanel control panel. Therefore, if anyone has a website using this panel, please send your site details (PM) so I can use them for the explanation, as I don't currently have aaPanel 🙂After 10 days trying, finally got qr working, from aapanel I copied the cert and key and followed the page 40 guide.RESUME:1- Follow YouTube mpwa aapanel guide2- Gen the cert using letsencrypt from aapanel3- mod server.js using page 40 guide4- use pm2 to run the server.js5- set server settings other/https_port/https host Edited April 30Apr 30 by juan collado
May 1May 1 5 hours ago, juan collado said:Setelah 10 hari mencoba, akhirnya qr berfungsi, dari panel saya salin sertifikat dan kunci lalu ikuti panduan di halaman 40.MELANJUTKAN:1- Ikuti panduan mpwa aapanel YouTube2- Buat sertifikat menggunakan letsencrypt dari aapanel3- mod server.js menggunakan panduan halaman 404- gunakan pm2 untuk menjalankan server.js5- atur pengaturan server other/https_port/https host5 hours ago, juan collado said:After 10 days trying, finally got qr working, from aapanel I copied the cert and key and followed the page 40 guide.RESUME:1- Follow YouTube mpwa aapanel guide2- Gen the cert using letsencrypt from aapanel3- mod server.js using page 40 guide4- use pm2 to run the server.js5- set server settings other/https_port/https hostare you using nginx? and is the server using reverse proxy? thanks
May 1May 1 9 minutes ago, wong said:are you using nginx? and is the server using reverse proxy? thanksYes, I'm using nginx, but I'm not using reverse proxy
May 1May 1 4 minutes ago, juan collado said:Yes, I'm using nginx, but I'm not using reverse proxyI am using localhost with ptp cloudflare. But the qr code does not appear when I access using a different network.
May 1May 1 7 minutes ago, Avina Kefin said:I am using localhost with ptp cloudflare. But the qr code does not appear when I access using a different network.try my instructions
May 1May 1 1 minute ago, juan collado said: 9 minutes ago, Avina Kefin said: I am using localhost with ptp cloudflare. But the qr code does not appear when I access using a different network.Oke sir I'll try , thanks 🙏🏻
May 1May 1 17 minutes ago, juan collado said:Yes, I'm using nginx, but I'm not using reverse proxyCan I have an example of an nginx server?
May 1May 1 3 minutes ago, wong said:Can I have an example of an nginx server?I'm using aapanel, the panel did all hard work
May 1May 1 Hi, just want to confirm is the code encoded for some controllers? like App\Http\Controllers\IndexController, App\Http\Controllers\LanguageController, etc..
May 2May 2 Author 21 hours ago, Dee Shan said:Hi, just want to confirm is the code encoded for some controllers? like App\Http\Controllers\IndexController, App\Http\Controllers\LanguageController, etc..Many files are unencrypted, and there are a few encrypted files that no one should modify. They are fixed code and won't prevent you from modifying the script to suit your needs. However, I encrypted these files to prevent tampering by some vendors.Therefore, there's no need to decrypt them. Update Whatsapp Gateway Multi Device (Magd Version) v8.0.0
May 2May 2 21 minutes ago, Magd Almuntaser said:Many files are unencrypted, and there are a few encrypted files that no one should modify. They are fixed code and won't prevent you from modifying the script to suit your needs. However, I encrypted these files to prevent tampering by some vendors.Therefore, there's no need to decrypt them.Should we resign about button an template auto reply?
May 2May 2 Author 9 minutes ago, juan collado said:Should we resign about button an template auto reply?Yes, you should..Because this is in WhatsApp hand, not us.. Update Whatsapp Gateway Multi Device (Magd Version) v8.0.0
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.