WHMCSServices Email Verification Pro 6.1.0 Nulled

Нет прав для скачивания
  • Автор темы Автор темы theresa
  • Дата начала Дата начала
Регистрация
11.09.2021
Сообщения
7 315
Реакции
2 904
Credits
$5 919
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


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}
 
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
 
Вложения
  • 2025-01-17_113259.webp
    81,4 КБ · Просмотры: 0
  • 2025-01-17_113224.webp
    200,3 КБ · Просмотры: 0
  • 2025-01-17_113250.webp
    74,6 КБ · Просмотры: 0
  • 2025-01-17_113326.webp
    26,2 КБ · Просмотры: 0
run sql first ,and then try to active it .
Код:
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;