Version: 4.00, by The Geek
Developer Last Online: Jan 2019
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.
For those who are using photopost vBGallery, and not the ordinary photopost, you can edit the geek_gallery_popup.php file and rename the tables, any occurance of "adv_gallery_whatever" should be changed to "ppgal_whatever", that makes geek_popup work with vB3.6, i just went through it, works fine.
I have the same problem. :ermm: Photopost version 5.3.1 and VB 3.6. If you need a few bucks via paypal for 'encouragement,' PM me. This would be very nice if it would would perfectly. Dont know if it matters but I also paid for GARS.
I had the same problem and changed two of the SQL Select statements in the geek-gallery-popup.php file to ignore the row if it's a category (storecat=0).
here are the two places I had to change for PP:
FROM:
PHP Code:
$pages = $db->query_first("SELECT count(id) total FROM $gallery_db" . $pp_prefix . "photos WHERE userid=$userid");
TO:
PHP Code:
$pages = $db->query_first("SELECT count(id) total FROM $gallery_db" . $pp_prefix . "photos WHERE userid=$userid AND storecat=0");
AND
FROM:
PHP Code:
$query="SELECT
images.id AS imageid,images.cat,c.catname AS cattitle,'' AS extention,images.title,
images.bigimage AS filename,images.medsize,images.width owidth, images.height oheight,images.medwidth width,images.medheight height
FROM $gallery_db" . $pp_prefix . "photos AS images
INNER JOIN $gallery_db" . $pp_prefix . "categories AS c on images.cat=c.id
WHERE images.userid=$userid and images.approved=1 ORDER BY images.date DESC LIMIT $start ," . ($perpage);
TO:
PHP Code:
$query="SELECT
images.id AS imageid,images.cat,c.catname AS cattitle,'' AS extention,images.title,
images.bigimage AS filename,images.medsize,images.width owidth, images.height oheight,images.medwidth width,images.medheight height
FROM $gallery_db" . $pp_prefix . "photos AS images
INNER JOIN $gallery_db" . $pp_prefix . "categories AS c on images.cat=c.id
WHERE images.userid=$userid and images.storecat=0 and images.approved=1 ORDER BY images.date DESC LIMIT $start ," . ($perpage);
Just wanted to say this mod is great, i love it! I wanted to add a bit of functionality to it, so I posted this on PhotoPost's web site and wanted to see if anyone here has any idea:
__________________________________________________ ___
Hi, I've got Photopost Pro and it's great.
I've got a vB mod that allows you to insert an image from your gallery into the WYSIWYG editor (Geek Gallery Popup 4.0) and it works nice, but I'd like to add 1 more piece of functionality to it, uploading pictures to your gallery right in the "insert an image" popup.
I've added 2 text boxes to that popup, one that would take a URL and one that is for a File (with browse button) as well as a button to upload the requested file to the person's gallery.
The question is, how do I actually upload it? Is there a PP function I can call that, given file and user information, would upload into their own gallery? I'd like it to just upload without opening another page, no description nor category selection, just to the user's gallery. If not a function, would the only other way to insert via sql, any other ideas on how to do this?
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.
Hi, did this issue get resolved as I have exactly the same problem. If an image is displayed in a secondary category, its thumbnail doesn't show.