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

About templates, is it possible to add more linkbits?

I modified the short and the normal linkbit, but i would like to use your current short also.

Greetings
Reply With Quote
  #2433  
Old 10-03-2007, 05:49 PM
AndrewD AndrewD is offline
 
Join Date: Jul 2002
Location: Scotland
Posts: 3,486
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by obmob View Post
About templates, is it possible to add more linkbits?

I modified the short and the normal linkbit, but i would like to use your current short also.

Greetings
This is possible but requires changes to the code. It is something that I have intended to make easily available via the LDM/admin pages at some stage, but never quite finished.

Basically, you do the following:

- create a new template within your vbulletin/admincp, for example called links_mylinkbit
- edit includes/local_links_admininclude.php
- find a group of lines (around line 550) which look like this:

PHP Code:
require_admin_row($seq++, 'links_linkbit'serialize(array("name"=>"Modern""collapse"=>"links_linkbit_short""defcol"=>1"maxcol"=>1"altbit"=>0)), 'define_linkbit'1); 
- add a new line with slightly changed values, e.g.

PHP Code:
require_admin_row($seq++, 'links_mylinkbit'serialize(array("name"=>"My Linkbit""collapse"=>"links_linkbit_short""defcol"=>1"maxcol"=>1"altbit"=>0)), 'define_linkbit'1); 
- if you take a look at the comments in the code, you can probably work out what the other parameters do.

- re-install the LDM product installer.
- the new template will then be available in the same way as other LDM linkbits

OK?
Reply With Quote
  #2434  
Old 10-03-2007, 07:17 PM
yahoooh yahoooh is offline
 
Join Date: Oct 2002
Posts: 567
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

bug :
when synchronise category with folder and this folder contain subfolders , it will not add any entries from subfolders even i make the sync_depth = 2 or 3 or 100

i choose sync_populate_categories "no"

sync_populate_entries "yes"

it is only add entries from the folder but not subfolders under it
Reply With Quote
  #2435  
Old 10-03-2007, 07:33 PM
IrPr IrPr is offline
 
Join Date: Mar 2005
Posts: 351
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by obmob View Post
About templates, is it possible to add more linkbits?

I modified the short and the normal linkbit, but i would like to use your current short also.

Greetings
Or just this simple query:
[SQL]INSERT INTO `FORUM`.`LOCAL_linksadmin` (`settingname`, `setting`, `sequence`, `rowtype`, `rowtitle`, `canoverride`, `catid`) VALUES ('links_linkbit_movie', 'a:4:{s:4:"name";s:5:"Movie";s:6:"defcol";i:1;s:6: "maxcol";i:4;s:6:"subbit";s:15:"links_subcatbit";} ', 50011, 'define_linkbit', '', 1, -1);
[/SQL]

Where FORUM is your forum table and LOCAL_ is your LDM table prefix
This query adds Movie template_linkbit which points to links_linkbit_movie template,
If you want to change your template_linkbit name you have to change 5 ( exact before :"Movie" ) to your template_linkbit display name's length

Edit: You have to add linksbit_linkbit_movie template manually
Please BACKUP your linksadmin table before executing this query or test on your local/test forum
Reply With Quote
  #2436  
Old 10-03-2007, 10:39 PM
yahoooh yahoooh is offline
 
Join Date: Oct 2002
Posts: 567
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

also another bug :
duplicate entries when use manual synchronise , this occure sometimes !
Reply With Quote
  #2437  
Old 10-04-2007, 03:47 AM
AndrewD AndrewD is offline
 
Join Date: Jul 2002
Location: Scotland
Posts: 3,486
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by yahoooh View Post
bug :
when synchronise category with folder and this folder contain subfolders , it will not add any entries from subfolders even i make the sync_depth = 2 or 3 or 100

i choose sync_populate_categories "no"

sync_populate_entries "yes"

it is only add entries from the folder but not subfolders under it
I suppose this is a question of definition. It's doing what you told it to do. If sync_populate_categories is set to no, the synchronisation code resyncs the current directory/category but does not track through subdirectories/subcategories. If you have manually created synced subcategories (or created them automatically, then switch off sync_populate_categories), these are resynced when someone visits them.
Reply With Quote
  #2438  
Old 10-04-2007, 04:25 AM
AndrewD AndrewD is offline
 
Join Date: Jul 2002
Location: Scotland
Posts: 3,486
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by IrPr View Post
Or just this simple query:
[SQL]INSERT INTO `FORUM`.`LOCAL_linksadmin` (`settingname`, `setting`, `sequence`, `rowtype`, `rowtitle`, `canoverride`, `catid`) VALUES ('links_linkbit_movie', 'a:4:{s:4:"name";s:5:"Movie";s:6:"defcol";i:1;s:6: "maxcol";i:4;s:6:"subbit";s:15:"links_subcatbit";} ', 50011, 'define_linkbit', '', 1, -1);
[/SQL]

Where FORUM is your forum table and LOCAL_ is your LDM table prefix
This query adds Movie template_linkbit which points to links_linkbit_movie template,
If you want to change your template_linkbit name you have to change 5 ( exact before :"Movie" ) to your template_linkbit display name's length

Edit: You have to add linksbit_linkbit_movie template manually
Please BACKUP your linksadmin table before executing this query or test on your local/test forum
Be careful - patching the admin table will work but it's not guaranteed to continue to work following an upgrade.
Reply With Quote
  #2439  
Old 10-04-2007, 04:26 AM
AndrewD AndrewD is offline
 
Join Date: Jul 2002
Location: Scotland
Posts: 3,486
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by yahoooh View Post
also another bug :
duplicate entries when use manual synchronise , this occure sometimes !
I've never seen this. I'll be keen to see a reproducible case, if possible.
Reply With Quote
  #2440  
Old 10-04-2007, 12:43 PM
yahoooh yahoooh is offline
 
Join Date: Oct 2002
Posts: 567
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by AndrewD View Post
I suppose this is a question of definition. It's doing what you told it to do. If sync_populate_categories is set to no, the synchronisation code resyncs the current directory/category but does not track through subdirectories/subcategories. If you have manually created synced subcategories (or created them automatically, then switch off sync_populate_categories), these are resynced when someone visits them.
i want to explain more :

i have one category and i just need to enter all files that in a folder and about 100 subfolders in the same category , i did not need to make subcategory for each subfolder

so in this case it is not work

about duplicate content
when i wrote the folder as /folder/
it will not duplicate
but when i write /folder without training slash
it give me duplicate entries

also the template for description of the entries is not work to give automatic description for entries !


suggestion:
1.multiple templates for choose of them , for description of entries
2.specific template for specific category "show"
Reply With Quote
  #2441  
Old 10-04-2007, 01:36 PM
AndrewD AndrewD is offline
 
Join Date: Jul 2002
Location: Scotland
Posts: 3,486
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by yahoooh View Post
i want to explain more :

i have one category and i just need to enter all files that in a folder and about 100 subfolders in the same category , i did not need to make subcategory for each subfolder

so in this case it is not work

about duplicate content
when i wrote the folder as /folder/
it will not duplicate
but when i write /folder without training slash
it give me duplicate entries

also the template for description of the entries is not work to give automatic description for entries !


suggestion:
1.multiple templates for choose of them , for description of entries
2.specific template for specific category "show"
OK, these are extensions to the current functionality. I'll look into how they might be implemented and let you know.
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:54 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.05503 seconds
  • Memory Usage 2,342KB
  • 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_php
  • (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
  • (5)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