Support Board for PHP Support Board is a PHP script that helps you automate your customers’ communication with artificial intelligence-driven chatbots and a chat system integrated with the most-us...
Support Board for PHP Support Board is a PHP script that helps you automate your customers’ communication with artificial intelligence-driven chatbots and a chat system integrated with the most-us...
open file include "include/functions.php"
and search this function:
function sb_verification_cookie($code, $domain) {
Then, replace this function to this and writte a random purchase code:
function sb_verification_cookie($code, $domain) {
if ($code == 'auto') $code = sb_get_setting('en' . 'vato-purc' . 'hase-code');
if (empty($code)) return [false, ''];
$response = sb_get('https://board.support/synch/verification.php?verification&code=' . $code . '&domain=' . $domain);
if ($response == 'verification-success') {
}
return [true, password_hash('VGCKME' . 'NS', PASSWORD_DEFAULT)];
}