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
  #1312  
Old 10-03-2008, 02:45 PM
obmob obmob is offline
 
Join Date: Nov 2001
Posts: 580
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Oh, I checked the wiki, now i'm playing to make my link, should have read before, sorry u.u
Reply With Quote
  #1313  
Old 10-04-2008, 05:57 AM
AndrewD AndrewD is offline
 
Join Date: Jul 2002
Location: Scotland
Posts: 3,486
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Sandgrinder View Post
Ah, very nice.

One thing though, I made a test file > http://crinale.com/forums/local_link...id=10&linkid=5

But the image doesn't work, I made so you have to put in a image URL but it seem not to work, nor show the thumbnail in the category list.
Hi, have you enabled images by setting a thumbnail size using ldm/admin/settings/link_imagesize?
Reply With Quote
  #1314  
Old 10-04-2008, 06:09 AM
AndrewD AndrewD is offline
 
Join Date: Jul 2002
Location: Scotland
Posts: 3,486
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Simon Lloyd View Post
Is it possible to perhaps add a boolean something like in a php (don't know which one):
PHP Code:
if ($ldm_accep '0')
{
     
$ldm_denied true;
}
else
{
     
$ldm_denied false;

and then perhaps this in the links_agreement template (i guessed that one!):
PHP Code:
<if condition "$ldm_denied">
     <
span class="highlight">$vbphrase[ll_agreement_declined]</span>
</if> 
to show just the declined message, it doesn't matter about an ok button as in the message i have a link to take them back to forums.

It's easier than that.

Edit the links_agreement template, and find these lines:

Code:
	<if condition="$ldm_accept<0">
	<span class="highlight">$vbphrase[ll_agreement_declined]</span>
	</if>
	<br /><br />
	$vbphrase[ll_agreement]
and replace them with this:

Code:
	<if condition="$ldm_accept<0">
	<span class="highlight">$vbphrase[ll_agreement_declined]</span>
	<else />
	$vbphrase[ll_agreement]
	</if>
That way, the two phrases (ll_agreement and ll_agreement_declined) are kept totally separate.
Reply With Quote
  #1315  
Old 10-04-2008, 06:57 AM
Simon Lloyd's Avatar
Simon Lloyd Simon Lloyd is offline
 
Join Date: Aug 2008
Location: Manchester
Posts: 3,481
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Andrew, thanks for the support and time you spent on this but if i could just make one more request, is it possible not to show the radio buttons or the go button when decline has been selected, as i said the decline message has a link in it back to forums, i could of course add another link back to the ldm page and perhaps call the links "Back to forums" and "Try again".
Reply With Quote
  #1316  
Old 10-04-2008, 08:15 AM
AndrewD AndrewD is offline
 
Join Date: Jul 2002
Location: Scotland
Posts: 3,486
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Simon Lloyd View Post
Andrew, thanks for the support and time you spent on this but if i could just make one more request, is it possible not to show the radio buttons or the go button when decline has been selected, as i said the decline message has a link in it back to forums, i could of course add another link back to the ldm page and perhaps call the links "Back to forums" and "Try again".
Missed that part, sorry.

It's just a matter of moving the close of the <if> test a bit further down in the links_agreement template, for example

Code:
	<if condition="$ldm_accept<0">
	<span class="highlight">$vbphrase[ll_agreement_declined]</span>
	<else />
	$vbphrase[ll_agreement]
	<br /><br />
	<input type="radio" name="ldm_accept_form" value="1" /> $vbphrase[ll_accept]
	&nbsp;&nbsp;
	<input type="radio" name="ldm_accept_form" value="-1" checked="checked"/> $vbphrase[ll_decline]
	<br /><br />
	<input type="submit" class="button" name="submit" value="$vbphrase[ll_go]" />
	</if>
Reply With Quote
  #1317  
Old 10-04-2008, 09:36 AM
Simon Lloyd's Avatar
Simon Lloyd Simon Lloyd is offline
 
Join Date: Aug 2008
Location: Manchester
Posts: 3,481
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Andrew, briliant thanks!!!!!!
Reply With Quote
  #1318  
Old 10-04-2008, 11:22 AM
support-vb.com support-vb.com is offline
 
Join Date: May 2007
Posts: 6
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello ,
I have a problem when I try to import the product please look at this picture :

http://t7meel.cc//uploads/images/t7m...0fb22a3dbf.png


and I have this database error when I try to open the hack CP :

Code:
MySQL Error : Unknown column 'language.phrasegroup_local_links' in 'field list'
I have traid to import the product in 3 different forums but still same problem

please tell me how to resolve it

thank you
Reply With Quote
  #1319  
Old 10-04-2008, 12:08 PM
AndrewD AndrewD is offline
 
Join Date: Jul 2002
Location: Scotland
Posts: 3,486
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by support-vb.com View Post
Hello ,
I have a problem when I try to import the product please look at this picture :

http://t7meel.cc//uploads/images/t7m...0fb22a3dbf.png


and I have this database error when I try to open the hack CP :

Code:
MySQL Error : Unknown column 'language.phrasegroup_local_links' in 'field list'
I have tried to import the product in 3 different forums but still same problem

please tell me how to resolve it

thank you
It looks as if it is not completing the installation, but I have no idea why. If you send me a PM with site details and an admin account, I will take a look.
Reply With Quote
  #1320  
Old 10-04-2008, 12:27 PM
AndrewD AndrewD is offline
 
Join Date: Jul 2002
Location: Scotland
Posts: 3,486
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by vbboarder View Post
Great, I'm glad you like Shadowbox also Let me know if you want any help testing your new scripts.
Maybe you can try this. It patches LDM to use Shadowbox for the Jukebox and as an alternative lightbox for the LDM image magnifier.
Reply With Quote
  #1321  
Old 10-04-2008, 04:39 PM
vbboarder's Avatar
vbboarder vbboarder is offline
 
Join Date: Jun 2008
Location: Silicon Valley, CA
Posts: 417
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by AndrewD View Post
Maybe you can try this. It patches LDM to use Shadowbox for the Jukebox and as an alternative lightbox for the LDM image magnifier.
Wow, you are amazingly fast Andrew! Will test it out and report back. Thanks
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:02 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.10047 seconds
  • Memory Usage 2,332KB
  • 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
  • (5)bbcode_code
  • (2)bbcode_php
  • (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
  • (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