Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Attachment Gallery Details »»
Attachment Gallery
Version: 1.6, by bananalive bananalive is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Category: Mini Mods - Version: 4.x.x Rating:
Released: 06-08-2011 Last Update: 06-27-2011 Installs: 117
DB Changes Uses Plugins Template Edits
Translations Is in Beta Stage  
No support by the author.

Page showing attachments from across your forum.

Additional Features
  • Allows users to rate each attachment.
  • Follows usergroup/forum attachment permissions already setup in your forum
Sort by
  • Most recent first/ Oldest first
  • Attachment rating (highest/lowest first)

Search by
  • Attachment type(Image, Document, Audio, Video, Other)
  • User name
  • Forum
  • File name

Integration
  • Link to page in Community Drop Down menu of Navbar
http://www.yoursite.com/forums/attachmentgallery.php

Installation:
  1. Upload attachmentgallery.php to Forum Directory
  2. Import product-attachmentgallery.xml in admincp

Support this Modification
  • Click 'Marked as Installed'
  • Rate it 'Excellent'
  • Consider a donation

Download Now

File Type: zip vb_attachmentgallery_v1.4.zip (7.9 KB, 305 views)
File Type: zip vb_attachmentgallery_v1.6beta.zip (10.2 KB, 471 views)

Screenshots

File Type: jpg attachment_gallery_navbar.jpg (8.8 KB, 0 views)
File Type: jpg attachment_gallery_adv_search_v1.3.jpg (28.1 KB, 0 views)
File Type: jpg attachment_gallery_search_results_v1.3.jpg (33.6 KB, 0 views)
File Type: jpg attachment_gallery_v1.3.jpg (55.6 KB, 0 views)
File Type: jpg attachment_gallery_v1.3_2.jpg (68.8 KB, 0 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
7 благодарности(ей) от:
babyv0x, Hasann, lemonadesoda, macroforum, mokujin, yilmaz

Comments
  #92  
Old 06-29-2011, 05:49 AM
Mark.B Mark.B is offline
Senior Member
 
Join Date: Feb 2004
Posts: 1,354
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ForceHSS View Post
does not show videos posted using the insert video link
Why would it do that? This is for attachments. Embedded videos are not attachments.
Reply With Quote
  #93  
Old 06-29-2011, 07:59 AM
bananalive bananalive is offline
 
Join Date: Oct 2007
Location: UK
Posts: 2,802
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by BaanFarsang View Post
Some images aren't resize after upgraded to 1.6beat!

http://www.baanfarsang.com/attachmentgallery.php
Try importing attached file
Attached Files
File Type: xml product-attachmentgallery_v1.6.xml (25.7 KB, 13 views)
Reply With Quote
  #94  
Old 06-29-2011, 08:22 AM
BaanFarsang's Avatar
BaanFarsang BaanFarsang is offline
 
Join Date: Jan 2010
Location: Thailand
Posts: 87
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by bananalive View Post
Try importing attached file
Doesn't work too!
Reply With Quote
  #95  
Old 06-29-2011, 11:30 AM
Gecuba Gecuba is offline
 
Join Date: Sep 2010
Posts: 23
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by bananalive View Post
Try importing attached file
DB error #1060 received
Reply With Quote
  #96  
Old 06-29-2011, 12:00 PM
bananalive bananalive is offline
 
Join Date: Oct 2007
Location: UK
Posts: 2,802
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Gecuba View Post
DB error #1060 received
Try attached file instead.
Attached Files
File Type: xml product-attachmentgallery_v1.6.xml (25.8 KB, 18 views)
Reply With Quote
  #97  
Old 06-29-2011, 12:02 PM
bananalive bananalive is offline
 
Join Date: Oct 2007
Location: UK
Posts: 2,802
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by BaanFarsang View Post
Doesn't work too!
Find in template attachmentgallery

HTML Code:
<vb:if condition="$att['image'] && $vboptions['attachthumbs'] > 0">
			<a class="picture" href="attachment.php?attachmentid={vb:raw att.attachmentid}&amp;d={vb:raw att.dateline}" rel="Lightbox_1" id="attachment{vb:raw att.attachmentid}">
				<img class="thumbnail<vb:if condition="$att['contenttypeid'] == 18"> cms_article_preview_image</vb:if>" src="attachment.php?attachmentid={vb:raw att.attachmentid}&amp;stc=1&amp;thumb=1&amp;d={vb:raw att.dateline}" alt="{vb:rawphrase ag_thumbinfo, {vb:raw att.filename}, {vb:raw att.username}, {vb:raw att.date}}" />
			</a>
Replace with

HTML Code:
<vb:if condition="$att['image'] && $vboptions['attachthumbs'] > 0">
			<a class="picture" href="attachment.php?attachmentid={vb:raw att.attachmentid}&amp;d={vb:raw att.dateline}" rel="Lightbox_1" id="attachment{vb:raw att.attachmentid}">
				<img class="thumbnail<vb:if condition="$att['contenttypeid'] == 18"> cms_article_preview_image</vb:if>" src="attachment.php?attachmentid={vb:raw att.attachmentid}&amp;stc=1&amp;thumb=1&amp;d={vb:raw att.dateline}" alt="{vb:rawphrase ag_thumbinfo, {vb:raw att.filename}, {vb:raw att.username}, {vb:raw att.date}}" style="max-width: 80px; max-height: 80px;" />
			</a>
(end of line 3 has been edited)
Reply With Quote
  #98  
Old 06-29-2011, 12:35 PM
BaanFarsang's Avatar
BaanFarsang BaanFarsang is offline
 
Join Date: Jan 2010
Location: Thailand
Posts: 87
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by bananalive View Post
Find in template attachmentgallery

HTML Code:
<vb:if condition="$att['image'] && $vboptions['attachthumbs'] > 0">
			<a class="picture" href="attachment.php?attachmentid={vb:raw att.attachmentid}&amp;d={vb:raw att.dateline}" rel="Lightbox_1" id="attachment{vb:raw att.attachmentid}">
				<img class="thumbnail<vb:if condition="$att['contenttypeid'] == 18"> cms_article_preview_image</vb:if>" src="attachment.php?attachmentid={vb:raw att.attachmentid}&amp;stc=1&amp;thumb=1&amp;d={vb:raw att.dateline}" alt="{vb:rawphrase ag_thumbinfo, {vb:raw att.filename}, {vb:raw att.username}, {vb:raw att.date}}" />
			</a>
Replace with

HTML Code:
<vb:if condition="$att['image'] && $vboptions['attachthumbs'] > 0">
			<a class="picture" href="attachment.php?attachmentid={vb:raw att.attachmentid}&amp;d={vb:raw att.dateline}" rel="Lightbox_1" id="attachment{vb:raw att.attachmentid}">
				<img class="thumbnail<vb:if condition="$att['contenttypeid'] == 18"> cms_article_preview_image</vb:if>" src="attachment.php?attachmentid={vb:raw att.attachmentid}&amp;stc=1&amp;thumb=1&amp;d={vb:raw att.dateline}" alt="{vb:rawphrase ag_thumbinfo, {vb:raw att.filename}, {vb:raw att.username}, {vb:raw att.date}}" style="max-width: 80px; max-height: 80px;" />
			</a>
(end of line 3 has been edited)
I have been replaced and edited size of style="max-width: 180px; max-height: 180px;",

after using Maintenance -> Update Counters -> Rebuild Attachment Thumbnails.

Is it OK? http://www.baanfarsang.com/attachmentgallery.php
Reply With Quote
  #99  
Old 06-29-2011, 02:31 PM
Gecuba Gecuba is offline
 
Join Date: Sep 2010
Posts: 23
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by bananalive View Post
Try attached file instead.
Installed!
Blog, article and album attachments added!
There are some issues
Duplicating some (not all) blog attachments - the first one is ok, the second is just like link and I couldn't view it



Search menu has a tag option, but how could I add the tag? Didn't find any possibility - neither in more infomation page, nor during uploding process.

Could you make additional sorting (or type-sections) for forum-blog-article-album attachments?
Reply With Quote
  #100  
Old 07-08-2011, 02:38 AM
ForceHSS ForceHSS is offline
 
Join Date: Apr 2008
Posts: 6,357
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Mark.B View Post
Why would it do that? This is for attachments. Embedded videos are not attachments.
then why does it have a video section as i said in another post needs the option to remove sections not needed
Reply With Quote
  #101  
Old 07-10-2011, 10:53 PM
hugh_ hugh_ is offline
 
Join Date: Mar 2005
Location: Netherlands
Posts: 368
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by bananalive View Post
v1.6 pulls attachments from articles, and blogs as well as threads/posts.
v1.6 includes remove tag.
How about including Calendar and Social Group attachements?
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 10:04 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.05336 seconds
  • Memory Usage 2,377KB
  • Queries Executed 26 (?)
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_html
  • (10)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (11)post_thanks_box
  • (6)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
  • (9)postbit_attachment
  • (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_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete