WHMCSServices Email Verification Pro

WHMCSServices 邮件验证专业 6.1.0 Nulled

没有下载权限
已加入
2021/09/11
消息
9,889
回应得分
3,041
Credits
$14,355
感谢亲爱的会员 @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 KB · 浏览: 0
  • 2025-01-17_113224.webp
    2025-01-17_113224.webp
    200.3 KB · 浏览: 0
  • 2025-01-17_113250.webp
    2025-01-17_113250.webp
    74.6 KB · 浏览: 0
  • 2025-01-17_113326.webp
    2025-01-17_113326.webp
    26.2 KB · 浏览: 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;
 
返回
顶部