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
  #1432  
Old 03-20-2007, 02:11 PM
GospelLabs GospelLabs is offline
 
Join Date: Mar 2007
Posts: 9
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Would anyone be willing to help me with setup for my forum http://www.ringerstuff.com/forums

I am new to vbulletin

Here is what I would like to do;
I have a forum called "Show off your mobile bling" that I would like users to be able to upload into a sub forum/category ringtones they made and backgrounds.
the backgrounds i would like to show someway simular to a gallary.
The ringtones, i would like them only to be able to upload (not download) but listen via a flash mp3 player (not wimpy but same as wimpy)
so when you go to the show off your mobil bling/ ringtones/ you will see a list of post and inside those post you will find the single ringtone that they can listen to via flash player.
Reply With Quote
  #1433  
Old 03-20-2007, 05:36 PM
josiespencer josiespencer is offline
 
Join Date: Dec 2005
Posts: 100
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by AndrewD View Post
Is it really searches that are the problem?

That GET request is the request to download a document. It gets very cpu intensive, mainly because of the way (I think) you have set up the entries in your database - you're using full urls to point to the documents. The php code needed to access files in this way is expensive to execute - this is covered at length in the on line manual - even if the documents are actually on the same physical computer.

By far the best/cheapest way to handle the documents while making sure that the source is kept private is as follows:

- Use local_file_root and local_file_root_prefix to store documents on the same server but outside the web site directory structure
- Use local file names in the entries, not urls.

This can make 100 - 1000 fold improvement in cpu use.

If it's really searches that are causing the problem, I'll see how to help.
Yes, please, Andrew. I think it would be great if the Search on Links and Downloads could be disabled based on user group.
Reply With Quote
  #1434  
Old 03-20-2007, 06:18 PM
eczantrik eczantrik is offline
 
Join Date: Feb 2007
Posts: 10
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by eczantrik View Post
i m using vbadvanced 2.2.1
i installed only and didn't do any code changes.

i attached my links_header but i didn't do any changes on it
other java's are working

is there a solution? thank you

when
i added "header" template
<script type="text/javascript" src="clientscript/ldm_global.js"></script>
it solved

thank you AndrewD
Reply With Quote
  #1435  
Old 03-20-2007, 07:50 PM
Stop Stop is offline
 
Join Date: Oct 2005
Location: Riyadh
Posts: 114
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have a strange case in my site. I installed the Version 2.2.7 and it worked fine. I made some categories and add a couple of entries and it all was going fine but out of a sudden, my site now always shows (The website is too busy to show the webpage) when I try to add an entry. My server is alright and there's nothing wrong with it. I still can upload files and photos and I've just installed vbarticles and every is going just prefect with the other add-ons.
Now, how can I solve this thing ? It's been 3 days and I still can't add any entry not even 4 or 5 words in an entry.
Reply With Quote
  #1436  
Old 03-20-2007, 07:59 PM
AndrewD AndrewD is offline
 
Join Date: Jul 2002
Location: Scotland
Posts: 3,486
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Stop View Post
I have a strange case in my site. I installed the Version 2.2.7 and it worked fine. I made some categories and add a couple of entries and it all was going fine but out of a sudden, my site now always shows (The website is too busy to show the webpage) when I try to add an entry. My server is alright and there's nothing wrong with it. I still can upload files and photos and I've just installed vbarticles and every is going just prefect with the other add-ons.
Now, how can I solve this thing ? It's been 3 days and I still can't add any entry not even 4 or 5 words in an entry.
I wonder... Second similar report. Do you have several hacks installed on your site?

Go to VB/admin/maintenance/phpinfo and take a look at the memory_limit setting.

Possibly, you've only got 8MB memory available to php - which is not enough.

If so, try creating the following plugin, hooked onto ldm_start

Code:
ini_set('memory_limit', 12000000);
Reply With Quote
  #1437  
Old 03-20-2007, 08:42 PM
Stop Stop is offline
 
Join Date: Oct 2005
Location: Riyadh
Posts: 114
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I checked on my phpinfo and I found nothing that has to do with memory_limit..
Reply With Quote
  #1438  
Old 03-20-2007, 10:42 PM
Slave's Avatar
Slave Slave is offline
 
Join Date: Nov 2001
Posts: 439
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by AndrewD View Post
I wonder... Second similar report. Do you have several hacks installed on your site?

Go to VB/admin/maintenance/phpinfo and take a look at the memory_limit setting.

Possibly, you've only got 8MB memory available to php - which is not enough.

If so, try creating the following plugin, hooked onto ldm_start

Code:
ini_set('memory_limit', 12000000);
I've managed to get my web host to change my setting to 12m and it's now working .. thanks for the quick pointer in the right direction
Reply With Quote
  #1439  
Old 03-20-2007, 10:44 PM
Gsmdenis Gsmdenis is offline
 
Join Date: Jan 2006
Location: Hongkong
Posts: 70
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

phpinfo have PHP Memory Limit
Reply With Quote
  #1440  
Old 03-21-2007, 03:51 AM
obmob obmob is offline
 
Join Date: Nov 2001
Posts: 580
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by GospelLabs View Post
Would anyone be willing to help me with setup for my forum http://www.ringerstuff.com/forums

I am new to vbulletin

Here is what I would like to do;
I have a forum called "Show off your mobile bling" that I would like users to be able to upload into a sub forum/category ringtones they made and backgrounds.
the backgrounds i would like to show someway simular to a gallary.
The ringtones, i would like them only to be able to upload (not download) but listen via a flash mp3 player (not wimpy but same as wimpy)
so when you go to the show off your mobil bling/ ringtones/ you will see a list of post and inside those post you will find the single ringtone that they can listen to via flash player.
Yeah, yeah, next step must be toward mobile content! ^^
Reply With Quote
  #1441  
Old 03-21-2007, 05:00 AM
AndrewD AndrewD is offline
 
Join Date: Jul 2002
Location: Scotland
Posts: 3,486
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Stop View Post
I checked on my phpinfo and I found nothing that has to do with memory_limit..
I'm happy to take a look at your site if you wish. I need an account with admin privs.
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:07 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.06216 seconds
  • Memory Usage 2,325KB
  • 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
  • (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