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

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

Category: Major Additions - Version: 3.6.x Rating:
Released: 06-18-2006 Last Update: 02-03-2008 Installs: 661
DB Changes Uses Plugins
Additional Files Translations  
No support by the author.

Version 2.3.0 of LDM is now the official release. This works with both VB3.7 and VB3.8. You can obtain it here

Version 2.2.8 remains available here, with limited support.

04.02.08: patch-cat.xml 'extra' uploaded - see first post for information

27.10.07: Version 2.2.8-post1 uploaded
French translation of product installer uploaded (other language translations are in the main release zip)

Remember to back up your current database tables before upgrading.

What this is and does

LDM is a general-purpose link and file manager, which handles user uploads and downloads in a flexible way. A range of media players is integrated into LDM and others are included as plugin extras. LDM is described below in the first post of this thread, which also contains a brief list of the currently-known bugs.

This release of LDM works correctly with all VB versions 3.6.x and recent versions of vbadvanced.

Documentation, screen shots, etc, are provided as a Wiki at http://www.eirma.org/wikis/index.php...nloads_Manager

Thank you to everyone who has tested, given suggestions, helped with the translations, etc.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
Благодарность от:
VIP Hawaii

Comments
  #192  
Old 08-16-2006, 04:05 AM
AndrewD AndrewD is offline
 
Join Date: Jul 2002
Location: Scotland
Posts: 3,486
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Slave
btw .. did you ever get anywhere with enabling the "forumbit_display" plugin to look into subcats for latest link info?
Not as far as I can see/recall.
Reply With Quote
  #193  
Old 08-16-2006, 08:56 AM
EasyTarget EasyTarget is offline
 
Join Date: Nov 2004
Posts: 660
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by AndrewD
Probably. What you want is a box across the top of a forum that displays thumbnail images from LDM? Give me a few more details.
ok, dunno what others want, but for me I envision a box where I can specify the thumbnail size, the category/categories that the images get pulled from, how many thumbnails to fit in a row, and whether it pulls the images randomly, from newly submitted images or both. I don't really want the details, just the picture.. maybe a mouseover will bring up the name of the picture or other info and clicking on it would bring them to the ldm details page with the image.

Maybe categories that are setup using the image layout could have a preview of the previous and next image below the current image as well.

I would use it on the forumhome but maybe others would find it useful for the vbadvanced as well.
Reply With Quote
  #194  
Old 08-16-2006, 06:35 PM
kylek kylek is offline
 
Join Date: Oct 2003
Location: British Columbia, Canada
Posts: 798
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Just started to get this error:

Database error in vBulletin 3.6.0:

Invalid SQL:

UPDATE local_linkslink
SET linkstatus=-1, linkcheck=
WHERE linkid='14'
LIMIT 1;

MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE linkid='14'
LIMIT 1' at line 3
Error Number : 1064
Date : Wednesday, August 16th 2006 @ 02:28:24 PM
Script : http://www.xxxxxxxxxxx.xxx/forum/loc...catid=7&page=1
Referrer : http://www.xxxxxxxxxxxxx.xx/forum/lo...inkid=4&page=1

Is this something to do with the 2 way auto create threads?
Reply With Quote
  #195  
Old 08-17-2006, 03:50 AM
Code Monkey's Avatar
Code Monkey Code Monkey is offline
 
Join Date: May 2004
Posts: 1,080
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

local_resize.php throws a big ugly url up in who's online. I got rid of it by adding this after define('THIS_SCRIPT', 'local_resize');

Code:
define('SKIP_SESSIONCREATE', 1);
define('SESSION_BYPASS', 1);
define('NOCOOKIES', 1);
define('DIE_QUIETLY', 1);
define('SKIP_DEFAULTDATASTORE', 1);
Plus it's more efficient as it keeps many vb functions from running when they are not needed.
Reply With Quote
  #196  
Old 08-17-2006, 03:55 AM
AndrewD AndrewD is offline
 
Join Date: Jul 2002
Location: Scotland
Posts: 3,486
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by kylek
Just started to get this error:

Database error in vBulletin 3.6.0:

Invalid SQL:

UPDATE local_linkslink
SET linkstatus=-1, linkcheck=
WHERE linkid='14'
LIMIT 1;

MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE linkid='14'
LIMIT 1' at line 3
Error Number : 1064
Date : Wednesday, August 16th 2006 @ 02:28:24 PM
Script : http://www.xxxxxxxxxxx.xxx/forum/loc...catid=7&page=1
Referrer : http://www.xxxxxxxxxxxxx.xx/forum/lo...inkid=4&page=1

Is this something to do with the 2 way auto create threads?
Thanks for reporting this. It's a coding bug which is hit in an unusual situation

I thik you'll find that one or more of your entries is associated with a forum that no longer exists. You can find out which by going to LDM/admin/categories then mass edit for each of your categories in turn.
Reply With Quote
  #197  
Old 08-17-2006, 03:58 AM
AndrewD AndrewD is offline
 
Join Date: Jul 2002
Location: Scotland
Posts: 3,486
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Code Monkey
local_resize.php throws a big ugly url up in who's online. I got rid of it by adding this after define('THIS_SCRIPT', 'local_resize');

Code:
define('SKIP_SESSIONCREATE', 1);
define('SESSION_BYPASS', 1);
define('NOCOOKIES', 1);
define('DIE_QUIETLY', 1);
define('SKIP_DEFAULTDATASTORE', 1);
Plus it's more efficient as it keeps many vb functions from running when they are not needed.
Thanks
Reply With Quote
  #198  
Old 08-17-2006, 06:19 AM
kylek kylek is offline
 
Join Date: Oct 2003
Location: British Columbia, Canada
Posts: 798
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by AndrewD
Thanks for reporting this. It's a coding bug which is hit in an unusual situation

I thik you'll find that one or more of your entries is associated with a forum that no longer exists. You can find out which by going to LDM/admin/categories then mass edit for each of your categories in turn.
Thank you!! I had changed some settings around and thought I had them right.
Reply With Quote
  #199  
Old 08-17-2006, 04:18 PM
AndrewD AndrewD is offline
 
Join Date: Jul 2002
Location: Scotland
Posts: 3,486
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

As an experiment, I've created a Wiki for the LDM user manual.

I'd appreciate some feedback on whether this is a useful way to keep the documentation up to date and gather ideas, bugs, problems, etc.

http://www.eirma.org/wikis/index.php...nloads_Manager

It isn't a replacement for vb.org, but it may be more convenient for some things.
Reply With Quote
  #200  
Old 08-17-2006, 04:24 PM
Code Monkey's Avatar
Code Monkey Code Monkey is offline
 
Join Date: May 2004
Posts: 1,080
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I notice that when I customize an option per category that you are adding an inline css value for background. If it's a dark skined site and the text is light this makes it hard to read. I would suggest a better method would be to just change the class to class="inlinemod" which is a default vb class and good styles will have the appropriate highlight colors.
Reply With Quote
  #201  
Old 08-17-2006, 05:04 PM
AndrewD AndrewD is offline
 
Join Date: Jul 2002
Location: Scotland
Posts: 3,486
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Code Monkey
I notice that when I customize an option per category that you are adding an inline css value for background. If it's a dark skined site and the text is light this makes it hard to read. I would suggest a better method would be to just change the class to class="inlinemod" which is a default vb class and good styles will have the appropriate highlight colors.
Unfortunately, I need two styles, customised and customised in parent category. I'll give this some thought - your basic point is correct.
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 01:34 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.09895 seconds
  • Memory Usage 2,324KB
  • 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
  • (2)bbcode_code
  • (6)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
  • (4)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (1)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (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
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • 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