Quote:
Originally Posted by ANGEL OF FIRE
There is a bug when search any Cyrillic word in Media 1.5. Search results in an error Could not find phrase 'media_search_string_too_short'.. As a matter of fact, the search in Media 1.5 does not work for Russian language users.
The forum works in UTF8.
|
ALL simple search is broken in 4.1.5. This has been fixed for the next version... You can fix it yourself for now by changing like 30 in "media_search.php" from:
Code:
if (vbstrlen($keyword) < 3)
to
Code:
if (vbstrlen($keywords) < 3)
Quote:
Originally Posted by AtomicAcidbath
Upgraded to v4.1.5, set "Can create playlists" yes in Usergroup Permissions, rebuilt bitfields with 'admincp/index.php?do=buildbitfields'...
Click on Playlists, and the only option is "Browse All Playlists". Don't see the option to create Playlists or Add To Playlist anywhere.
What's wrong?
|
There is a conflict with this modification and some of Valter's VSA modifications that will prevent navbar permissions from being handled correctly. I don't know exactly who's fault it is; but I'm pretty sure there are no errors in my code that would be causing this problem. There is a work around for this however.
Admin Control Panel > Plugins & Products > Plugin Manager > "media NAVTAB"
Find the code:
Code:
$perms = media_permissions();
Replace with:
Code:
$perms['rate'] = true;
$perms['comment'] = true;
$perms['submit'] = true;
$perms['playlist'] = true;
if (is_member_of($vbulletin->userinfo, explode(',','5,6')))
{
$perms['modtags'] = true;
$perms['modcategory'] = true;
$perms['modservice'] = true;
}
[/INDENT]
Quote:
Originally Posted by capy
I'm getting an error:
Fatal error: Class 'Imagick' not found in /home/fpvnovic/public_html/vbulletin/media/media_functions_builds.php on line 57
This happens when clicking "Submit media". my host says Imagemagic can be found in usr/bin. how should line 57 look like? I don't know how to fix this.. can someone please help? Thanks
|
This bug is "fixed" in the next version by simply disabling ImageMagick support in this mod. Lines 55-61 of "media_functions_build" are my attempts to get this mod working with Imagick. But I don't know how to use Imagick and I have yet to find a single person who can explain to me how it works.