Jump to content
Bicrypto v4.4.8 + All Plugins ×

Whatsapp Gateway | Multi Device v8.5.1


Magd Almuntaser

Recommended Posts

2 minutes ago, Unicode said:

Pake walazy. Aman no dc2 club, no idle, no logout. Cuman minim fitur.

wasender juga lumayan tp rada berat dan menu ribet

ooo, kendala DC DC gitu ya Om? Ane pakai ini sejak versi 7, dan baru 2 minggu lalu update. Baru jalan scriptnya dapat dari Om Gusik sama Om Dammah. Wkwkwk.
Tapi kalau DC sama idle engga pernah sih Om. Log out juga engga pernah. Sejauh ini aman sih. Mau nyobain walazy juga nanti.

Link to comment
Share on other sites

7 minutes ago, adhiete said:

ooo, kendala DC DC gitu ya Om? Ane pakai ini sejak versi 7, dan baru 2 minggu lalu update. Baru jalan scriptnya dapat dari Om Gusik sama Om Dammah. Wkwkwk.
Tapi kalau DC sama idle engga pernah sih Om. Log out juga engga pernah. Sejauh ini aman sih. Mau nyobain walazy juga nanti.

Ya semoga aman terus.

menurutku mpwa belum bisa diajak buat kerja, soalnya webku ngasih notif pembelian ke buyer aja kadang pas idle jadi gk masuk.

kalo pake wasender / walazy aman gk pernah idle.

Link to comment
Share on other sites

Node server not connaction and Qr alson not shoing

and othser screenshots attaced 

my server.js

'use strict';

const wa = require("./server/whatsapp");
const fs = require("fs");
const dbs = require('./server/database/index');
require("dotenv").config();
const lib = require("./server/lib");
global.log = lib.log;

/**
 * EXPRESS FOR ROUTING
 */
const express = require("express");
const app = express();

/**
 * HTTPS CONFIGURATION
 */
const https = require("https");
const privateKey = fs.readFileSync('mydomain/key.pem');
const certificate = fs.readFileSync('mydoinin/cert.pem');
const ca = fs.readFileSync('whatsapp.anmoll.in/csr.pem');

const credentials = {
  key: privateKey,
  cert: certificate,
  ca: ca
};

const server = https.createServer(credentials, app);


/**
 * SOCKET.IO
 */
const { Server } = require("socket.io");
const io = new Server(server, {
  pingInterval: 25000,
  pingTimeout: 10000,
});
const port = process.env.PORT_NODE;

app.use((req, res, next) => {
  res.set("Cache-Control", "no-store");
  req.io = io;
  next();
});

const bodyParser = require("body-parser");

app.use(
  bodyParser.urlencoded({
    extended: false,
    limit: "50mb",
    parameterLimit: 100000,
  })
);

app.use(bodyParser.json());
app.use(express.static("src/public"));
app.use(require("./server/router"));

io.on("connection", (socket) => {
  console.log("A user connected");

  socket.on("StartConnection", (data) => {
    wa.connectToWhatsApp(data, io);
  });

  socket.on("ConnectViaCode", (data) => {
    wa.connectToWhatsApp(data, io, true);
  });

  socket.on("LogoutDevice", (device) => {
    wa.deleteCredentials(device, io);
  });

  socket.on("disconnect", () => {
    console.log("A user disconnected");
  });
});

server.listen(port, () => {
    console.log(`Server running and listening on port: ${port}`);
});

dbs.db.query("SELECT * FROM devices WHERE status = 'Connected'", (err, results) => {
  if (err) {
    console.error('Error executing query:', err);
  }
  results.forEach(row => {
    const number = row.body;
    if (/^\d+$/.test(number)) {
      wa.connectToWhatsApp(number);
    }
  });
});
 

env.png

node.png

Screenshot 2024-10-21 190345.png

Link to comment
Share on other sites

Error ID:

d756904d

Details:

Web application could not be started by the Phusion Passenger(R) application server.

Please read the Passenger log file (search for the Error ID) to find the details of the error.

You can also get a detailed report to appear directly on this page, but for security reasons it is only provided if Phusion Passenger(R) is run with environment set to development and/or with the friendly error pages option set to on.

For more information about configuring environment and friendly error pages, see:

Link to comment
Share on other sites

On 9/28/2024 at 3:15 PM, Magd Almuntaser said:

What's new in version 9.0.0 so far:
- Added landing page (welcome page).
-
Added plans system.
-
Added cronjob page.
-
Added Multi-Keyword in autoreply.
-
Added send message with footer.
-
Fixed create campaign view.
-
Fixed connect method for shared hosting.
-
Fixed force using ipv4.
-
Fixed create & import phonebook.
-
Fixed connect via code & qrcode changed quick when linking.
-
Removed unused librares.
-
Re-order installtion page.

Remaining to finish this version:
Add payment gateways (paypal, stripe, virtual indonesian banks, qris, debit/credit card...etc).
-
Add ticket system.
-
Add user management.
-
Add (landing page) edit page.
-
Add language edit page.
=======
Ability to control the appearance of the landing page for people who use the script as a personal

Whe u published this 

Link to comment
Share on other sites

  • DW Members
2 hours ago, GAMING TADKA said:

Whe u published this 

This version will not be released soon, because there are many people who violate rights without permission..
I told everyone to use the script for free, but if you want to sell the version or redevelop it, you must take my permission before that.. But there are many who did not follow these conditions, so this version 9.0.0 will be delayed until the DMCA cases that I filed against them are completed.

To be more clear, there are two people who violated the rights by erasing all the rights and reselling the version under another name without taking my permission.

There are thousands of modifications that I made in version 9.0.0, which have completely met everyone's needs, with many features, and I have not announced these updates yet.

  • Like 3
  • Love 3
  • Care 4
  • Sad 1
Link to comment
Share on other sites

2 hours ago, Magd Almuntaser said:

This version will not be released soon, because there are many people who violate rights without permission..
I told everyone to use the script for free, but if you want to sell the version or redevelop it, you must take my permission before that.. But there are many who did not follow these conditions, so this version 9.0.0 will be delayed until the DMCA cases that I filed against them are completed.

To be more clear, there are two people who violated the rights by erasing all the rights and reselling the version under another name without taking my permission.

There are thousands of modifications that I made in version 9.0.0, which have completely met everyone's needs, with many features, and I have not announced these updates yet.

If this is exclusive I dare to pay it sir

  • Like 1
Link to comment
Share on other sites

5 hours ago, Magd Almuntaser said:

This version will not be released soon, because there are many people who violate rights without permission..
I told everyone to use the script for free, but if you want to sell the version or redevelop it, you must take my permission before that.. But there are many who did not follow these conditions, so this version 9.0.0 will be delayed until the DMCA cases that I filed against them are completed.

To be more clear, there are two people who violated the rights by erasing all the rights and reselling the version under another name without taking my permission.

There are thousands of modifications that I made in version 9.0.0, which have completely met everyone's needs, with many features, and I have not announced these updates yet.

before it throw to far, i want to ask permission to modified this script, but im sure not to sell your modifications, i modif it for my usage or personal usage, here i modified for AI reply method by my self and some other functions, the big think is i did not selling your effort and i dont want to, just customize base on my needs. hope you allow me to do that mate 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...