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
  #172  
Old 08-15-2006, 07:06 AM
Slave's Avatar
Slave Slave is offline
 
Join Date: Nov 2001
Posts: 439
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by AndrewD
I think you should put the variable $linkcatname in the template links_vbalinks

I'd prefer not to add vba parameters in the LDM admin, but I'm happy to modify the lmd_hot and ldm_new modules and links_vbalinks template to make the display of template name an option which is controlled by a switch in these modules
Yeah .. that would be cool
Reply With Quote
  #173  
Old 08-15-2006, 07:09 AM
AndrewD AndrewD is offline
 
Join Date: Jul 2002
Location: Scotland
Posts: 3,486
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Slave
Problem ..

I've just moved over to using a Mac (lovely lovely machine) .. and I've found that in both the Safari and Opera browsers the "Control Settings" and "User Group Permissions" tabs in the category edit screen don't work ..

Ahh .. just tried it in IE on a WinXP box and the same thing happens (or doesn't )
Sure? I've just tried it and it seems ok. What happens (or doesn't)?
Reply With Quote
  #174  
Old 08-15-2006, 07:13 AM
Slave's Avatar
Slave Slave is offline
 
Join Date: Nov 2001
Posts: 439
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by AndrewD
Sure? I've just tried it and it seems ok. What happens (or doesn't)?
In IE I get an "Error on page" .. in Safari and Opera nothing happens

Hmm .. shall I send you the admin account for you to look?
Reply With Quote
  #175  
Old 08-15-2006, 07:20 AM
AndrewD AndrewD is offline
 
Join Date: Jul 2002
Location: Scotland
Posts: 3,486
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Slave
In IE I get an "Error on page" .. in Safari and Opera nothing happens

Hmm .. shall I send you the admin account for you to look?
Please...
Reply With Quote
  #176  
Old 08-15-2006, 07:23 AM
Slave's Avatar
Slave Slave is offline
 
Join Date: Nov 2001
Posts: 439
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Done
Reply With Quote
  #177  
Old 08-15-2006, 07:42 AM
AndrewD AndrewD is offline
 
Join Date: Jul 2002
Location: Scotland
Posts: 3,486
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Slave
Done
I think you've patched the templates in order to fit everything into your column display. The links_header template now declares some javascript that control (e.g.) the tabs on the category edit form. You need to include this in whatever template you're using as header:

LDM version 2.2.5:

Code:
<script language="JavaScript" type="text/javascript">
<!--

function ldmshow(object, k, n)
{
	for (var i=1; i <= n; i++)
	{
		obj = fetch_object(object + i);
		if (i==k)
		{
			obj.style.display = '';
		}
		else
		{
			obj.style.display = 'none';
		}
	}
}

function ldmtextLimit(field, maxlen)
{
	if (field.value.length > maxlen)
	{
		field.value = field.value.substring(0, maxlen);
	}
}

function ldmtextDOI(field)
{
	field.value = field.value.replace(/[^a-zA-Z0-9-_]+/g, "");
}

function ldmpopup(URL)
{
	window.open(URL,'player','width=$links_defaults[musicbox_standalone_width],height=$links_defaults[musicbox_standalone_height],toolbar=no,personalbar=no,location=no,directories=no,statusbar=no,menubar=no,status=no,resizable=yes,left=60,screenX=60,top=100,screenY=100');
}

if (location.search.substring(1)=="focuswin")
{
	window.focus();
}

// -->
</script>
LDM version 2.2.6 and higher:

Code:
<script type="text/javascript" src="clientscript/ldm_global.js"></script>
Reply With Quote
  #178  
Old 08-15-2006, 07:49 AM
Slave's Avatar
Slave Slave is offline
 
Join Date: Nov 2001
Posts: 439
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hmm .. I take it that's new? .. as it worked before.

I'm using the suggested way to wrap vBa columns around other areas of the forums (which can be found in the vBa manual)

I believe this uses the normal vB header .. so I'll try adding the above code into that and see what happens. I'll let you know how it goes

Thanks for taking a look
Reply With Quote
  #179  
Old 08-15-2006, 07:55 AM
Slave's Avatar
Slave Slave is offline
 
Join Date: Nov 2001
Posts: 439
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yep .. adding it to the normal vB header template has sorted it ..

It might be worth adding something to the manual about that as I'm sure I'm not the only one to use that vBa "trick" ..
Reply With Quote
  #180  
Old 08-15-2006, 08:15 AM
AndrewD AndrewD is offline
 
Join Date: Jul 2002
Location: Scotland
Posts: 3,486
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Slave
Yep .. adding it to the normal vB header template has sorted it ..

It might be worth adding something to the manual about that as I'm sure I'm not the only one to use that vBa "trick" ..
Done. I'm not very happy with the manual. Grendel suggested changing it to a wiki a few months back. I might look into that, then everyone could help keep the information up to date.
Reply With Quote
  #181  
Old 08-15-2006, 08:28 AM
EasyTarget EasyTarget is offline
 
Join Date: Nov 2004
Posts: 660
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

sorry for the delay, just barely got around to updating to the new ldm script.
Quote:
Originally Posted by AndrewD
Yes

The same code is used to build both the cmps ldm_new and ldm_hot modules, as well as the patch-forumhome-newlinks extra. This code sets up a variable $linkimgshow which can be used to display the thumbnail. By default, this variable is not displayed - all you need to do is edit the links_vbalinks template and refer to $linkimgshow.
I switched $linkhits with $linkimgshow and it shows images in the what's going on box now. However I was wondering if you could help me to display it something like this? Attachment 32754
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:08 AM.


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.05184 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
  • (7)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