November 15Nov 15 8 hours ago, adit_a said:@digil digil it autoply message and for api it is no problem.@Magd Almuntaser Bro, untuk aplikasi ini "paling cocok" di panel apa??aapanel
November 15Nov 15 hi semua, belum ada kah fitur untuk campaign dengan variable yang kita tentukan, misal kode voucher, mengambil dari data yang kita import, berarti untuk data phonebook disisipkan variable juga (misal kode voucher) karena ada kebutuhan untuk campaign kirim kode voucher yang di tentukan customer, karena voucher tersebut nilai nya berbeda. terima kasih
November 15Nov 15 42 minutes ago, achelmidz said:hi semua,belum ada kah fitur untuk campaign dengan variable yang kita tentukan, misal kode voucher, mengambil dari data yang kita import, berarti untuk data phonebook disisipkan variable juga (misal kode voucher)karena ada kebutuhan untuk campaign kirim kode voucher yang di tentukan customer, karena voucher tersebut nilai nya berbeda.terima kasihPakai MPWA + Appsheet /n8n baru bisa bang
November 15Nov 15 14 minutes ago, IT The Explorer said:Pakai MPWA + Appsheet /n8n baru bisa bangsementara tak akalin sih blast via api, bikin db lagi untuk tampung data kode voucher, dan bikin script kecil buat kirim lewat api
November 15Nov 15 Min,aku install di cloudpanel untuk untuk autoreply type list ngk muncul & di Create New Template Message Type * list message saat di buat dan digunakan yang berhasil terkirim hanya Message ,add sectionnya tidak terkirim.
November 15Nov 15 Has anyone encountered a problem with sign-in email alerts not being sent? Users successfully receive password reset emails, but no emails are delivered when they sign in.
November 15Nov 15 11 hours ago, Azhar Azziz said:AgreeMas, pada autoreplay utk List Message juga ternyata ga bisa ditambah list buttonnya, apakah ada file utk replacenya?
November 15Nov 15 @achelmidz pakai hook, tinggal6 minutes ago, IT The Explorer said:Mas, pada autoreplay utk List Message juga ternyata ga bisa ditambah list buttonnya, apakah ada file utk replacenya?AdaScroll up aja. Formatnya sama kok.
November 15Nov 15 On 11/9/2025 at 9:46 AM, jjsons said:I think a lot of people are getting connection error. You can do the below steps and thank me later if it worked for you. I am not a professional developer and it took me almost 2 days to reach this point. This is a very simple 2 step process even a non-tech can do this; So, Let's start.Step 1Go to this dir ==> "node_modules/@onexgen/baileys/lib/Utils/validate-connection.d.ts" and replace the whole code of this file with below codeimport { proto } from '../../WAProto';import type { AuthenticationCreds, SignalCreds, SocketConfig } from '../Types';import { BinaryNode } from '../WABinary';export declare const generateLoginNode: (userJid: string, config: SocketConfig) => proto.ClientPayload;export declare const generateRegistrationNode: (creds: SignalCreds,config: SocketConfig) => proto.ClientPayload;export declare const configureSuccessfulPairing: (stanza: BinaryNode,opts: Pick<AuthenticationCreds, 'advSecretKey' | 'signedIdentityKey' | 'signalIdentities'>) => {creds: Partial<AuthenticationCreds>;reply: BinaryNode;};export declare const encodeSignedDeviceIdentity: (account: proto.IADVSignedDeviceIdentity,includeSignatureKey: boolean) => Uint8Array;Step 2:Go to this dir ==> "node_modules/@onexgen/baileys/lib/Utils/validate-connection.js" and replace the whole code of this file with below code"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.encodeSignedDeviceIdentity = exports.configureSuccessfulPairing = exports.generateRegistrationNode = exports.generateLoginNode = void 0;const boom_1 = require("@hapi/boom");const crypto_1 = require("crypto");const WAProto_1 = require("../../WAProto");const Defaults_1 = require("../Defaults");const WABinary_1 = require("../WABinary");const crypto_2 = require("./crypto");const generics_1 = require("./generics");const signal_1 = require("./signal");const getUserAgent = (config) => ({appVersion: {primary: config.version[0],secondary: config.version[1],tertiary: config.version[2],},platform: WAProto_1.proto.ClientPayload.UserAgent.Platform.WEB,releaseChannel: WAProto_1.proto.ClientPayload.UserAgent.ReleaseChannel.RELEASE,osVersion: '0.1',device: 'Desktop',osBuildNumber: '0.1',localeLanguageIso6391: 'en',mnc: '000',mcc: '000',localeCountryIso31661Alpha2: config.countryCode,});const PLATFORM_MAP = {'Mac OS': WAProto_1.proto.ClientPayload.WebInfo.WebSubPlatform.DARWIN,Windows: WAProto_1.proto.ClientPayload.WebInfo.WebSubPlatform.WIN32,};const getWebInfo = (config) => {let webSubPlatform = WAProto_1.proto.ClientPayload.WebInfo.WebSubPlatform.WEB_BROWSER;if (config.syncFullHistory && PLATFORM_MAP[config.browser[0]]) {webSubPlatform = PLATFORM_MAP[config.browser[0]];}return { webSubPlatform };};const getClientPayload = (config) => {const payload = {connectType: WAProto_1.proto.ClientPayload.ConnectType.WIFI_UNKNOWN,connectReason: WAProto_1.proto.ClientPayload.ConnectReason.USER_ACTIVATED,userAgent: getUserAgent(config),};payload.webInfo = getWebInfo(config);return payload;};const generateLoginNode = (userJid, config) => {const { user, device } = (0, WABinary_1.jidDecode)(userJid);const payload = {...getClientPayload(config),passive: false,pull: true,username: +user,device: device,};return WAProto_1.proto.ClientPayload.fromObject(payload);};exports.generateLoginNode = generateLoginNode;const getPlatformType = (platform) => {const platformType = platform.toUpperCase();return WAProto_1.proto.DeviceProps.PlatformType[platformType] || WAProto_1.proto.DeviceProps.PlatformType.DESKTOP;};const generateRegistrationNode = ({ registrationId, signedPreKey, signedIdentityKey }, config) => {const appVersionBuf = (0, crypto_1.createHash)('md5').update(config.version.join('.')).digest();const companion = {os: config.browser[0],platformType: getPlatformType(config.browser[1]),requireFullSync: config.syncFullHistory,historySyncConfig: {storageQuotaMb: 10240,inlineInitialPayloadInE2EeMsg: true,recentSyncDaysLimit: undefined,supportCallLogHistory: false,supportBotUserAgentChatHistory: true,supportCagReactionsAndPolls: true,supportBizHostedMsg: true,supportRecentSyncChunkMessageCountTuning: true,supportHostedGroupMsg: true,supportFbidBotChatHistory: true,supportAddOnHistorySyncMigration: undefined,supportMessageAssociation: true,},};const companionProto = WAProto_1.proto.DeviceProps.encode(companion).finish();const registerPayload = {...getClientPayload(config),passive: false,pull: false,devicePairingData: {buildHash: appVersionBuf,deviceProps: companionProto,eRegid: (0, generics_1.encodeBigEndian)(registrationId),eKeytype: Defaults_1.KEY_BUNDLE_TYPE,eIdent: signedIdentityKey.public,eSkeyId: (0, generics_1.encodeBigEndian)(signedPreKey.keyId, 3),eSkeyVal: signedPreKey.keyPair.public,eSkeySig: signedPreKey.signature,},};return WAProto_1.proto.ClientPayload.fromObject(registerPayload);};exports.generateRegistrationNode = generateRegistrationNode;const configureSuccessfulPairing = (stanza, { advSecretKey, signedIdentityKey, signalIdentities }) => {const msgId = stanza.attrs.id;const pairSuccessNode = (0, WABinary_1.getBinaryNodeChild)(stanza, 'pair-success');const deviceIdentityNode = (0, WABinary_1.getBinaryNodeChild)(pairSuccessNode, 'device-identity');const platformNode = (0, WABinary_1.getBinaryNodeChild)(pairSuccessNode, 'platform');const deviceNode = (0, WABinary_1.getBinaryNodeChild)(pairSuccessNode, 'device');const businessNode = (0, WABinary_1.getBinaryNodeChild)(pairSuccessNode, 'biz');if (!deviceIdentityNode || !deviceNode) {throw new boom_1.Boom('Missing device-identity or device in pair success node', { data: stanza });}const bizName = businessNode?.attrs.name;const jid = deviceNode.attrs.jid;const { details, hmac, accountType } = WAProto_1.proto.ADVSignedDeviceIdentityHMAC.decode(deviceIdentityNode.content);const isHostedAccount = accountType === WAProto_1.proto.ADVEncryptionType.HOSTED;const hmacPrefix = isHostedAccount ? Buffer.from([6, 5]) : Buffer.alloc(0);const advSign = (0, crypto_2.hmacSign)(Buffer.concat([hmacPrefix, details]), Buffer.from(advSecretKey, 'base64'));if (Buffer.compare(hmac, advSign) !== 0) {throw new boom_1.Boom('Invalid account signature');}const account = WAProto_1.proto.ADVSignedDeviceIdentity.decode(details);const { accountSignatureKey, accountSignature, details: deviceDetails } = account;const accountMsg = Buffer.concat([Buffer.from([6, 0]), deviceDetails, signedIdentityKey.public]);if (!crypto_2.Curve.verify(accountSignatureKey, accountMsg, accountSignature)) {throw new boom_1.Boom('Failed to verify account signature');}const devicePrefix = isHostedAccount ? Buffer.from([6, 6]) : Buffer.from([6, 1]);const deviceMsg = Buffer.concat([devicePrefix, deviceDetails, signedIdentityKey.public, accountSignatureKey]);account.deviceSignature = crypto_2.Curve.sign(signedIdentityKey.private, deviceMsg);const identity = (0, signal_1.createSignalIdentity)(jid, accountSignatureKey);const accountEnc = exports.encodeSignedDeviceIdentity(account, false);const deviceIdentity = WAProto_1.proto.ADVDeviceIdentity.decode(account.details);const reply = {tag: 'iq',attrs: { to: WABinary_1.S_WHATSAPP_NET, type: 'result', id: msgId },content: [{ tag: 'pair-device-sign', attrs: {}, content: [{ tag: 'device-identity', attrs: { 'key-index': deviceIdentity.keyIndex.toString() }, content: accountEnc }] }],};const authUpdate = {account,me: { id: jid, name: bizName },signalIdentities: [...(signalIdentities || []), identity],platform: platformNode?.attrs.name,};return { creds: authUpdate, reply };};exports.configureSuccessfulPairing = configureSuccessfulPairing;const encodeSignedDeviceIdentity = (account, includeSignatureKey) => {account = { ...account };if (!includeSignatureKey || !account.accountSignatureKey?.length) account.accountSignatureKey = null;return WAProto_1.proto.ADVSignedDeviceIdentity.encode(account).finish();};exports.encodeSignedDeviceIdentity = encodeSignedDeviceIdentity;thanks alot it worked :D
November 16Nov 16 14 hours ago, Azhar Azziz said:@achelmidz pakai hook, tinggalAdaScroll up aja. Formatnya sama kok.Sy cari² ga ketemu utk list messagenya mas, ga bisa add section list messagenya
November 16Nov 16 On 10/24/2025 at 5:12 PM, Magd Almuntaser said:Oh on List Message ..ok replace this file in this path:resources/themes/vuexy/views/ajax/messagesformlist.blade.php@IT The Explorer nih bro
November 16Nov 16 On 11/13/2025 at 11:57 AM, adit_a said:@sakidi nurkhalim port 2053 cloudflare di cloudpanel sudah on.@Shivendra Kr. Sahu cek di terminal sudah jalan online.Bg, untuk masalah yang pakai cloudflare sudah bisa kan bg?Kondisinya sekarang pakai cloudflare tunnel ya bg
November 16Nov 16 On 10/24/2025 at 5:00 AM, Magd Almuntaser said:Version 12.0.1 has been releasedWhat's new in version 12.0.1:- Fixed Templates Page.there a issue coming as whatsapp had flagged the mpwa Version 12.0.1 its not allowing to scan the qr code plz check once , i think we need to update it now
November 16Nov 16 27 minutes ago, Bulky Data said:there a issue coming as whatsapp had flagged the mpwa Version 12.0.1 its not allowing to scan the qr code plz check once , i think we need to update it nowread other comments... you will find a solution whatsapp is updating nothing is being flagged
November 16Nov 16 @Azhar Azziz 15 hours ago, Azhar Azziz said:@IT The Explorer nih broDo you have solution for Button Message. When we try to create button message it also does not show the button section and also give error while adding the auto reply.@Azhar Azziz 15 hours ago, Azhar Azziz said:@IT The Explorer nih broDo you have solution for Button Message. When we try to create button message it also does not show the button section and also give error while adding the auto reply.
November 17Nov 17 "I'm experiencing this issue on V12.0.1 installed on aapanel. This condition occurs with the error shown in the log I've attached, and it causes nodejs to always stop.What I'd like to ask, sir @Magd Almuntaser , is whether this is an error from the script or from aapanel itself. Could you please shed some light on this, sir? Thank you in advance for your willingness to answer. Or if any friends can help with this matter.📝 Log ErroragentRemove: [Function: onRemove], data: undefined, drain: [Function: ondrain] }, _eventsCount: 11, connecting: false, _hadError: true, _parent: null, _host: 'web.whatsapp.net', _closeAfterHandlingError: false, _readableState: ReadableState { highWaterMark: 65536, buffer: [], bufferIndex: 0, length: 0, pipes: [], awaitDrainWriters: null, [Symbol(kState)]: 59779574, [Symbol(kErroredValue)]: Error: getaddrinfo ENOTFOUND web.whatsapp.net at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:122:26) { errno: -3008, code: 'ENOTFOUND', syscall: 'getaddrinfo', hostname: 'web.whatsapp.net' } }, _writableState: WritableState { highWaterMark: 65536, length: 215, corked: 0, onwrite: [Function: bound onwrite], writelen: 215, bufferedIndex: 0, pendingcb: 1, [Symbol(kState)]: 118260214, [Symbol(kBufferedValue)]: null, [Symbol(kWriteCbValue)]: [Function: bound onFinish], [Symbol(kErroredValue)]: Error: getaddrinfo ENOTFOUND web.whatsapp.net at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:122:26) { errno: -3008, code: 'ENOTFOUND', syscall: 'getaddrinfo', hostname: 'web.whatsapp.net' } }, allowHalfOpen: false, _maxListeners: undefined, _sockname: null, _pendingData: 'GET / HTTP/1.1\r\n' + 'Accept: application/json, text/plain, */*\r\n' + 'Origin: https://web.whatsapp.com\r\n' + 'User-Agent: axios/1.12.2\r\n' + 'Accept-Encoding: gzip, compress, deflate, br\r\n' + 'Host: web.whatsapp.net\r\n' + 'Connection: keep-alive\r\n' + '\r\n', _pendingEncoding: 'latin1', server: undefined, _server: null, ssl: null, _requestCert: true, _rejectUnauthorized: true, timeout: 5000, parser: null, _httpMessage: [Circular *2], [Symbol(alpncallback)]: null, [Symbol(res)]: TLSWrap { _parent: TCP { reading: [Getter/Setter], onconnection: null, [Symbol(owner_symbol)]: [Circular *3], [Symbol(handle_onclose)]: [Function: done] }, _parentWrap: null, _secureContext: SecureContext { context: SecureContext {} }, reading: false, onkeylog: [Function: onkeylog], onhandshakestart: [Function: noop], onhandshakedone: [Function (anonymous)], onocspresponse: [Function: onocspresponse], onnewsession: [Function: onnewsessionclient], onerror: [Function: onerror], [Symbol(owner_symbol)]: [Circular *3] }, [Symbol(verified)]: false, [Symbol(pendingSession)]: null, [Symbol(async_id_symbol)]: 97162, [Symbol(kHandle)]: null, [Symbol(lastWriteQueueSize)]: 0, [Symbol(timeout)]: Timeout { _idleTimeout: -1, _idlePrev: null, _idleNext: null, _idleStart: 3675320, _onTimeout: null, _timerArgs: undefined, _repeat: null, _destroyed: true, [Symbol(refed)]: false, [Symbol(kHasPrimitive)]: false, [Symbol(asyncId)]: 97164, [Symbol(triggerId)]: 0, [Symbol(kAsyncContextFrame)]: undefined }, [Symbol(kBuffer)]: null, [Symbol(kBufferCb)]: null, [Symbol(kBufferGen)]: null, [Symbol(shapeMode)]: true, [Symbol(kCapture)]: false, [Symbol(kSetNoDelay)]: false, [Symbol(kSetKeepAlive)]: true, [Symbol(kSetKeepAliveInitialDelay)]: 60, [Symbol(kBytesRead)]: 0, [Symbol(kBytesWritten)]: 0, [Symbol(connect-options)]: { rejectUnauthorized: true, ciphers: 'TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA384:DHE-RSA-AES256-SHA384:ECDHE-RSA-AES256-SHA256:DHE-RSA-AES256-SHA256:HIGH:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!SRP:!CAMELLIA', checkServerIdentity: [Function: checkServerIdentity], minDHSize: 1024, maxRedirects: 21, maxBodyLength: Infinity, protocol: 'https:', path: null, method: 'GET', headers: [Object: null prototype] { Accept: 'application/json, text/plain, */*', Origin: 'https://web.whatsapp.com', 'User-Agent': 'axios/1.12.2', 'Accept-Encoding': 'gzip, compress, deflate, br' }, agents: { http: undefined, https: undefined }, auth: undefined, family: undefined, beforeRedirect: [Function: dispatchBeforeRedirect], beforeRedirects: { proxy: [Function: beforeRedirect] }, hostname: 'web.whatsapp.net', port: 443, agent: undefined, nativeProtocols: { 'http:': [Object], 'https:': [Object] }, pathname: '/', _defaultAgent: Agent { _events: [Object: null prototype], _eventsCount: 2, _maxListeners: undefined, defaultPort: 443, protocol: 'https:', options: [Object: null prototype], requests: [Object: null prototype] {}, sockets: [Object: null prototype], freeSockets: [Object: null prototype], keepAliveMsecs: 1000, keepAlive: true, maxSockets: Infinity, maxFreeSockets: 256, scheduling: 'lifo', maxTotalSockets: Infinity, totalSocketCount: 3, maxCachedSessions: 100, _sessionCache: [Object], [Symbol(shapeMode)]: false, [Symbol(kCapture)]: false }, host: 'web.whatsapp.net', keepAlive: true, scheduling: 'lifo', timeout: 5000, noDelay: true, servername: 'web.whatsapp.net', _agentKey: 'web.whatsapp.net:443:::::::::::::::::::::', encoding: null, keepAliveInitialDelay: 1000 } }, [Symbol(kOutHeaders)]: [Object: null prototype] { accept: [ 'Accept', 'application/json, text/plain, */*' ], origin: [ 'Origin', 'https://web.whatsapp.com' ], 'user-agent': [ 'User-Agent', 'axios/1.12.2' ], 'accept-encoding': [ 'Accept-Encoding', 'gzip, compress, deflate, br' ], host: [ 'Host', 'web.whatsapp.net' ] }, [Symbol(errored)]: null, [Symbol(kHighWaterMark)]: 65536, [Symbol(kRejectNonStandardBodyWrites)]: false, [Symbol(kUniqueHeaders)]: null }, _currentUrl: 'https://web.whatsapp.net/', [Symbol(shapeMode)]: true, [Symbol(kCapture)]: false }, [cause]: Error: getaddrinfo ENOTFOUND web.whatsapp.net at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:122:26) { errno: -3008, code: 'ENOTFOUND', syscall: 'getaddrinfo', hostname: 'web.whatsapp.net' } } Node.js v22.17.1 Edited November 17Nov 17 by Ilhamstore
November 17Nov 17 17 hours ago, jjsons said:@Azhar Azziz Do you have solution for Button Message. When we try to create button message it also does not show the button section and also give error while adding the auto reply.@Azhar Azziz Do you have solution for Button Message. When we try to create button message it also does not show the button section and also give error while adding the auto reply.On 10/26/2025 at 8:44 AM, Azhar Azziz said:replace this file in this path:resources/themes/vuexy/views/ajax/messagesformbutton.blade.php
November 17Nov 17 55 minutes ago, Azhar Azziz said: 18 hours ago, jjsons said: @Azhar Azziz On 10/26/2025 at 6:44 AM, Azhar Azziz said: replace this file in this path:resources/themes/vuexy/views/ajax/messagesIt worked, thanks for the help.
November 18Nov 18 3:06:24 PM - Requesting pairing code. 3:06:26 PM - Pairing code received. 3:06:26 PM - Rate limit exceeded.susah banget sekarang pairingnya dc mulu
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.