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

Reply
 
Thread Tools
PhotoPlog: The Lite Gallery Details »»
PhotoPlog: The Lite Gallery
Version: 2.0.7, by calorie calorie is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Category: Major Additions - Version: 3.7.x Rating:
Released: 11-22-2005 Last Update: 11-06-2010 Installs: 1560
DB Changes Uses Plugins Template Edits
Additional Files  
No support by the author.

PhotoPlog: The Lite Gallery

PhotoPlog Lite is a gallery script for GIF, JPG, and PNG images. PhotoPlog Lite comes with categories, permissions, comments, search, moderation. The installation takes care of phrases, templates, tables, etcetera. Just follow the README.txt file for installation.

There is a license agreement that I request that you abide. Thanks!

This thread is organized as follows:
  • Post1 contains this here release.
  • Post2 contains current add-ons.
  • Post3 contains onscreen errors.
Fine Print: see license agreement, no redistribution, copyright retained in full, right reserved to uncheck support box.

Requirements: vB 3.5.0+ (development initially based on having vB 3.5.4 though vB 3.6.0+ and vB 3.7.0+ should be okay, but not every version was personally tested) and MySQL 4.1+ (development based on having MySQL 4.1+ though MySQL 3+ may be okay, but not every version was personally tested) and PHP with GD2 and Safe Mode off

Does it work on vB 3.5 and vB 3.6 and vB 3.7? Yes, it should. See the requirements. Also, there are two product XML files, one for vB 3.5 and one for vB 3.6/3.7, so import the one that matches your vB version.

Live Demo and Official Support: http://www.photoplog.com/

Note on Official Support: With 70 some pages, assuming 15 posts per page, and over 1000 posts, all in one thread, official support for this mod is now held off-site. Apologies in advance for possibly having to register at yet another forum, but IMHO support would be better served elsewhere at this point.

All support requests, except perhaps for proven bugs, may be ignored if posted in this thread.

Comments, suggestions, etcetera are welcome, but please note that further modifications are not being planned, as this is intended as the final release of the lite series.

Fun Fact: PhotoPlog Lite v.2.0.6 had 4330 downloads plus 2262 downloads prior to CSRF protection plus 3031 downloads as of 06 Nov 2010!

Show Your Support

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

Comments
  #662  
Old 01-18-2006, 05:42 PM
calorie calorie is offline
 
Join Date: May 2003
Posts: 2,804
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks for the thanks.

FYI: updated to v.1.0.6.2 (forces a category choice, less overhead to display files). Easy upgrade, FTP a few files, instructions in README.txt file.

Note on Official Support: With 40 some pages, assuming 15 posts per page, and over 600 posts, all in one thread, official support for this mod is now held off-site. Apologies in advance for possibly having to register at yet another forum, but IMHO support would be better served elsewhere at this point.
Reply With Quote
  #663  
Old 01-18-2006, 09:30 PM
redundanthost redundanthost is offline
 
Join Date: Mar 2005
Posts: 16
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

does it work on 3.5.3
Reply With Quote
  #664  
Old 01-18-2006, 10:09 PM
KayDEE KayDEE is offline
 
Join Date: Jan 2002
Posts: 14
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

@redundanthost

yes it works with 3.5.3, flawless

@natralis

yes, i've added that kinda option a while ago

open photoplog settings.php
find:
Code:
$photoplog_random_bits = $photoplog_cat_id = $photoplog_subcat_bar = $photoplog_letter_id = '';
below it add:
Code:
$photoplog_latest_bits = $photoplog_cat_id = $photoplog_subcat_bar = $photoplog_letter_id = '';
find:
Code:
// ####################### INITIALIZE LETTER BAR ##########################
above it add:
Code:
// ###################### INITIALIZE LATEST BITS ##########################

$photoplog_latest_bits = '';
if (defined('PHOTOPLOG_LATEST') && !isset($_REQUEST['c']) && !isset($_REQUEST['n']) && !isset($_REQUEST['u']) && !isset($_REQUEST['q']))
{
	$photoplog_file_infos = $db->query_read("SELECT *
						FROM photoplog_fileuploads
						WHERE moderate = 0
						ORDER BY dateline DESC
						LIMIT 3
	");

	$photoplog_cnt_bits = 0;
	$photoplog_row_top = '';
	$photoplog_row_bottom = '';

	while ($photoplog_file_info = $db->fetch_array($photoplog_file_infos))
	{
		$photoplog_cnt_bits++;

		$photoplog_fileid = $photoplog_file_info['fileid'];
		$photoplog_userid = $photoplog_file_info['userid'];
		$photoplog_username = $photoplog_file_info['username'];

		$photoplog_row_top .= "

			<td class=\"alt2\" nowrap><nobr>
			<table class=\"alt1\" width=\"100%\" border=\"0\" cellpadding=\"5\" cellspacing=\"1\">

			<td class=\"alt2\" align=\"center\" width=\"20%\">
				<a href=\"".$photoplog_location."/index.php?".$vbulletin->session->vars['sessionurl']."n=".$photoplog_fileid."\">
					<img src=\"".$photoplog_location."/file.php?".$vbulletin->session->vars['sessionurl']."n=".$photoplog_fileid."&amp;w=s\" border=\"0\" />
				</a>
			</td>

			</table>
			</td>

		";

		$photoplog_row_bottom .= "
			<td class=\"alt2\" align=\"center\" width=\"20%\">
				<div class=\"smallfont\">
					".$vbphrase['posted_by']." <a href=\"".$photoplog_location."/index.php?".$vbulletin->session->vars['sessionurl']."u=".$photoplog_userid."\">".$photoplog_username."</a>
				</div>
			</td>
		";
	}

	$db->free_result($photoplog_file_infos);

	$photoplog_table_start = "<table class=\"tborder\" border=\"0\" cellpadding=\"".$stylevar['cellpadding']."\" cellspacing=\"".$stylevar['cellspacing']."\" align=\"center\" width=\"100%\"><tr>

		<td colspan=\"5\" class=\"tcat\"><a style=\"float: ".$stylevar['right'].";\" href=\"#top\" onclick=\"return toggle_collapse('photoplog_latest_bits')\"><img id=\"collapseimg_photoplog_latest_bits\" src=\"".$stylevar['imgdir_button']."/collapse_thead".$vbcollapse['collapseimg_photoplog_latest_bits'].".gif\" alt=\"\" border=\"0\" /></a><span class=\"smallfont\"><strong>Latest Pictures</strong></span></td>

		</tr> <tbody id=\"collapseobj_photoplog_latest_bits\" style=\"".$vbcollapse['collapseobj_photoplog_latest_bits']."\"><tr>";

	$photoplog_table_end = "</tr></tbody></table><br />";

	$photoplog_latest_bits = $photoplog_table_start.$photoplog_row_top."</tr>".$photoplog_table_end;

	if (!$photoplog_cnt_bits)
	{
		$photoplog_latest_bits = '';
	}
}
open photoplog functions.php

find:
Code:
	global $photoplog_random_bits, $photoplog_cat_id, $photoplog_subcat_bar, $photoplog_letter_id;
replace with:
Code:
	global $photoplog_random_bits, $photoplog_latest_bits, $photoplog_cat_id, $photoplog_subcat_bar, $photoplog_letter_id;
open photoplog index.php

find:
Code:
define('PHOTOPLOG_RANDOM','bits');
below it add:
Code:
define('PHOTOPLOG_LATEST','bits');
open template photoplog_file_list

add to top:
Code:
$photoplog_latest_bits
done ... hope i didnt forget anything, i changed and added alotta things on it

Cheers
Reply With Quote
  #665  
Old 01-18-2006, 10:21 PM
KayDEE KayDEE is offline
 
Join Date: Jan 2002
Posts: 14
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

@natralis
oops ... i have misread ... that wont add the 3 latest to forumhome, it adds them to gallery home, sry.

Take it as a small addon for users that want to have 3 latest on gallery home then

Cheers
Reply With Quote
  #666  
Old 01-19-2006, 01:29 AM
beebi beebi is offline
 
Join Date: Aug 2005
Posts: 197
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I realy wish to have Send as e-Card in it
Reply With Quote
  #667  
Old 01-19-2006, 01:25 PM
John Diver John Diver is offline
 
Join Date: Nov 2003
Posts: 329
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hey,
Getting an error that I don't have permissions to view the gallery but I have set it so all usergroups can view the posts.

Is there any permissions for viewing the categories?

Couldn't see any settings I missed.

Thanks
Reply With Quote
  #668  
Old 01-19-2006, 04:20 PM
funinthesun funinthesun is offline
 
Join Date: Oct 2005
Posts: 460
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I've installed but nothing has changed. Any idea of what I might of done wrong?
Reply With Quote
  #669  
Old 01-20-2006, 03:36 PM
funinthesun funinthesun is offline
 
Join Date: Oct 2005
Posts: 460
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Anyone? :nervous:
Reply With Quote
  #670  
Old 01-20-2006, 03:39 PM
Sinnie Sinnie is offline
 
Join Date: Sep 2005
Location: Netherlands
Posts: 10
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

When a user is logged in and clicks the photoplog link, he has to log in again. this only happens with IE, not Firefox.
This happend after i upgraded from .61 to .62.
Anyone?
Reply With Quote
  #671  
Old 01-20-2006, 05:01 PM
rfonseca's Avatar
rfonseca rfonseca is offline
 
Join Date: May 2002
Posts: 11
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by funinthesun
Anyone? :nervous:
Quote:
Originally Posted by calorie

Note on Official Support: With 40 some pages, assuming 15 posts per page, and over 600 posts, all in one thread, official support for this mod is now held off-site. Apologies in advance for possibly having to register at yet another forum, but IMHO support would be better served elsewhere at this point.
FYI: you might get faster responses at:
http://photoplog.com

rf
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 02:14 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.05751 seconds
  • Memory Usage 2,327KB
  • 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
  • (9)bbcode_code
  • (2)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
  • (5)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_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