Version: 2.0.7, by calorie
Developer Last Online: Nov 2023
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!
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.
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.
@VB-STYLE: it's a server timeout, meaning that your server timed out prior to absolute links being done. What action were you doing when that happened?
@allstar55: what are your PhotoPlog directory and your vB Forum URL settings?
@VB-STYLE: it's a server timeout, meaning that your server timed out prior to absolute links being done. What action were you doing when that happened?
@allstar55: what are your PhotoPlog directory and your vB Forum URL settings?
Some tests on the absolute links function gave the following process times, but that's on my machine:
Code:
0.322336 secs on run 1
0.395830 secs on run 2
0.347106 secs on run 3
0.327901 secs on run 4
0.373469 secs on run 5
----------------------
0.3533284 average secs
To see if the function is the issue on your machine, in functions.php find:
Code:
function photoplog_absolute_links($src_input, $src_output, $src_link)
{
And temporarily replace with the following:
Code:
function photoplog_absolute_links($src_input, $src_output, $src_link)
{
return $src_output;
}
function photoplog_absolute_links_original($src_input, $src_output, $src_link)
{
Note that links will be incorrect, but we're doing this to see if you still get a timeout.