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

Reply
 
Thread Tools
Geek Gallery Popup 4.0 Details »»
Geek Gallery Popup 4.0
Version: 4.00, by The Geek The Geek is offline
Developer Last Online: Jan 2019 Show Printable Version Email this Page

Version: 3.5.0 Rating:
Released: 10-21-2005 Last Update: 11-07-2005 Installs: 86
Template Edits
 
No support by the author.

From the makers of lint and fuzz come the oh-so-popular-cant-live-with-out Mack that transformed the lives of all whom beheld it.

Yes, this is: Geek Gallery Popup for vBa and PhotoPost*

Gpop will allow your users to easily insert pictures from their gallery into their posts and private messages.

New features include:
Browse by category
Insert aligned images

Installation difficulty: About as hard as a sneeze
File edits: 0
Plugins: 0
template edits: 1

Known issues:
If the editor isnt selected, and you click a pic... it inserts the freaking pic in the page instead of the editor. Odd stuff. Im sure ill figure that out shortly.

*PhotoPost support is built in however please note that I dont have PP any longer and so I cant really test for it. Therefore, if you are a PP user, let me know if it works

Please click install if you install it.

nJoy

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #182  
Old 01-27-2007, 08:54 PM
Trana Trana is offline
 
Join Date: Apr 2005
Posts: 604
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Any chance of this working in the PM editor window? Right now it just shows PHP gibberish:

Quote:
input->clean_array_gpc('r', array( 'start' => TYPE_UINT, 'page' => TYPE_UINT, 'catid' => TYPE_UINT, 'option1' => TYPE_UINT, 'option2' => TYPE_UINT, 'ed' => TYPE_STR, )); $start = $vbulletin->GPC['start']; $perpage = $vbulletin->GPC['perpage']; $catid = $vbulletin->GPC['catid']; $page = $vbulletin->GPC['page'] ? $vbulletin->GPC['page'] : 1; $option1 = $vbulletin->GPC['option1']; $option2 = $vbulletin->GPC['option2']; $ed = $vbulletin->GPC['ed'] ? $vbulletin->GPC['ed'] : $_POST['ed']; // START GEEKPOPUP SETTINGS $gallery_db = $vbulletin->options['geekgallery_db']; $photo_system = $vbulletin->options['geekgallery_system']; $pp_prefix = $vbulletin->options['geekgallery_pp_prefix']; $pp_five = $vbulletin->options['geekgallery_pp_is_five']; $pp_ver = $vbulletin->options['geekgallery_pp_ver']; $gallery_path = $vbulletin->options['geekgallery_url']; $data_folder = $vbulletin->options['geekgallery_data']; $default_method =
Reply With Quote
  #183  
Old 02-05-2007, 09:00 PM
DrewStr DrewStr is offline
 
Join Date: Jul 2006
Posts: 6
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Works with PP 5.31 and vb 3.6.4 as is. I did add this file to the excludes page in vbSEO geek-gallery-popup.php as suggested by Lizard King here: http://www.thevbgeek.com/showthread.php?t=2083
Reply With Quote
  #184  
Old 02-28-2007, 03:24 AM
DrewStr DrewStr is offline
 
Join Date: Jul 2006
Posts: 6
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well, it works great except for the IE issue putting the images at the header instead of the post.

Would gladly pay to support further development of this hack. And I don't mean $25 either.
Reply With Quote
  #185  
Old 02-28-2007, 04:31 PM
tormodg tormodg is offline
 
Join Date: Oct 2004
Location: Oslo, Norway
Posts: 173
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

No problems at all with this plugin on our boards using vBgallery and vB 3.6.4.
Reply With Quote
  #186  
Old 03-08-2007, 07:34 PM
cellarius's Avatar
cellarius cellarius is offline
 
Join Date: Aug 2005
Posts: 1,987
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by kahmeal View Post
Not sure if this is a new bug or not, but when the images belong to other categories in addition to the members gallery, I get a bunch of blank thumbnails listed along with the working thumbnails from the member's gallery. Here's a screenshot:



This problem does not occur if no additional category is specified for a given image when it is uploaded by the user.

Hot fix, quick and dirty:

in geek-gallery-popup.php in/around line 219 replace
PHP Code:
$pages $db->query_first("SELECT count(id) total FROM $gallery_db$pp_prefix "photos WHERE userid=$userid "); 
with
PHP Code:
$pages $db->query_first("SELECT count(id) total FROM $gallery_db$pp_prefix "photos WHERE userid=$userid and storeid=0 "); 
and in/around line 228 replace
PHP Code:
WHERE images.userid=$userid and images.approved=1 ORDER BY images.date DESC LIMIT $start ," . ($perpage); 
with
PHP Code:
WHERE images.userid=$userid and images.approved=and images.storeid=0 ORDER BY images.date DESC LIMIT $start ," . ($perpage); 

No guarantee whatsoever, works well for me.

HTH,
cellarius
Reply With Quote
  #187  
Old 03-16-2007, 05:33 AM
tatertot tatertot is offline
 
Join Date: Mar 2007
Posts: 1
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Great hack, I just got it working on vbgallery2.1 and vbulletin 3.6.5.
All that's needed is select 'vba' in the geek options and replace adv_gallery_ with ppgal_ in the php file.

Now is there a way to upload to the gallery from a link in the smiley box? It's getting late and I'll figure a way but this is a great hack, thank you Geek!
Reply With Quote
  #188  
Old 04-15-2007, 08:52 AM
jluerken's Avatar
jluerken jluerken is offline
 
Join Date: Aug 2003
Location: Germany
Posts: 1,016
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi,

I am using PhotoPost vBGallery v2.1 and the original file was not working for me.
I modified it to reflect the latest db changes since the vBGallery was sold to the photopost guys.

Here the file.

Test on 3.6.5 and vbGallery 2.1
Reply With Quote
  #189  
Old 04-15-2007, 05:25 PM
kimmer kimmer is offline
 
Join Date: Apr 2007
Posts: 23
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Will this work for this vbimagehost mod? https://vborg.vbsupport.ru/showthrea...hlight=gallery
Reply With Quote
  #190  
Old 04-25-2007, 08:09 PM
jluerken's Avatar
jluerken jluerken is offline
 
Join Date: Aug 2003
Location: Germany
Posts: 1,016
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Updated vBGallery to v2.2
This brings the following error now with this hack

Quote:
Warning: Invalid argument supplied for foreach() in /path/gallery/gallery_global.php on line 84
Anyone an idea? Geek cannot give support on this anymore cause he is currently working on other projects taking all his time.
Reply With Quote
  #191  
Old 04-26-2007, 03:25 AM
ArchangelX ArchangelX is offline
 
Join Date: Feb 2006
Location: Oahu, HI
Posts: 298
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by DefenceTalk View Post
Tony, how did you get those category list to appear in directories?

thanks
Same here...any idea on this? Mine looks great, works fully, but all I have is a "Directories" link, that's it.

I would love to have this fully functioning. Please let me know if anyone has a fix for this, 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 10:47 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04669 seconds
  • Memory Usage 2,312KB
  • Queries Executed 27 (?)
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_php
  • (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
  • (1)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_postinfo_query
  • fetch_postinfo
  • 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