MPWA Gateway | Multi Device Version | Latest : 8.x.x
Log Update
Log Update
March 19, 2024 Update
🔔 Note: Since the latest WhatsApp update by WhatsApp, the temporary message button, list, and message support is only available on IOS devices and WhatsApp Web.
- This update is a continuation of version 6.0.0 as of March 7, 2024. If you wish to upgrade, it must be from version 6.0.0 onwards.
🔄 Update Log:
+ Additions:
- Connect devices using pairing codes
- API disconnect device
+- Updates & Fixes:
- Campaign update,
- allowing the creation of multi-campaigns without waiting for the success of existing campaigns
- Changes in rotation and blast queue in campaigns Emoji
- fix Changes in license validation (for regular users)
To update, for simplicity, please replace the following folders. However, before replacing, make sure to deactivate its Node.js.
app/Http (folder) resources/views (folder) routes/web.php (file) server/ (folder) config/database.php database/migrations/* (folder) package.json composer.json
And run the following two SQL commands to convert some columns to utf8mb4.
-- 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;