WHMCSServices Email Verification Pro

WHMCSServices Email Verifikation Pro 6.1.0 Nulled

Нет прав на скачивание
  • Создатель Темы Создатель Темы theresa
  • Дата начала Дата начала
Присоединился
Сент 11, 2021
Сообщения
9,889
Оценка реакций
3,041
Credits
$14,349
спасибо дружице участнике @theresaподан новый ресурс:WHMCSServices Email Verification Pro-допускайте покупателя к любым действиям даже без подтверждения адреса электронной почты


Просмотреть вложение 82086

Используйте купон код:​

Этот модуль имеет два варианта, которые вы можете выбрать из:
Если вы выберете вариант "Все страницы":

При регистрации нового аккаунта (без оформления заказа), WHMCS обычно позволяет клиенту делать что угодно, даже без подтверждения электронной почты. С нашим модулем после регистрации они будут перенаправлены на страницу, где им нужно будет подтвердить свою электронную почту.

Если клиент...
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
 
Вложения
  • 2025-01-17_113259.webp
    2025-01-17_113259.webp
    81.4 КБ · Просмотры: 0
  • 2025-01-17_113224.webp
    2025-01-17_113224.webp
    200.3 КБ · Просмотры: 0
  • 2025-01-17_113250.webp
    2025-01-17_113250.webp
    74.6 КБ · Просмотры: 0
  • 2025-01-17_113326.webp
    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;
 
Назад
Вверх