Wa Gateway | Multi device BETA | MPWA MD

Wa Gateway | Multi device BETA | MPWA MD v8.0.0 ( Extended License )

No permission to download

Update v8.0.0 (18th Nov 2024)

  • Addition of reject call set, typing set, online status set on device
  • Addition of read, typing status, delay in autoreply
  • Adding Location, Stickers and Vcard Messages to Autoreply
  • edit autoreply
  • Add location, stickers, vcards and manage users in rest api
  • Typing features
  • support image in list or button
  • delete message history messages
  • webhook message format changes
  • multiple languages
  • generate ssl automatically (vps)
  • updater, to make it easier when there is an update in the future
  • and fix other minor errors.

Update v7.5.0 (6th Nov 2024)

Update Log :

  • Update main library to the latest version
  • Fix list and button message and add button types
  • webhook data addition
  • Typing features
  • support image in list or button
  • delete message history messages
  • webhook message format changes
  • and fix other minor errors.




Here are some folders and files that you can replace for updates.

  • app/Console/Commands/StartBlast.php (file)
  • app/Http/Controllers (folder)
  • app/Http/Request (folder)
  • app/Services (folder)
  • resources (folder)
  • public/assets/js/index.js (file)
  • config/app.php (file)
  • server/ ( folder)
  • package.json (file)
  • composer.json (file)
  • node_modules (or you can do npm install if your server supports terminal)


After everything is replaced, restart node js.


  • Like
Reactions: dothack
Update April 24, 2024

🔔 Note: Since the latest WhatsApp update by WhatsApp, message buttons and button templates are temporarily only supported on IOS devices and WhatsApp web.

Update Log :

  • Changes in type in media messages, there are only 4 types, namely image, document (all files), audio and video
  • Support caption/message on all media types
  • Fixed thumbnail in video messages
  • Fixed list message, support is back on all devices
  • Fix message preview & poll message

To update, to make it simpler, please replace the following folder, but before replacing, first deactivate the js node...

  • app/Http (folder)
  • app/Services (folder)
  • resources/views (folder)
  • public/images/video-cover.png (add)
  • config/lfm.php (file)
  • server/ ( folder)
  • package.json (file)
  • composer.json (file)
  • node_modules (or you can do npm install if your server supports terminal_

After everything has been replaced...restart node js...

Password
  • Like
Reactions: dothack and Sandy P

Change logs


🔔 Note: Since the latest WhatsApp update by WhatsApp, button, list and message messages are temporarily only supported on IOS devices and WhatsApp web.

* This update is a continuation update from version 6.0.0 as of March 7 2024, if you want to upgrade from version 6.0.0

🔄 Log Update:

+ Additions:

  • Connect device menggunakai pairing code
  • Api disconnect device
+- Update & fix

  • Campaign updates, you can create multiple campaigns without waiting for existing campaigns to be successful
  • Changes to rotate and blast queue in the campaign
  • Fix emoji
  • License validation changes (for regular users)
  • and fix other small bug


Additional external:

- Fix sejoli & woocommerce plugin
- Menambah plugin wordpress : elementor,contact form 7,2FA authentication



To update, to make it simpler, please replace the following folder, but before replacing, first deactivate the js node...

  • app/Http (folder)
  • resources/views (folder)
  • routes/web.php (file)
  • server/ (folder)
  • config/database.php (file)
  • database/migrations/* (folder)
  • server.js (file)
  • package.json (file)
  • composer.json (file)


and run the following two sql to change some columns to utf8mb4

SQL:
-- Convert 'autoreplies' table

ALTER TABLE autoreplies

CONVERT TO CHARACTER SET utf8mb4
COLLATE utf8mb4_unicode_ci;



-- Convert 'blasts' table

ALTER TABLE blasts

CONVERT TO CHARACTER SET utf8mb4
COLLATE utf8mb4_unicode_ci;



-- Convert 'campaigns' table

ALTER TABLE campaigns

CONVERT TO CHARACTER SET utf8mb4
COLLATE utf8mb4_unicode_ci;



-- Convert 'contacts' table

ALTER TABLE contacts

CONVERT TO CHARACTER SET utf8mb4
COLLATE utf8mb4_unicode_ci;



-- Convert 'devices' table

ALTER TABLE devices

CONVERT TO CHARACTER SET utf8mb4
COLLATE utf8mb4_unicode_ci;



-- Convert 'message_histories' table

ALTER TABLE message_histories

CONVERT TO CHARACTER SET utf8mb4
COLLATE utf8mb4_unicode_ci;



-- Convert 'migrations' table

ALTER TABLE migrations

CONVERT TO CHARACTER SET utf8mb4
COLLATE utf8mb4_unicode_ci;



-- Convert 'tags' table

ALTER TABLE tags

CONVERT TO CHARACTER SET utf8mb4
COLLATE utf8mb4_unicode_ci;



-- Convert 'users' table

ALTER TABLE users

CONVERT TO CHARACTER SET utf8mb4
COLLATE utf8mb4_unicode_ci;
Back
Top