Jump to content
Bicrypto v4.4.2 + All Plugins ×

Whatsapp Gateway | Multi Device v8.5.1


Magd Almuntaser

Recommended Posts

Screenshot_20240827-192012.thumb.png.9891f03f08c6cb6de1be1d54a40b4359.png

 

After 12 hours still connected 😍

I use cronjob 4 and 5 minutes in both of my number 😁 Nodejs 16.

I will terminate cronjob and see, still connected or back to iddle 🥱

10 minutes ago, Fud said:

Report yg jualan 😂

Laporkan² yg jualan 😂 

Biarkan aja om. Mau jualan produk  bajakan sebuah pilihan HALAL dan HARAM dalam mencari rejeki.

 

Link to comment
Share on other sites

  • DW Members
5 minutes ago, Unicode said:

Server 8.

ini skrg sih pake cepatcloud dan hostbadak aman semua sih. Cuman ya harus ping ke nomor wa setiap 5 menit.

Yes temporarily, but in the next version I have changed everything .. and it will never be disconnect.. the previous system is no longer there ..
But there is sad news:
1- sendButton has been removed
2- sendTemplate has been removed

Because they no longer work with all libraries .. and WhatsApp company changes its encryption every time to allow only business numbers to work for whatsapp api
And even if it works in WhiskeySockets/Baileys, it stops for a period and we have to update the library every time and it originally has many problems ..

The new system (wppconnect) is really awesome.. It's a spanish team they are smart to make their library easy

  • Thanks 1
  • Care 1
Link to comment
Share on other sites

4 minutes ago, Gusik Prasetyo said:

Screenshot_20240827-192012.thumb.png.9891f03f08c6cb6de1be1d54a40b4359.png

 

After 12 hours still connected 😍

I use cronjob 4 and 5 minutes in both of my number 😁 Nodejs 16.

I will terminate cronjob and see, still connected or back to iddle 🥱

Biarkan aja om. Mau jualan produk  bajakan sebuah pilihan HALAL dan HARAM dalam mencari rejeki.

 

Iya sayangnya history pesan jadi cepat numpuk banyak 🤣.

1 minute ago, Magd Almuntaser said:

Yes temporarily, but in the next version I have changed everything .. and it will never be disconnect.. the previous system is no longer there ..
But there is sad news:
1- sendButton has been removed
2- sendTemplate has been removed

Because they no longer work with all libraries .. and WhatsApp company changes its encryption every time to allow only business numbers to work for whatsapp api
And even if it works in WhiskeySockets/Baileys, it stops for a period and we have to update the library every time and it originally has many problems ..

Yes master, we wait for it

Link to comment
Share on other sites

2 minutes ago, Magd Almuntaser said:

Yes temporarily, but in the next version I have changed everything .. and it will never be disconnect.. the previous system is no longer there ..
But there is sad news:
1- sendButton has been removed
2- sendTemplate has been removed

Because they no longer work with all libraries .. and WhatsApp company changes its encryption every time to allow only business numbers to work for whatsapp api
And even if it works in WhiskeySockets/Baileys, it stops for a period and we have to update the library every time and it originally has many problems ..

The new system (wppconnect) is really awesome.. It's a spanish team they are smart to make their library easy

Yes sir, we  are waiting for this. Thanks in advance.

Just now, Unicode said:

Iya sayangnya history pesan jadi cepat numpuk banyak 🤣.

Yes master, we wait for it

Its ok mas. Yang penting selalu connect 😋

Link to comment
Share on other sites

3 minutes ago, Enno The Explorer said:

Saya setiap 1 menit lagi om..😂

Nonstop..sampe ampun2 node.jsnya 😆

Sepertinya bisa dicoba pake api key info user.

kan tidak meninggalkan jejak ya? Tapi apa api info user juga menggunakan node js?

Link to comment
Share on other sites

18 minutes ago, Magd Almuntaser said:

Damn sendPollMessage not working in wppconnect
I'm tired of these libraries, each one is better than the other in some things and lacks other features.. I will try to find another library or find any solutions 🤦‍♂️

tuan, apakah api user info dan device info juga menggunakan node js untuk bekerja?

jika iya bisa digunakan alternatif ping node js selain kirim pesan setiap 5 menit.

 

http://domain.com/info-device?api_key=1234567890&number=6281222xxxxx

 

Edited by Unicode
Link to comment
Share on other sites

  • DW Members
7 minutes ago, Unicode said:

tuan, apakah api user info juga menggunakan node js untuk bekerja?

jika iya bisa digunakan alternatif ping node js selain kirim pesan setiap 5 menit.

The user info does not use nodejs.

But there are many ways you can do it without sending a message every 5 minutes ..
You can restart nodejs every 10 minutes for example via pm2
or you can reconnect every 10 minutes from the server.js file
or you can send a random message to port 3100 and the socket will be activated
or or or .. There are many solutions but I do not want these solutions or cornjob because they are not practical ..

I want the user to use the script easily without consuming many commands or consuming resources from the server .. This is my goal for the script to be the best WhatsApp message sending script in the world.

  • Like 1
Link to comment
Share on other sites

11 minutes ago, Magd Almuntaser said:

The user info does not use nodejs.

But there are many ways you can do it without sending a message every 5 minutes ..
You can restart nodejs every 10 minutes for example via pm2
or you can reconnect every 10 minutes from the server.js file
or you can send a random message to port 3100 and the socket will be activated
or or or .. There are many solutions but I do not want these solutions because they are not practical ..

I want the user to use the script easily without consuming many commands or consuming resources from the server .. This is my goal for the script to be the best WhatsApp message sending script in the world.

yes @Upal also suggest me for using port 3100 for sending request. but my shared hosting not have custom port opened. 

i am forget what is website for scanning port? @Magd Almuntaser 

Edited by Unicode
Link to comment
Share on other sites

  • DW Members
10 minutes ago, Unicode said:

yes @Upal also suggest me for using port 3100 for sending request. but my shared hosting not have custom port opened. 

 

Nooo .. @Upal use only empty page It doesn't do anything.
Port 3100 is the same as port 80, You should use the internal application itself and target the socket not create an empty file.

The socket uses the (ws) or (wss) protocol.. meaning the link is ws://
not http://

If you use http you are targeting an empty page inside the open port..
If you use ws you are targeting the socket itself inside the open port..

I don't want to give you these solutions because they are not practical.. but you can use a cornjob like this:

curl ws://yoursite:3100/socket.io/?EIO=4&transport=websocket >/dev/null 2>&1
OR
wget ws://yoursite:3100/socket.io/?EIO=4&transport=websocket >/dev/null 2>&1

OR for who use (SSL)
curl wss://yoursite:3100/socket.io/?EIO=4&transport=websocket >/dev/null 2>&1
OR
wget wss://yoursite:3100/socket.io/?EIO=4&transport=websocket >/dev/null 2>&1

This is how the socket is targeted, but my brother, I do not want to give you such solutions. It is not practical and I do not want it to be in this script. I want an internal solution from the script.

  • Like 1
Link to comment
Share on other sites

1 hour ago, Magd Almuntaser said:

Nooo .. @Upal use only empty page It doesn't do anything.
Port 3100 is the same as port 80, You should use the internal application itself and target the socket not create an empty file.

The socket uses the (ws) or (wss) protocol.. meaning the link is ws://
not http://

If you use http you are targeting an empty page inside the open port..
If you use ws you are targeting the socket itself inside the open port..

I don't want to give you these solutions because they are not practical.. but you can use a cornjob like this:

curl ws://yoursite:3100/socket.io/?EIO=4&transport=websocket >/dev/null 2>&1
OR
wget ws://yoursite:3100/socket.io/?EIO=4&transport=websocket >/dev/null 2>&1

OR for who use (SSL)
curl wss://yoursite:3100/socket.io/?EIO=4&transport=websocket >/dev/null 2>&1
OR
wget wss://yoursite:3100/socket.io/?EIO=4&transport=websocket >/dev/null 2>&1

This is how the socket is targeted, but my brother, I do not want to give you such solutions. It is not practical and I do not want it to be in this script. I want an internal solution from the script.

Saya menggunakan Debian 12 di PC , aapanel sudah terpasang dengan baik.

Wa gateway sudah bisa jalan, hanya saja ketika saya membuat nodejs. Maka muncul eror seperti ini tuan. Apakah anda bisa memberi saya solusi.

IMG-20240827-WA0025.thumb.jpg.5dc2a98015cde6e040e228f048e4e05b.jpg

Link to comment
Share on other sites

1 minute ago, Gusik Prasetyo said:

Goodbye aren. Thanks for giving me a chance to feel wonderful feeling 😂🤣😂🤣

I try move on cepat cloud based on @Unicode recommend. 

Hehe aku malah rada bosen pake cpanel.

ini malah iseng2 nyoba hostbadak pake directadmin ternyata lumayan nyaman juga 😁. Lumayan murah meriah juga om.

cuman sedikit berbeda untuk settingan cronjob tp sebenarnya sama saja

Link to comment
Share on other sites

10 minutes ago, Avina Kefin said:

Saya menggunakan Debian 12 di PC , aapanel sudah terpasang dengan baik.

Wa gateway sudah bisa jalan, hanya saja ketika saya membuat nodejs. Maka muncul eror seperti ini tuan. Apakah anda bisa memberi saya solusi.

IMG-20240827-WA0025.thumb.jpg.5dc2a98015cde6e040e228f048e4e05b.jpg

masalah izin laravel ini
buat aja 775 folder storage
kurang lebih seperti
chmod -R 775 storage
chown -R www-data:www-data storage

 

  • Care 1
Link to comment
Share on other sites

1 minute ago, Ade Prastia said:

masalah izin laravel ini
buat aja 775 folder storage
kurang lebih seperti
chmod -R 775 storage
chown -R www-data:www-data storage

 

Baik tuan akan saya gasken , apakah perlu diarahkan ke wwwroot ? Atau kopas saja di terminalnya ? Sebab ini base lokal tuan

Edited by Avina Kefin
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.

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