The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Links and Downloads Manager Details »» | |||||||||||||||||||||||||
What this is and does
LDM is a general-purpose tool for managing libraries of links and files, and handling uploads and downloads in a flexible way, while tracking and control user access. It has a range of integrated media players and a large library of 'plugin' extras. Installation and Usage Explained in the on-line Wiki, with a brief explanation in the file instructions.txt in the release zip. The recent revision history is given in the first post of this thread. Please use carefully and always backup your database before upgrading. Post reports of problems and suggestions for enhancements in this thread. 14.06.09 Version 2.3.0 is now the the officially-supported version. Works with 3.7 and vb 3.8. Please post comments in this thread 22.06.08 Version 2.2.9-post1 - This is the previous supported version. Works fine with all versions of vb 3.6 and vb 3.7. All standard features except profile integration and forum prefix selection work fine with vb 3.8. Show Your Support
|
Comments |
#892
|
|||
|
|||
Quote:
|
#893
|
|||
|
|||
If you make the change please let me know how I can edit my current installation for the new setting. It would particularly improve the 'lightbox' display of images.
|
#894
|
|||
|
|||
Quote:
edit includes/lcal_links_resize.php find, around line 145: Code:
$thumb_w = ($old_x >= $old_y ? (int) ($size) : (int) ($size*$old_x/$old_y)); if ($thumb_w>$old_x) { $thumb_w = $old_x; } $thumb_h = (int) ($thumb_w*($old_y/$old_x)); Code:
$thumb_h = $size; $thumb_w = (int) $size * $old_x/$old_y; Code:
$thumb_w = $size; $thumb_h = (int) $size * $old_y/$old_x; |
#895
|
|||
|
|||
This is such a great hack... thank you!
I am having a small problem of when I use it, I am being logged out and being asked to log back in, is there anything I can do about this, or something I am doing wrong to put this right! |
#896
|
|||
|
|||
Check how you've got your board url and forum defined on your vb/admincp/options. Most times when I hear this problem, it's because people are using www . sitename . com to get to the site but have defined it on the vbadmincp as sitename . com. The consequence is that the logon cookie disappears when you move between pages inside ldm.
|
#897
|
|||
|
|||
Great job Andrew, blinking marvellous! :up:
|
#898
|
||||
|
||||
If your site contains Quicktime media files, you may want to advise your users of this:
Quicktime media will not play or will play without the player's controls bar if the mime types are not set in the user's browser. This may occur for other media types also (Windows, Real, etc), but I have only verified this problem with Quicktime. Solution: The USER must edit their Quicktime's browser preferences: In Quicktime, go to Edit > Preferences > Quicktime Preferences > Browser > MIME Settings (located at bottom of Browser tab) > select the mime types that you want Quicktime to play. For best compatibility, I selected Quicktime movie (mov, qt), aac, mpeg-4, 3gpp, 3gpp2, qhtm. Click "OK", then "Apply", then "OK" again. Your users should now be able to play Quicktime media files |
#899
|
||||
|
||||
The default mime type for avi files (video/avi) does not work in Firefox. The correct mime type is: application/x-mplayer2
You can set that in VB in the control panel on the left side: select Attachments > Attachment Manager > Edit avi > then for mime type, type in: Content-type: application/x-mplayer2 That should do it, you can now play avi files in both IE and Firefox |
#900
|
||||
|
||||
Bug report: Real media will not play in IE browser. The solution requires 2 steps:
1. In VB control panel on the left side: select Attachments > Attachment Manager > Edit all file types that you want Real to play (ie: ra, rv, rm, etc.) > then for each file type, type in for mime type: Content-type: audio/x-pn-realaudio 2. Edit local_stream.php (in the forum root folder) so that the mime type is only changed for NON-IE browsers. Around line 143, FIND: Code:
foreach ($mimetype as $k=>$mime) { if (preg_match("/-real/", $mimetype[$k])) { $mimetype[$k] = "Content-type: audio/x-pn-realaudio-plugin"; } } Code:
// MODIFIED to change mime type ONLY IF browser is NOT Explorer (!is_browser('ie') does not work for IE7, but can check for other browsers)
require_once(DIR . '/includes/functions.php');
if (is_browser('firefox') || is_browser('safari')) {
foreach ($mimetype as $k=>$mime) {
if (preg_match("/-real/", $mimetype[$k])) {
$mimetype[$k] = "Content-type: audio/x-pn-realaudio-plugin";
}
}
}
|
#901
|
||||
|
||||
Bug report: JWPlayer can play mp4 & m4v files when viewing the entry itself, but the player does not show when viewing a category's list of entries. It should show the player for mp4 & m4v files because the same player shows for flv, swf, & mp3 files when viewing a category's list of entries. Andrew, I can help fix this bug if you can advise me which file/ where to edit?
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|