WHMCSServices Email Verification Pro

WHMCSServices Email Verification Pro 6.1.0 Nulled

No permission to download
Joined
Sep 11, 2021
Messages
6,520
Reaction score
2,870
Credits
$4,457
thanks to dear member @theresa submitted a new resource:

WHMCSServices Email Verification Pro - allow the customer to do anything, even without verifying their email address

View attachment 82086

Use coupon code​

This module has Two options you can choose from:

If you use the All Page Option:

When registering a new account (without placing an order), WHMCS would normally allow the customer to do anything, even without verifying their email address. With our module, after registration, they will be redirected to the page where they will have to verify their email.

If the customer...

Read more about this resource...
 
Module not work, get this error when try activate it, whmcs 8.10

Error: Call to a member function getMessage() on null in /home/billing/public_html/modules/addons/emailverification/emailverification.php:0
Stack trace:
#0 /home/billing/public_html/sadmin/configaddonmods.php(0): emailverification_activate()
#1 {main}
 
Module not work, get this error when try activate it, whmcs 8.10

Error: Call to a member function getMessage() on null in /home/billing/public_html/modules/addons/emailverification/emailverification.php:0
Stack trace:
#0 /home/billing/public_html/sadmin/configaddonmods.php(0): emailverification_activate()
#1 {main}
that is insert database table functions,make confirm your php ,my.ini execution time.tested again with php 8.1 like lagom theme config data .no issue about it
 
Attachments
  • 2025-01-17_113259.webp
    2025-01-17_113259.webp
    81.4 KB · Views: 0
  • 2025-01-17_113224.webp
    2025-01-17_113224.webp
    200.3 KB · Views: 0
  • 2025-01-17_113250.webp
    2025-01-17_113250.webp
    74.6 KB · Views: 0
  • 2025-01-17_113326.webp
    2025-01-17_113326.webp
    26.2 KB · Views: 0
run sql first ,and then try to active it .
Code:
CREATE TABLE `mod_emailverification_cemails` (
  `id` int(10) UNSIGNED NOT NULL,
  `userid` int(11) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
ALTER TABLE `mod_emailverification_cemails`
  ADD PRIMARY KEY (`id`);
  ALTER TABLE `mod_emailverification_cemails`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
COMMIT;
CREATE TABLE `ws_emailtwofa` (
  `id` int(10) UNSIGNED NOT NULL,
  `userid` int(10) UNSIGNED NOT NULL,
  `subuserid` int(11) NOT NULL DEFAULT '0',
  `type` text COLLATE utf8_unicode_ci,
  `status` text COLLATE utf8_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `ws_emailverification_bans` (
  `id` int(10) UNSIGNED NOT NULL,
  `userid` int(11) NOT NULL,
  `type` text COLLATE utf8_unicode_ci NOT NULL,
  `value` text COLLATE utf8_unicode_ci NOT NULL,
  `relid` text COLLATE utf8_unicode_ci,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `ws_emailverification_subs` (
  `id` int(10) UNSIGNED NOT NULL,
  `userid` int(11) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
ALTER TABLE `ws_emailtwofa`
  ADD PRIMARY KEY (`id`);
ALTER TABLE `ws_emailverification_bans`
  ADD PRIMARY KEY (`id`);
ALTER TABLE `ws_emailverification_subs`
  ADD PRIMARY KEY (`id`);
ALTER TABLE `ws_emailtwofa`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
ALTER TABLE `ws_emailverification_bans`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
ALTER TABLE `ws_emailverification_subs`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
COMMIT;
 
Top