Quote:
Originally Posted by snappy1313
Thanks for the updated version, but I am still having a problem extracting the files. With both 2.4.1 and 2.4.2, when I go to extract the files, I get a message saying "There is already a filename with the same name of the folder name you specified. Specify a different name." this pops up for the changelog file, channel icons, files, macosx, images, lang and product. They show in the "extracted" file with 0 kb in each.
Is this something I am doing wrong? I had no problem with 2.3.x
|
You must be having a problem with your zip software ...
Quote:
Originally Posted by Prism27
Firstly, I apologise if this has already been posted, I couldn't see it in the 56+ pages.
If you're having the DEPRECATED error being displayed problem, then there's a simple way to fix this. This does NOT fix the problem, all it does is tell php to stop reporting the problem.
Open the following files:
mgc_cb_evo.php
mgc_cb_evo_ajax.php
And change this line (Line 4):
error_reporting(E_ALL & ~E_NOTICE);
To this:
error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_USER_DEPRECATED);
This little code fix works fine. Demo
Cheers,
(php version: 5.3.0)
|
Oh that's interesting, what kind of error were you getting without the deprecated thing ?
Quote:
Originally Posted by utahraves
2.4.2 bug report
After upgrading, I am no longer able to validate the moderated threads I have - I receive error:
Fatal error: Call to a member function authorize_user_newthread_newpost_notif() on a non-object in /serverpath/includes/mgc_cb_evo/plugins.php on line 580
I do have new thread notifications enabled. Disabling them allowed me to validate the moderated posts. I'm not sure if this was the case with creating new threads either.
|
I did test the thread creation notification and it's working all good, I'll look into that issue.
Quote:
Originally Posted by OnTheSideDesign
Ok, great I see there was an update to the chatbox...It seems to be working better but im still getting this error...should i destroy the whole setup and lose all my chats?
I am getting this error 6 times above the header.
Warning: in_array() [function.in-array]: Wrong datatype for second argument in [path]/includes/mgc_cb_evo/class_misc.php on line 420
|
Here is a fix:
Edit includes/mgc_cb_evo/class_misc.php, search for :
PHP Code:
// 2 - Member group test
if (!$hasaccess && !empty($this->registry->userinfo['membergroupids']))
{
$found = 0;
$ugipds_array = explode(',', $this->registry->userinfo['membergroupids']);
foreach ($ugipds_array as $index => $ugpid)
{
if (in_array($ugpid,$command['usergroupids']))
{
$hasaccess = 1;
}
}
}
In this bit of code, replace:
PHP Code:
in_array($ugpid,$command['usergroupids'])
By:
PHP Code:
in_array($ugpid,$command['membergroupids'])
Quote:
Originally Posted by OnTheSideDesign
I am also still getting this error on the top of my vBadvanced page...
Fatal error: Call to undefined function can_view_mgc_cb_evo() in /home/diyproj/public_html/modules/mgc_cb_evo.php on line 3
|
Don't use the module it's not uptodate ...
Quote:
Originally Posted by adnedarn
I've installed 2.4.2 from 2.2.x and it is much slower for us. It takes a bit to load after the forum has loaded, then once you send your message it takes a moment for your chat to disappear from the input field, and then more moments for it to show up in the chatbox. I followed the "Upgrade from the version 1.0.0 up to 2.2.1 " instructions including the script at the end. Ideas?
|
Much slower ? You must be having a problem.
It might be slower at first load as you need to cache new js but that's all.