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
  #1032  
Old 01-10-2007, 02:13 PM
Ignicoccus Ignicoccus is offline
 
Join Date: Aug 2006
Posts: 42
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks for this great mod !

I installed it yesterday and it ist working like a charm, except ...

Users with special characters in their username (e.g. 'A&J') get a "Unknown username" message when submitting a new link. I use the german translation.

How do I solve this ?
Reply With Quote
  #1033  
Old 01-10-2007, 02:46 PM
AndrewD AndrewD is offline
 
Join Date: Jul 2002
Location: Scotland
Posts: 3,486
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Ignicoccus View Post
Thanks for this great mod !

I installed it yesterday and it ist working like a charm, except ...

Users with special characters in their username (e.g. 'A&J') get a "Unknown username" message when submitting a new link. I use the german translation.

How do I solve this ?
Thanks for reporting this - I'll check and give you a fix.

updated...

if you are comfortable editing the code, I think this should do the trick..

take a copy of includes/local_links_include.php and edit.
go to line 1670

Code:
function lookup_userids($usernames) {
	global $vbulletin;

	$ids = array();
	foreach ($usernames as $k=>$v) {
		$usernames[$k] = trim($vbulletin->db->escape_string($v));
		$ids[$k] = 0;
	}
change to

Code:
function lookup_userids($usernames) {
	global $vbulletin;

	$ids = array();
	foreach ($usernames as $k=>$v) {
		$usernames[$k] = trim($vbulletin->db->escape_string(htmlspecialchars_uni($v)));
		$ids[$k] = 0;
	}
Reply With Quote
  #1034  
Old 01-10-2007, 04:21 PM
obmob obmob is offline
 
Join Date: Nov 2001
Posts: 580
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

So much info @.@

HAHA, greetings everyone ^^,
Reply With Quote
  #1035  
Old 01-10-2007, 07:22 PM
WebmasterSimds WebmasterSimds is offline
 
Join Date: Sep 2006
Posts: 37
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Andrew,

I know your a busy person, but I have a question for you, when i went to upgrade to the last version, I didnt realize till someone pointed it out to me, that when someone makes a "download" that it is not posting it into the forum topics anymore.

I looked all over your site to find out how to make it all happen again, but for some reason when I do as it says in your site manual. it will not work correctly, I pulled out all other mod's because this one is the major I need. bt cant figure out what I may be doing wrong.

Can you help me in this. I did follow the direction on your site to try to make it work.

Thanks In Advance
Reply With Quote
  #1036  
Old 01-10-2007, 07:23 PM
Ignicoccus Ignicoccus is offline
 
Join Date: Aug 2006
Posts: 42
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by AndrewD View Post
Thanks for reporting this - I'll check and give you a fix.

updated...

if you are comfortable editing the code, I think this should do the trick..

take a copy of includes/local_links_include.php and edit.
go to line 1670

Code:
function lookup_userids($usernames) {
    global $vbulletin;

    $ids = array();
    foreach ($usernames as $k=>$v) {
        $usernames[$k] = trim($vbulletin->db->escape_string($v));
        $ids[$k] = 0;
    }
change to

Code:
function lookup_userids($usernames) {
    global $vbulletin;

    $ids = array();
    foreach ($usernames as $k=>$v) {
        $usernames[$k] = trim($vbulletin->db->escape_string(htmlspecialchars_uni($v)));
        $ids[$k] = 0;
    }
Hi Andrew,

thank you very much for your quick reply. Your code change did the trick, everything ist working fine now !!!!
Reply With Quote
  #1037  
Old 01-11-2007, 04:15 AM
AndrewD AndrewD is offline
 
Join Date: Jul 2002
Location: Scotland
Posts: 3,486
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by WebmasterSimds View Post
Andrew,

I know your a busy person, but I have a question for you, when i went to upgrade to the last version, I didnt realize till someone pointed it out to me, that when someone makes a "download" that it is not posting it into the forum topics anymore.

I looked all over your site to find out how to make it all happen again, but for some reason when I do as it says in your site manual. it will not work correctly, I pulled out all other mod's because this one is the major I need. bt cant figure out what I may be doing wrong.

Can you help me in this. I did follow the direction on your site to try to make it work.

Thanks In Advance
Am not clear which feature you are using. Are you talking about the autocreate-plugin.xml? You say "when someone makes a download, it's not posting into the forum topics" - the autocreate doesn't post a thread in this situation - it creates the thread, when someone adds a new entry (upload or link).

Happy to help get this working
Reply With Quote
  #1038  
Old 01-11-2007, 01:15 PM
WebmasterSimds WebmasterSimds is offline
 
Join Date: Sep 2006
Posts: 37
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Andrew,

Sorry about me not posting it fully last night, was tired as all get out and forgot to give the full info. ok

The autocreate-plugin.xml, autocreate-2way-plugin.xml, are not working corectly I have tried them both, followed your directions on our site, and somehow it just semd to stop working. one of my forums managers spoke to me about it. , this is how i noticed it.

Now if I am not mistaken, when a catagor is made, and you set the settings up for the catagory, in there you specify that it should go to a certian topic area. not permissions. I understand that part. but the other one. Again it was working perfectly till the last release of your LDM system, then for some reason it stopped.

I did go back into it, after the upgrade, and re loaded all the xml files again, let it overwrite it, because I know sometimes when you do a upgrade you have to re load the extras that were set when you set it up the first time. but it didnt correct this problem. I also thought that maybe with the actual forums upgrade itself to 3.6.4 that maybe someting may have gotten messed up as well. Unfortunatly I can not un install it then re install it because of the thousands of downloads that are in there already. is there someting that maybe I missed ? or didnt do a correct configuration somewhere? I am pretty good at coding. but to a point. so if there is someting that you wish for me to try I will be happy to try it to resolve this. I would not use any other mod for downloads because yours is the best there is for VB.

Thanks In Advance
Reply With Quote
  #1039  
Old 01-11-2007, 01:34 PM
AndrewD AndrewD is offline
 
Join Date: Jul 2002
Location: Scotland
Posts: 3,486
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by WebmasterSimds View Post
Andrew,

Sorry about me not posting it fully last night, was tired as all get out and forgot to give the full info. ok

The autocreate-plugin.xml, autocreate-2way-plugin.xml, are not working corectly I have tried them both, followed your directions on our site, and somehow it just semd to stop working. one of my forums managers spoke to me about it. , this is how i noticed it.

Now if I am not mistaken, when a catagor is made, and you set the settings up for the catagory, in there you specify that it should go to a certian topic area. not permissions. I understand that part. but the other one. Again it was working perfectly till the last release of your LDM system, then for some reason it stopped.

I did go back into it, after the upgrade, and re loaded all the xml files again, let it overwrite it, because I know sometimes when you do a upgrade you have to re load the extras that were set when you set it up the first time. but it didnt correct this problem. I also thought that maybe with the actual forums upgrade itself to 3.6.4 that maybe someting may have gotten messed up as well. Unfortunatly I can not un install it then re install it because of the thousands of downloads that are in there already. is there someting that maybe I missed ? or didnt do a correct configuration somewhere? I am pretty good at coding. but to a point. so if there is someting that you wish for me to try I will be happy to try it to resolve this. I would not use any other mod for downloads because yours is the best there is for VB.

Thanks In Advance
Hi. Basically, the autocreate plugin creates threads when *new* items are added to LDM, not when there's a download (which is what confused me in your first message). However, it *only* creates the thread if the new entry is given an *associated forum* on the *add entry* page. (This may happen by default if the category into which it's put has an associated forum.)

You should not need to uninstall/reinstall anything.

I'm very happy to take a look myself, if you want - just send me a PM with your site details and an admin account.
Reply With Quote
  #1040  
Old 01-11-2007, 04:28 PM
obmob obmob is offline
 
Join Date: Nov 2001
Posts: 580
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Awesome Andrew... i'll test it this week, thanks!
Reply With Quote
  #1041  
Old 01-11-2007, 08:06 PM
Demon fox Demon fox is offline
 
Join Date: Jan 2007
Posts: 41
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Excellent hack deserves a nomination for hack of the month.
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 02:09 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.10128 seconds
  • Memory Usage 2,335KB
  • 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
  • (4)bbcode_code
  • (4)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
  • (6)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