The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
|
Photo Popup - Insert pictures easily from vB Albums, Photopost, vBGallery, Photoplog Details »» | ||||||||||||||||||||||||||||||||||||||||||
Photo Popup - Insert pictures easily from vB Albums, Photopost, vBGallery, Photoplog
Developer Last Online: Apr 2022
Quote:
What does it do? When creating or editing a post, your users can open a popup window that will show them pictures in the chosen gallery or albums. Now also supports attachments: Reuse what you uploaded! A click on the picture inserts it into the editor. Works with
Detailed features list
Basic Configuration
Upgrade
Support and debugging Ill help whenever I find the time. Before asking, please activate debug mode and post the information given there (especially under "Code". Please try the two links given - do they look "normal" and do they work? Debug information is only shown to Administrators (usergroup 6). Always state the products you use, including the software versions. Also read the infromation in the second post of this thread. Hopes for the future World peace, happiness, health and lot's of money Version history
Development and bugfix releases for config files If the need arises, there will be development or bugfix releases of config files between official releases of this mod. The zip file attached to this post will always be up to date. At the moment, there are no development/bugfix-releases. Translations Deutsche ?bersetzung bei vbulletin-germany.org. Arabian translation, thanks to Subah. Russian translation, thanks to nohuhu. Screenshots AdminCP, Photopost settings, Photo Popup in action, quickreply ### Don't forget to click install! ### (No support if you don't) Download Now
Screenshots
Show Your Support
|
Благодарность от: | ||
vn88.com |
Comments |
#382
|
|||
|
|||
Hi, Cellarius !
Maybe it will be useful for somebody with photopost : includes/class_bbcode.php in function handle_bbcode_img_match($link) find PHP Code:
PHP Code:
Sorry, i've no time to do it well, so this code needs some replacement for user's config : 1. path to photopost (2 lines) 2. determine photopost in link to image : $search = "photopost/data"; 3. photopost tables prefix : pp_ DEMO here Maybe somebody can do it better This code needs yet one replacement in another file, who is interested in it - PM, please |
#383
|
||||
|
||||
I will not support this code or function in this form. Just one hint after a quick scan: To use * in a query where only very few fields are needed is not exactly good.
It would be far easier to pull that information in the mod directly than to hack vB files. The mod already offers one insert option that displays a link under the inserted image. To pull the image title would not even call for an additional query. |
#384
|
|||
|
|||
Thanks for reply. Idea was to provide cross-link between pictures in photopost and VB posts without any action from userside. My users can click link below picture in post and go to gallery, review pictures there and return to threads & posts just with selected picture inside. It's hard to server, but my forum isn't large.
|
#385
|
|||
|
|||
The album filter doesn't work on PhotoPlog currently. I've been mucking around with it for the last two hours or so, and I just cant get it to work correctly. It just doesn't seem to populate the dropdown so that the filter can apply.
The select in the catagories.php seems correct: Code:
/* ###### Select statement for useralbums or categories ###### */ function albums_select () { global $db_prefix; global $userid; $albums_select = " SELECT catid, title FROM " . $db_prefix . "categories ORDER BY title "; return $albums_select; } Code:
/* ###### What album dropdown ###### */ if ($allow_albums AND $albums_possible) { if (!$other_db) { $result = $db->query_read(albums_select()); } else { $result = mysql_query(albums_select()); } $album_options = "<div style=\"whitespace: nowrap; display: inline;\"><strong>" . $vbphrase[photo_popup_album_select] . ":</strong> <select name=\"alb\" onchange=\"this.form.submit();\">"; $album_options .= "<optgroup label=\"" . $vbphrase[photo_popup_which_albums] . "\">"; $album_options .= "<option value=\"all\">" . $vbphrase[photo_popup_all_albums] . "</option>"; echo $album_options; echo "a"; while (list($catid, $catname) = @ mysql_fetch_row($result)) { if ($which_album == $catid) { $selected = " selected=\"selected\""; } $album_options .= "<option value=\"" . $catid . "\"" . $selected . ">" . $catname . "</option>"; $selected = FALSE; } $album_options .= "</optgroup></select></div>"; } Code:
while (list($catid, $catname) = @ mysql_fetch_row($result)) I'm stumped. |
#386
|
|||
|
|||
Great mod is working with the Garage module flawlessly!!
Thanks. |
#387
|
|||
|
|||
For the record... It has been posted here a few times...
The drop-down for album categories does not populate. If I open photo-popup, everything works fine, but the only option I have is ALL IMAGES. Thus I have to flip through 1000s of photos to find the ones I want. I cannot drill down through my albums. Yes... I have seen and tried the filter override settings. |
#388
|
||||
|
||||
What product do you use? If you mean the vB album: I'm not aware that this has been reported for albums, and it works just fine for me (and a lot of others )
|
#389
|
|||
|
|||
This has stopped working for me, when a user posts a thumbnail that links to the bigger pic it goes to my album listing when clicked on.
I am using TMS but something is not working correct. |
#390
|
|||
|
|||
Tried to install this on a 3.8.2 board. I get this error:
Code:
Photo Popup Error #2: missing config file The configuration file "photo_popup_config_photopost" for this product is missing in [forumroot]/includes directory. Please consult installation instructions for this mod. The file I was looking for is: /home/content/t/o/m/tommydamic68/html/includes/photo_popup_config_photopost.php Any way to fix this? |
#391
|
||||
|
||||
You have set it to use photopost in the options for this mod, not photoplog. Change that - it is looking for the photopost config file, just as the error states.
|
Thread Tools | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|