Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.7 > vBulletin 3.7 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Links and Downloads Manager Details »»
Links and Downloads Manager
Version: 2.3.0, by AndrewD AndrewD is offline
Developer Last Online: Apr 2010 Show Printable Version Email this Page

Category: Major Additions - Version: 3.7.0 Rating:
Released: 12-24-2007 Last Update: 06-13-2009 Installs: 576
DB Changes Uses Plugins
Re-useable Code Additional Files Translations  
No support by the author.

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

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #1112  
Old 09-14-2008, 05:29 PM
abdelghani68 abdelghani68 is offline
 
Join Date: Oct 2007
Location: France
Posts: 135
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

in the version 2.3.0 :

How to center the title :



How to do for the bcode isn't display in the previsualisation :



thanks
Reply With Quote
  #1113  
Old 09-14-2008, 05:51 PM
AndrewD AndrewD is offline
 
Join Date: Jul 2002
Location: Scotland
Posts: 3,486
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by sparklywater View Post
If the 'default_sort_order' is set to 'Title (ascending)' for a given category, and the entries in that category are an ascending list of numbers (1, 2, 3, 4, 5 ... 100 ), then LDM does not correctly list these entries in ascending order of numbers. Instead, it lists the numbers like this:

1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 2, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 3, 30, 31, 32, 33 ...
This is a well-known problem with computer sorts - they don't do what people consider right! It seems that one can fix the problem without any unwanted side effects by making a small change to the database query.

edit includes/local_links_include.php

find function ldm_get_sortsql and change the function's code as follows:

PHP Code:
function ldm_get_sortsql($sort$withlinkdorder=1) {
    
$linkdorder = ($withlinkdorder "linkdorder ASC, " "");
    if (
is_numeric($sort)) {
        
$sorder $linkdorder."  linkrecenthits DESC, linkname + 0 ASC, linkcatid ASC";
    }
    else {
        switch (
$sort) {
        case 
'r'$sorder $linkdorder."  IF(numrate>0,(totrate/numrate),numrate) DESC, linkname + 0 ASC, linkcatid ASC"; break;
        case 
'R'$sorder $linkdorder."  IF(numrate>0,(totrate/numrate),numrate) ASC,  linkname + 0 ASC, linkcatid ASC"; break;
        case 
'd'$sorder $linkdorder."  linkdate DESC, linkname + 0 ASC, linkcatid ASC"; break;
        case 
'D'$sorder $linkdorder."  linkdate ASC,  linkname + 0 ASC, linkcatid ASC"; break;
        case 
'h'$sorder $linkdorder."  linkhits DESC, linkname + 0 ASC, linkcatid ASC"; break;
        case 
'H'$sorder $linkdorder."  linkhits ASC,  linkname + 0 ASC, linkcatid ASC"; break;
        case 
'u'$sorder $linkdorder."  linkusername + 0 DESC,  linkname + 0 ASC, linkcatid ASC"; break;
        case 
'U'$sorder $linkdorder."  linkusername + 0 ASC,  linkname + 0 ASC, linkcatid ASC"; break;
        case 
'n'$sorder $linkdorder."  linkname + 0 DESC, linkcatid ASC"; break;
        case 
'N':
        default:  
$sorder $linkdorder."  linkname + 0 ASC,  linkcatid ASC"; break;
        }
    }

    (
$hook vBulletinHook::fetch_hook('ldm_sortsql_complete')) ? eval($hook) : false;

    return 
$sorder;

(the change is to add "+ 0" after every text field)
Reply With Quote
  #1114  
Old 09-14-2008, 06:07 PM
AndrewD AndrewD is offline
 
Join Date: Jul 2002
Location: Scotland
Posts: 3,486
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by abdelghani68 View Post
in the version 2.3.0 :

How to center the title :


How to do for the bcode isn't display in the previsualisation :


thanks
Not sure - both of these work fine for me.

are you sure you've got bbcodes enabled on the ldm admin/settings page?
Reply With Quote
  #1115  
Old 09-14-2008, 06:46 PM
sparklywater sparklywater is offline
 
Join Date: Jun 2008
Posts: 248
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by AndrewD View Post
This is a well-known problem with computer sorts - they don't do what people consider right! It seems that one can fix the problem without any unwanted side effects by making a small change to the database query.

edit includes/local_links_include.php

find function ldm_get_sortsql and change the function's code as follows:

---

(the change is to add "+ 0" after every text field)

Thanks, that's now sorted (pun is intended)
Reply With Quote
  #1116  
Old 09-14-2008, 07:37 PM
sparklywater sparklywater is offline
 
Join Date: Jun 2008
Posts: 248
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I've just checked my other category listing and the above change has messed up the alphabetical order of the list. I will be undoing those changes now.


Reply With Quote
  #1117  
Old 09-14-2008, 08:48 PM
TsirhCitna TsirhCitna is offline
 
Join Date: Jul 2005
Location: Kent, OH
Posts: 158
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The new media vba module drastically slows my page generation.

From: Page generated in 0.35296 seconds with 26 queries [Server Loads: 8.33 8.54 : 10.39]
To: Page generated in 6.83178 seconds with 35 queries [Server Loads: 8.72 8.50 : 10.01]

9 more queries to show 5 links?
Reply With Quote
  #1118  
Old 09-14-2008, 09:01 PM
MissKalunji's Avatar
MissKalunji MissKalunji is offline
 
Join Date: Aug 2003
Location: Canada
Posts: 2,845
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by AndrewD View Post
The most noticable change is to the 'inline comment and ratings'. These can be ajax-enabled so that quick remarks can be added without having to go to the advanced comment and rating page, and the most recent remarks can be seen on every linkbit page.
Uhm heads up the ajax comment isn't working when i press the comment it still loads the other page...
Reply With Quote
  #1119  
Old 09-14-2008, 09:52 PM
Saint_I_Am Saint_I_Am is offline
 
Join Date: Aug 2008
Posts: 81
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by AndrewD View Post
The flash sites plugin seems to work ok for me with youtube. Install it (nb, remember to upload the includes/local_links_flashsite.php file as well) and then create an entry with url that points to a youtube video (i used http://www.youtube.com/watch?v=dompotjTeIA). The hyperlink on the LDM entry title shows a "Play Me" popup when you hover over it. Clicking the link takes you to the jukebox and it plays ok.

What is the situation your end?
I have everything installed ok. When I click on the file a new window opens and it redirects to the YouTube page where the video is
Reply With Quote
  #1120  
Old 09-14-2008, 10:27 PM
yahoooh yahoooh is offline
 
Join Date: Oct 2002
Posts: 567
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

AndrewD
i have folder with more than 3000 bmp images
i want to put it in category with description begin like this:
HTML Code:
[img]https://vborg.vbsupport.ru/external/2008/09/1.bmp[/img]
and so on for other files
this will give the picture appearing in the description
i open new category , i run scan admin
and it insert all files but the error is not write description as i want

i use this in:links_scantext
PHP Code:
$file[name] [img]https://vborg.vbsupport.ru/[/img] 
but $file[name] not show any thing !
i test the default template and also it will not whow the filename
i need to show filename with extension also to make it work

plz help me
thanks
Reply With Quote
  #1121  
Old 09-15-2008, 12:27 AM
Kosovarap Kosovarap is offline
 
Join Date: Sep 2008
Posts: 4
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This is by far the best mod in my opinion. Great stuff.
Installed, looks/works great. I just need to learn a little about it.
So i got a few questions:

- I use the scan/server option, to add Songs for example, but it says:
Code:
Skipped (not in mimetype table): mp3 [14]
How do i add them into mimetype table?

I noticed there's Media Players to stream them directly, but i have no idea how to use them, insert them.
How do I use the Media players? Is there a command i should know?


I appreciate the work,
Thank you
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 11:49 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.09098 seconds
  • Memory Usage 2,338KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)bbcode_code
  • (1)bbcode_html
  • (2)bbcode_php
  • (5)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (5)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete