WHMCSServices Email Verification Pro

WHMCSServices Emailverifikationspro 6.1.0 Nulled

Keine Berechtigung zum Herunterladen
Beigetreten
Sep 11, 2021
Nachrichten
9,889
Reaktionswert
3,041
Credits
$14,349
danke dem freundlichen Mitglied @theresasubmitted einen neuen Ressourcen:WHMCSServices Email Verification Pro-erlaube dem Kunden alles, auch ohne die Email-Adresse zu verifizieren


Anhang 82086 einsehen

Verwende Couponcode​

Diese Module hat zwei Optionen, die Sie auswählen können:Wenn Sie die Alle Seiten Option verwenden:Wenn ein neuer Account registriert wird (ohne Bestellung zu tätigen), würde WHMCS normalerweise die Kunden erlauben, alles zu tun, auch ohne das Email-Adresse zu verifizieren. Mit unserem Modul werden sie danach an eine Seite weitergeleitet, wo sie ihre Email-Adresse verifizieren müssen.

Wenn der Kunde...
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
 
Anhänge
  • 2025-01-17_113259.webp
    2025-01-17_113259.webp
    81.4 KB · Ansichten: 0
  • 2025-01-17_113224.webp
    2025-01-17_113224.webp
    200.3 KB · Ansichten: 0
  • 2025-01-17_113250.webp
    2025-01-17_113250.webp
    74.6 KB · Ansichten: 0
  • 2025-01-17_113326.webp
    2025-01-17_113326.webp
    26.2 KB · Ansichten: 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;
 
Zurück
Oben