MPWA Gateway | Multi Device Version | Latest : 8.x.x
Log & Cara update
Log & Cara update
Update 19 Maret 2024
🔔 Note: Semenjak update whatsapp oleh pihak whatsapp terbaru, pesan button, list, dan message sementara hanya mendukung di perangkat IOS dan whatsapp web.
* Update ini adalah update lanjutan dari versi 6.0.0 per 7 maret 2024 , jika ingin mengupgrade haris dari versi 6.0.0
🔄 Log Update:
+ Penambahan :
- Connect device menggunakai pairing code
- Api disconnect device
+- Update & fix
- Update campaign,bisa membuat multi campaign tanpa menunggu campaign yang ada success
- Perubahan rotate dan antrian blast di campaign
- Fix emoji
- perubahan validasi license (untuk yang menggunakan reguler)
- and fix other small bug
Tambahan external :
- Fix sejoli & woocommerce plugin
- Menambah plugin wordpress : elementor,contact form 7,2FA authentication
Untuk mengupdate,, agar lebih simple silahkan replace folder folder berikut, namun sebelum di replace,di nonaktifkan terlebih dahulu node js nya..
- 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)
dan jalankan dua sql berikut untuk mengubah beberapa column menjadi 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;