*VBulletin3.8.2.
*CMPS 3.1.0
*MGC Chatbox Evo Version 2.3.2
*MGC Chatbox Evo for vBadvanced CMPS: 1.7.0
You guys try this.
The problem caused by path.
If your cmps_index.php is outside of the forum directory, try this.
You may need change /forums/ to /forum/ If your forum folder's name is 'forum'.
Don't use '$vboptions[bburl]' instead of /forums/.
1. PLUG-IN edit
Adminc >> Plugins & Products >> Plugin Manager >> Global variables of the chatbox
Put this:
Code:
$forumpath = $vbulletin->options[bburl];
before:
Code:
if (THIS_SCRIPT == 'adv_index' && !empty($forumpath))
{
$mgc_cb_evo_floc = $forumpath . '/';
}
else
{
$mgc_cb_evo_floc = '';
}
2. includes/functions_mgc_cb_evo.php
You can fix 'Loading...' by this edit.
Find All:
href="clientscript/
Replace All:
href="/forums/clientscript/
3. File edit for avatar: function_mgc_cb_evo.php
Find All:
$avatarurl = 'image.php?'
Replace All:
$avatarurl = '/forums/image.php?'
4. Template: mgc_cb_evo_editor
Find : (2 place)
<a href="mgc_cb_evo.php?$session[sessionurl]do=view_chatbox"
Replace :
<a href="/forums/mgc_cb_evo.php?$session[sessionurl]do=view_chatbox"
4. Template: mgc_cb_evo_chatbit_menu
For Profile link.
Find :
<a href="member.php?
Replace :
<a href="/forums/member.php?
|