Arrow chat unable to chat with members in wordrpess multinetwork when guest can chat option is disabled
I have installed and integrated arrowchat with WordPress multinetwork v4.9 on localhost . I can chat as guest when Chat as Guest is checked. But when it's unchecked logged in users cannot chat.
Now there are two scenarios
WordPress Multinetwork:
1. we can Chat when Guest option is checked. But when it's unchecked logged in users cannot chat.
2. when Guest can chat with admin only option is enabled, then it shows 0 login users for chat (while users are login)
Single WordPress:
1. When Gest chat option is disabled, and users can chat with members, it works fine.
2. when users chat with admin only option is enable then it shows 0 members to chat (while users are login)
Thanks in advance.
wordpress
add a comment |
I have installed and integrated arrowchat with WordPress multinetwork v4.9 on localhost . I can chat as guest when Chat as Guest is checked. But when it's unchecked logged in users cannot chat.
Now there are two scenarios
WordPress Multinetwork:
1. we can Chat when Guest option is checked. But when it's unchecked logged in users cannot chat.
2. when Guest can chat with admin only option is enabled, then it shows 0 login users for chat (while users are login)
Single WordPress:
1. When Gest chat option is disabled, and users can chat with members, it works fine.
2. when users chat with admin only option is enable then it shows 0 members to chat (while users are login)
Thanks in advance.
wordpress
add a comment |
I have installed and integrated arrowchat with WordPress multinetwork v4.9 on localhost . I can chat as guest when Chat as Guest is checked. But when it's unchecked logged in users cannot chat.
Now there are two scenarios
WordPress Multinetwork:
1. we can Chat when Guest option is checked. But when it's unchecked logged in users cannot chat.
2. when Guest can chat with admin only option is enabled, then it shows 0 login users for chat (while users are login)
Single WordPress:
1. When Gest chat option is disabled, and users can chat with members, it works fine.
2. when users chat with admin only option is enable then it shows 0 members to chat (while users are login)
Thanks in advance.
wordpress
I have installed and integrated arrowchat with WordPress multinetwork v4.9 on localhost . I can chat as guest when Chat as Guest is checked. But when it's unchecked logged in users cannot chat.
Now there are two scenarios
WordPress Multinetwork:
1. we can Chat when Guest option is checked. But when it's unchecked logged in users cannot chat.
2. when Guest can chat with admin only option is enabled, then it shows 0 login users for chat (while users are login)
Single WordPress:
1. When Gest chat option is disabled, and users can chat with members, it works fine.
2. when users chat with admin only option is enable then it shows 0 members to chat (while users are login)
Thanks in advance.
wordpress
wordpress
edited Jan 2 at 4:48
Hemant Kumar
asked Dec 20 '18 at 12:24


Hemant KumarHemant Kumar
404317
404317
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I have figured it out, to fix this issue in wordpress multinetwork you have to make some little changes in the code.
- login to wordpress network and open cookeis (F12 or developer tools)
- you will see cookies "wordpress_sec_5455e9329ad280ebcc9b2f7841bb7af1" copy the cookie value 5455e9329ad280ebcc9b2f7841bb7af1.
- Now open the arrowchat/includes/integration.php and find "$cookiehash5 = md5("http://www." . $_SERVER['SERVER_NAME'] . "/");"
- Now change this to $cookiehash5 = "5455e9329ad280ebcc9b2f7841bb7af1";
Now logout and login agian, it will work.
Cheers :)
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53868654%2farrow-chat-unable-to-chat-with-members-in-wordrpess-multinetwork-when-guest-can%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I have figured it out, to fix this issue in wordpress multinetwork you have to make some little changes in the code.
- login to wordpress network and open cookeis (F12 or developer tools)
- you will see cookies "wordpress_sec_5455e9329ad280ebcc9b2f7841bb7af1" copy the cookie value 5455e9329ad280ebcc9b2f7841bb7af1.
- Now open the arrowchat/includes/integration.php and find "$cookiehash5 = md5("http://www." . $_SERVER['SERVER_NAME'] . "/");"
- Now change this to $cookiehash5 = "5455e9329ad280ebcc9b2f7841bb7af1";
Now logout and login agian, it will work.
Cheers :)
add a comment |
I have figured it out, to fix this issue in wordpress multinetwork you have to make some little changes in the code.
- login to wordpress network and open cookeis (F12 or developer tools)
- you will see cookies "wordpress_sec_5455e9329ad280ebcc9b2f7841bb7af1" copy the cookie value 5455e9329ad280ebcc9b2f7841bb7af1.
- Now open the arrowchat/includes/integration.php and find "$cookiehash5 = md5("http://www." . $_SERVER['SERVER_NAME'] . "/");"
- Now change this to $cookiehash5 = "5455e9329ad280ebcc9b2f7841bb7af1";
Now logout and login agian, it will work.
Cheers :)
add a comment |
I have figured it out, to fix this issue in wordpress multinetwork you have to make some little changes in the code.
- login to wordpress network and open cookeis (F12 or developer tools)
- you will see cookies "wordpress_sec_5455e9329ad280ebcc9b2f7841bb7af1" copy the cookie value 5455e9329ad280ebcc9b2f7841bb7af1.
- Now open the arrowchat/includes/integration.php and find "$cookiehash5 = md5("http://www." . $_SERVER['SERVER_NAME'] . "/");"
- Now change this to $cookiehash5 = "5455e9329ad280ebcc9b2f7841bb7af1";
Now logout and login agian, it will work.
Cheers :)
I have figured it out, to fix this issue in wordpress multinetwork you have to make some little changes in the code.
- login to wordpress network and open cookeis (F12 or developer tools)
- you will see cookies "wordpress_sec_5455e9329ad280ebcc9b2f7841bb7af1" copy the cookie value 5455e9329ad280ebcc9b2f7841bb7af1.
- Now open the arrowchat/includes/integration.php and find "$cookiehash5 = md5("http://www." . $_SERVER['SERVER_NAME'] . "/");"
- Now change this to $cookiehash5 = "5455e9329ad280ebcc9b2f7841bb7af1";
Now logout and login agian, it will work.
Cheers :)
answered Jan 7 at 5:54


Hemant KumarHemant Kumar
404317
404317
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53868654%2farrow-chat-unable-to-chat-with-members-in-wordrpess-multinetwork-when-guest-can%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown