Chat - Support Board - OpenAI Chatbot - WP

Chat - Support Board - OpenAI Chatbot - WP v3.7.9

No permission to download

tanierlyons

Well-known member
Staff member
Administrative
Moderator
May 24, 2018
75,058
111,714
120
Tomz updated Chat - Support Board - WordPress Chat Plugin with a new update entry:

Support Board v3.3.8

Download Support Board v3.3.8 - Chat And Help Desk Nulled Free
12/11/2021 | Support Board | v3.3.8

BugFixed bug related to conversation events and message breaklines.
BugFixed bug related to rich messages.
BugFixed bug related to scrolling on mobile devices.
BugFixed design bug related to the queue message.
New featureOption to open an article from an external link.
OptimizationOptimizations for mobile devices.

Read the rest of this update entry...
 

uzmanwebmaster

New member
Aug 21, 2022
0
0
0
Hello I will share the easiest way of one universe to bypass the activation code:

1. Create a new file with the extension activation.php and write code:

<?php
Echo "verification-success";
?>

2. Upload the activation.php file to your public_html hosting/Wordpress Hosting
sample link: www.yourwebsite.com/activation.php
3. Please change the code like the example:

go to .supportboard/include/functions.php : line 4649 (In last version code must be on 4726 line "corrected by farichello")

modified line
From
$response = sb_get('https://board.support/synch/verification.php?verification&code=' . $code . '&domain=' . $domain);
to
$response = sb_get('http://yourdomain.com/activation.php?verification&code=' . $code . '&domain=' . $domain);

4. refresh your wordpress page.

I often use this in various plugins with the response activation method.
i'm not a programmer or nulled expert i'm just a manual laborer in a factory sorry if maybe that way doesn't work for some people.

Revision v4
 
Last edited:

farichello

New member
Jan 31, 2019
11
3
3
Hello I will share the easiest way of one universe to bypass the activation code:

1. Create a new web page with the extension Activation.php like
www.yourwebsite.com/activation.php

write code:

<?php
Echo "verification-success";
?>

2. Upload the .php file to your public_html hosting

3. Please change the code like the example:
go to ./supportboard/supportboard/include/functions.php : line 4649
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_curl('https://www.yourwebsite.com/activation.php');
if ($response == 'verification-success') {
return [true, password_hash('VGCKME' . 'NS', PASSWORD_DEFAULT)];
}
return [false, sb_string_slug($response, 'string')];
}

4. refresh your wordpress page.

I often use this in various plugins with the response activation method.

i'm not a programmer or nulled expert i'm just a manual laborer in a factory sorry if maybe that way doesn't work for some people.

I Love babiato


In last version code must be on 4726 line:
Code:
$response = sb_get('http://yourdomain.com/activation.php?verification&code=' . $code . '&domain=' . $domain);
 
  • Like
Reactions: semvakpapa

tanierlyons

Well-known member
Staff member
Administrative
Moderator
May 24, 2018
75,058
111,714
120
Tomz updated Chat - Support Board - WordPress Chat Plugin with a new update entry:

Support Board v3.3.9

Download Support Board v3.3.9 - Chat And Help Desk Nulled Free
15/11/2021 | Support Board | v3.3.9

SecurityFix bug that was allowing a user to grant admin privileges via API.
BugFixed bug related to human takeover on messaging apps.
OptimizationFollow-up success message do longer appends the user email, use {user_email} instead.
OptimizationWordPress multisite users of all websites are now synchronized with Support Board.

Read the rest of this update entry...
 
  • Like
Reactions: EzFap

jamson

New member
Dec 1, 2020
22
8
3
First thank you for sharing :giggle:
For me it work ONLY in desktop (windows10) but in mobile plugin dose not work :(( plugin ask for activation code and i cant bypass it)
any help please ?:rolleyes:
 

UfU

New member
Jun 16, 2018
1
0
3
universalflowuniversity.com
Hello I will share the easiest way of one universe to bypass the activation code:

1. Create a new file with the extension activation.php and write code:

<?php
Echo "verification-success";
?>

2. Upload the activation.php file to your public_html hosting/Wordpress Hosting
sample link: www.yourwebsite.com/activation.php
3. Please change the code like the example:

go to .supportboard/include/functions.php : line 4649 (In last version code must be on 4726 line "corrected by farichello")

modified line
From
$response = sb_get('https://board.support/synch/verification.php?verification&code=' . $code . '&domain=' . $domain);
to
$response = sb_get('http://yourdomain.com/activation.php?verification&code=' . $code . '&domain=' . $domain);

4. refresh your wordpress page.

I often use this in various plugins with the response activation method.
i'm not a programmer or nulled expert i'm just a manual laborer in a factory sorry if maybe that way doesn't work for some people.

Revision v4
This really was a great help.

I'm wondering if this method could be applied to the addons for supportboard
 

r3turn_z3r0

Well-known member
Feb 3, 2020
141
175
50
Paradise
Hello I will share the easiest way of one universe to bypass the activation code:

1. Create a new file with the extension activation.php and write code:

<?php
Echo "verification-success";
?>

2. Upload the activation.php file to your public_html hosting/Wordpress Hosting
sample link: www.yourwebsite.com/activation.php
3. Please change the code like the example:

go to .supportboard/include/functions.php : line 4649 (In last version code must be on 4726 line "corrected by farichello")

modified line
From
$response = sb_get('https://board.support/synch/verification.php?verification&code=' . $code . '&domain=' . $domain);
to
$response = sb_get('http://yourdomain.com/activation.php?verification&code=' . $code . '&domain=' . $domain);

4. refresh your wordpress page.

I often use this in various plugins with the response activation method.
i'm not a programmer or nulled expert i'm just a manual laborer in a factory sorry if maybe that way doesn't work for some people.

Revision v4

Good work! However your method has a lot of extra steps. A more concise approach is:

1. Open supportboard/include/functions.php

2. Search for/find the function sb_verification_cookie, it should look something like this:
PHP:
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)];
    }
    return [false, sb_string_slug($response, 'string')];
}

3. Replace it with this:
PHP:
function sb_verification_cookie($code, $domain) {
    return [true, password_hash('VGCKME' . 'NS', PASSWORD_DEFAULT)];
}

ENJOY!

PS: Will keep this updated if future versions require it.
 

disetec21

Member
Jun 24, 2020
69
12
8
Good work! However your method has a lot of extra steps. A more concise approach is:

1. Open supportboard/include/functions.php

2. Search for/find the function sb_verification_cookie, it should look something like this:
PHP:
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)];
    }
    return [false, sb_string_slug($response, 'string')];
}

3. Replace it with this:
PHP:
function sb_verification_cookie($code, $domain) {
    return [true, password_hash('VGCKME' . 'NS', PASSWORD_DEFAULT)];
}

ENJOY!

PS: Will keep this updated if future versions require it.
I
Invalid email or password. I cant use it
 

ElDominante

Member
Feb 9, 2021
37
66
18
Supportboard 3.4.0 - Untouched

Changelog

  • BugFixed bug related to reports date filter.

  • BugFixed bug related to rating.

  • BugFixed bug related to online status and email notifications when agent is online.

  • BugFixed bug related to email piping.

  • BugFixed bug related to WordPress logout for admins.

  • BugFixed bug related to text formatting in shortcode messages.

  • BugFixed bug is related to agent notifications on conversation transfer to another agent.

  • BugFixed bug related to article rating for new users.

  • BugFixed bug related to queue.

  • BugFixed breaking bug on the pop-up message.

  • New feature online users notification and sound.

  • New feature option to force a single phone country code.

  • New feature option to disable manual email piping cron job.

  • New featureAdd new merge fields: {agent_name} and {agent_email}.

  • OptimizationMerge fields optimization.

  • OptimizationConversations and users opening by URL for unauthorized agents are now blocked.

  • OptimizationRemoved default mandatory email and phone follow-up messages on conversations from messaging apps. New shortcode parameter 'required-messaging-apps' to force them.

  • OptimizationSupport Board WordPress version now has an option to log out Support Board agents if they are not logged in WordPress.

  • OptimizationImproved translations.

  • OptimizationMerge field {user_name} is now compatible with follow up and subscribe messages.

  • ApiNew PHP API function 'sb_get_last_message()'.

  • ApiNew parameter 'user_id' for the PHP API function 'sb_push_notification()' and JS API AJAX function 'push-notificaiton'.
 

Attachments

  • supportboard 3.4.0.zip
    3.4 MB · Views: 20

tanierlyons

Well-known member
Staff member
Administrative
Moderator
May 24, 2018
75,058
111,714
120
Tomz updated Chat - Support Board - WordPress Chat Plugin with a new update entry:

Support Board v3.4.0 - Chat And Help Desk

Download Support Board v3.4.0 - Chat And Help Desk Nulled Free
20/12/2021 | Support Board | v3.4.0

BugFixed bug related to reports date filter.
BugFixed bug related to rating.
BugFixed bug related to online status and email notifications when agent is online.
BugFixed bug related to email piping.
BugFixed bug related to WordPress loggout for admins.
BugFixed bug related to text formatting in shortcode's messages.
BugFixed bug related to agent notifications on conversation transfer to...

Read the rest of this update entry...
 

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu