Plogger Support Forum - General Support Fri, 29 Mar 2024 13:54:23 +0000 http://www.plogger.org/forum/ Lussumo Vanilla 1.1.10 GD Support http://www.plogger.org/forum/comments.php?DiscussionID=3312 http://www.plogger.org/forum/comments.php?DiscussionID=3312 Sat, 10 Jul 2010 17:54:58 +0000 Krede
I have a problem with this gallery..
I have installed it without errors and it almost works, but it says that "no GD support detected" and therefore I cannot use it.
The extension is installed on the server: http://linux16.unoeuro.com/phpinfo.php

How do I make this gallery see that it is supported?

Thanks
Christian]]>
Album disappeared after upgrade from Beta3 http://www.plogger.org/forum/comments.php?DiscussionID=3311 http://www.plogger.org/forum/comments.php?DiscussionID=3311 Fri, 09 Jul 2010 17:52:43 +0000 bksmith5
After finally upgrading from Beta3 to 1.0-RC1, I have "lost" one of my albums. The images folder for the album exists and the relevant MySQL entries are still present. (The album name is simply 'Wedding' and the images folder is currently named 'wedding1' after I tweaked the MySQL path for the images.)

If I rename the image-containing folder, then the album will appear in the list of Plogger albums but I cannot access it since the images folder doesn't exist any longer. If I rename the folder back to 'wedding1' then the album will disappear from the anonymous users' view.

Loooking at the list of albums through /plog-admin/plog-manage.php I can see the albums under the "root" album (I've got "year" albums and then various named-albums under the "Year" album -- in this case it's in the "2007" -> "Wedding" album) and the number of images (323) shows up correctly.

I checked permissions on the /images/2007/wedding1 folder and on the individual files in the folder. I can't get it to work.

Can anyone please explain why the upgrade broke this single album out of my set of albums?

Thanks!
]]>
Email link not working http://www.plogger.org/forum/comments.php?DiscussionID=3308 http://www.plogger.org/forum/comments.php?DiscussionID=3308 Thu, 08 Jul 2010 05:35:04 +0000 Delboy When someone comments on a photo the link in the email dosent work...
any ideas....
Cheers Delboy]]>
Gallery http://www.plogger.org/forum/comments.php?DiscussionID=3307 http://www.plogger.org/forum/comments.php?DiscussionID=3307 Tue, 06 Jul 2010 01:37:36 +0000 kibathewolf
MY Homepage Gallery as it is now
http://kibathewolf.dk]]>
Watermark V 1.0-RC1 http://www.plogger.org/forum/comments.php?DiscussionID=3154 http://www.plogger.org/forum/comments.php?DiscussionID=3154 Fri, 02 Apr 2010 16:42:06 +0000 ramirolf
Somebody know how make a watermark to intermediate size pictures? Y try http://www.plogger.org/forum/discussion/1728/beta3-watermark/#Item_3 but dont work.

I really need it.

Thanks to everybody!]]>
Show list of last albums http://www.plogger.org/forum/comments.php?DiscussionID=3299 http://www.plogger.org/forum/comments.php?DiscussionID=3299 Wed, 23 Jun 2010 19:38:19 +0000 DacevedoVE
In the first line of the page i put this code


<?php include('admin/conn.php');

function generate_thumb($path, $prefix, $type = 'small') {
global $config;
require_once("./galeria/lib/phpthumb/phpthumb.class.php"); //PHP thumb class

if (substr($path,0,1) != '/') {
$source_file_name = $config['basedir'] . 'images/' . $path;
} else {
$source_file_name = $path;
}

if (!is_readable($source_file_name)) {
return false;
};

$imgdata = @getimagesize($source_file_name);

if (!$imgdata) {
return false;
}

$base_filename = sanitize_filename(basename($path));

global $thumbnail_config;

$thumb_config = $thumbnail_config[$type];
$prefix = $thumb_config['filename_prefix'] . $prefix . "-";
$thumbpath = $config['basedir'] . 'thumbs/'.$prefix.$base_filename;
$thumburl = $config['baseurl'] . 'thumbs/'.$prefix.$base_filename;
list($width, $height, $type, $attr) = @getimagesize($thumbpath);

if (!file_exists($thumbpath) ||
($thumb_config['filename_prefix'] == '' && !$config['square_thumbs'] && $thumb_config['size'] != $height) ||
($thumb_config['filename_prefix'] == '' && !$config['square_thumbs'] && $width == $height) ||
($thumb_config['filename_prefix'] == '' && $config['square_thumbs'] && $width != $height) ||
($thumb_config['filename_prefix'] != '' && $thumb_config['size'] != $width) ||
($thumb_config['filename_prefix'] == '' && $config['square_thumbs'] && $thumb_config['size'] != $height && $thumb_config['size'] != $width)) {
$phpThumb = new phpThumb();
$phpThumb->setSourceFileName($source_file_name);
$phpThumb->w = $thumb_config['size'];
$phpThumb->q = $config['compression'];

if ($thumb_config['filename_prefix'] == '' && $config['square_thumbs']) {
$phpThumb->zc = 1;
$phpThumb->h = $thumb_config['size'];
}

$phpThumb->config_use_exif_thumbnail_for_speed = false;

if (!$config['square_thumbs']) {
$phpThumb->h = $thumb_config['size'];
$phpThumb->w = '';
}

$phpThumb->config_error_die_on_error = false;

if ($phpThumb->GenerateThumbnail()) {
$phpThumb->RenderToFile($thumbpath);
}
else {
die('Failed: '.implode("\n", $phpThumb->debugmessages));
}
}
return $thumburl;
}

?>


and later i put this to display the name of the albums, description and thumbnail

<?
$result=mysql_query("SELECT * FROM plogger_albums ORDER BY id DESC LIMIT 0,5",$conn);

while($reg=mysql_fetch_array($result)) {
$result2=mysql_query("SELECT * FROM `plogger_pictures` WHERE parent_album='".$reg['id']. "' ORDER BY id;",$conn);
$reg2=mysql_fetch_assoc($result2);
?>
</h4>

<div class="ultimos"> <a href="/galeria/index.php?level=album&amp;id=<?=$reg['id']?>"><img src="/galeria/thumbs/<?=$reg2["id"]."-".basename($reg2["path"])?>" alt="<?=$reg['name']?>" /></a>

<p></p>

<h4><a href="/galeria/index.php?level=album&amp;id=<?=$reg['id']?>">
<?=$reg['name']?>
</a></h4>

<p><a href="/galeria/index.php?level=album&amp;id=<?=$reg['id']?>">
<?=$reg['description']?>
</a></p>
<p></p>
</div>
<p>
<?
}
mysql_free_result($result);
?>


In this new version of plogger it doesnt work! the name and description works fine but not the thumbnail... Any ideas about it? Plzz

P.s Sorry for my bad english]]>
Medium size images move on mouse over in embedded page. http://www.plogger.org/forum/comments.php?DiscussionID=3304 http://www.plogger.org/forum/comments.php?DiscussionID=3304 Wed, 30 Jun 2010 15:31:47 +0000 Beacon123
The images don't move when I look at the gallery in its own page, but when its embedded they all slide on a mouse over.

Thanks, Brian]]>
New Plugin (Resizing and Watermarking) http://www.plogger.org/forum/comments.php?DiscussionID=124 http://www.plogger.org/forum/comments.php?DiscussionID=124 Sun, 23 Oct 2005 19:51:20 +0000 Nick C __________________________

Hi, let me start by saying that I love this app. It finally convinced me to switch from my custom coded gallery to a distributed product (I've never been able to find the right balance between features and bloat in these products)

One thing was missing, however, the ability to resize images automatically and watermark them without furthur interaction. So... I wrote a plug-in to do it for me...

Basically it took me bloody ages, but it's been coded in such a way that if there is a demand for it then I could potentially distribute it. I'd still need to package it up and write instructions but I could have that done in a week or so if people want it.

I have put a couple of screenshots up here: http://www.n-line.co.uk/gallery/other_photography/screenshots

and you can look at my site and the resized / marked pictures while you're there :)

Please excuse the current content, as I say I'm migrating things across and still getting happy with Plogger's settings.]]>
Broken Album Links http://www.plogger.org/forum/comments.php?DiscussionID=3301 http://www.plogger.org/forum/comments.php?DiscussionID=3301 Fri, 25 Jun 2010 00:52:06 +0000 jrhaws
You can see what is going on by going to www.hawsfam.org/plog.

Any ideas? What information do you need from me, since I am brand new to the plogging world.

Thanks!

Jonathan]]>
Lucid theme breaks when displaying more than 3 albums http://www.plogger.org/forum/comments.php?DiscussionID=3302 http://www.plogger.org/forum/comments.php?DiscussionID=3302 Mon, 28 Jun 2010 11:13:49 +0000 mpwj2
I am currently using the lucid theme. If I have 3 or less albums in my collection then the album thumbnails display fine on the webpage. When I try to add one more the webpage doesn't display properly and the white background doesn't go all the way to the bottom of the page. Does anyone know why this is?

The problem can be seen here: http://img713.imageshack.us/img713/5403/87464405.jpg
the fourth album wouldn't fit on the screen which is why it isn't in the image. With three albums or less the page looks fine.

Thanks]]>
core.trac.plogger.org down ? http://www.plogger.org/forum/comments.php?DiscussionID=3297 http://www.plogger.org/forum/comments.php?DiscussionID=3297 Wed, 23 Jun 2010 05:37:53 +0000 bagnus results in:
Warning:

* Error with navigation contributor "AdminModule"
* Error with navigation contributor "BrowserModule"
* Can't synchronize with repository "(default)" (Cannot load Python bindings for SQLite). Look in the Trac log for more information.

Trac Error:
Cannot load Python bindings for SQLite

I tried also to login/logout without any improvement]]>
[Resolved] Accidentely deleted overwrote .htaccess http://www.plogger.org/forum/comments.php?DiscussionID=3298 http://www.plogger.org/forum/comments.php?DiscussionID=3298 Wed, 23 Jun 2010 12:17:05 +0000 edwin Make it work http://www.plogger.org/forum/comments.php?DiscussionID=3295 http://www.plogger.org/forum/comments.php?DiscussionID=3295 Mon, 21 Jun 2010 21:18:18 +0000 smitty69 Thanks]]> plogger_thumbnail_config table ... http://www.plogger.org/forum/comments.php?DiscussionID=3284 http://www.plogger.org/forum/comments.php?DiscussionID=3284 Tue, 15 Jun 2010 04:33:01 +0000 xavierator Thanks, Xavi]]> Embedding plogger http://www.plogger.org/forum/comments.php?DiscussionID=3291 http://www.plogger.org/forum/comments.php?DiscussionID=3291 Thu, 17 Jun 2010 10:48:10 +0000 finarfin
i want to embed plogger galleries into my home page.

But i also need that when a user click on an image o album from the home page the gallery is fully loaded.

There's a way to do that?
thanks.

P.s. Sorry for my bad english]]>
image is not showing http://www.plogger.org/forum/comments.php?DiscussionID=3289 http://www.plogger.org/forum/comments.php?DiscussionID=3289 Wed, 16 Jun 2010 15:39:58 +0000 everything was going fine but I uploaded a new image through godaddy control panel. after that no image is showing in this page

http://www.jackiewatersports.com/photos.php?level=album&id=2

I can't understand what is wrong. But page is showing the list of the images!! And from control panel I can see my gallery.

You also check that from http://photos.jackiewatersports.com/

Now what I want is thumbnail view of images in this page: http://www.jackiewatersports.com/photos.php?level=album&id=2

Please help me regarding this issue. It is urgent...

thank you!]]>
Gallery Search no longer HTML compliant http://www.plogger.org/forum/comments.php?DiscussionID=3287 http://www.plogger.org/forum/comments.php?DiscussionID=3287 Wed, 16 Jun 2010 12:42:57 +0000 phual ticket #258), but figured that I'd ask for someone who knows what they're doing to give the 'one-minute-flat' fix (which I'm sure is all it would take to squish a bug like this).

The following code (in plog-functions.php) gives html that is not compliant:

function generate_search_box() {
global $config;

$output = '<form id="plogsearch" action="'.generate_url('search').'" method="get">
<div id="search-box">
<input type="text" id="searchterms" name="searchterms" />
<input class="submit" type="submit" value="'.plog_tr('Search').'" />
</div>';
if (!$config['use_mod_rewrite']) {
$output .= "\n\t\t\t\t\t" . '<input type="hidden" name="level" value="search" />';
if (!empty($config['query_args'])) {
$query = array();
$query_args = explode('&amp;', $config['query_args']);
foreach ($query_args as $value) {
$query = explode('=', $value);
$output .= "\n\t\t\t\t\t" . '<input type="hidden" name="'.$query[0].'" value="'.$query[1].'" />';
}
}
}
$output .= "\n\t\t\t\t" . '</form>' . "\n";

return $output;
}


It's to do with the closing div tag, but I don't know how the code needs to be changed to fix it.

Stuart]]>
uploading file gives blank screen http://www.plogger.org/forum/comments.php?DiscussionID=3285 http://www.plogger.org/forum/comments.php?DiscussionID=3285 Wed, 16 Jun 2010 11:03:37 +0000 dmehler I'm using a 1and1 shared hosting setup running php5 and mysql5. I've installed plogger latest 1.0rc1. the installation went fine. My problem is in file uploads. I was sent a file of 3.8 mb in size and tried to upload it. The file went, but then I got a blank screen.
I've browsed and am seeing this is a known issue.
Checking some settings in my phpinfo() output I can see the following:

max_input_time -1
memory_limit 40m
safe_mode off

Further postings on this suggested checking the globals file, I did so and it looks like it overrides these values. I've spoken to the hosting provider 1and1.com and their saying script execution might be terminating, which makes sense. Unfortunately, I have no log to confirm this nor a way of fixing it if it is. Any suggestions welcome.
Thanks.
Dave.]]>
Can not log in http://www.plogger.org/forum/comments.php?DiscussionID=3282 http://www.plogger.org/forum/comments.php?DiscussionID=3282 Mon, 14 Jun 2010 12:19:59 +0000 dmehler I've installed plogger on my site. The installation went successfully, and the database has been created. However, when i atempt to log in I am unable to do so. I'm entering the exact username and password for login, but I keep coming back to the login page. My web hosting provider is 1and1 it's a shared hosting account and it's running php5. Suggestions appreciated.
Is there a way to manually reset the password or is it stored username and password in one of the php files in plogger-admin? Or, in the database, which table is it in?
Dave.]]>
ZIP Upload > write_error http://www.plogger.org/forum/comments.php?DiscussionID=2521 http://www.plogger.org/forum/comments.php?DiscussionID=2521 Mon, 23 Feb 2009 14:48:31 +0000 eleven
I'm starting to test the system, and i can't seem to find the problem with uploading photos in ZIP format.

After i've uloaded i get this error:
There were some problems importing the files:

DSC_0050.jpg: write_error
DSC_0052.jpg: write_error
DSC_0054.jpg: write_error

You can proceed to the Import section to view any files that were successfully uploaded.


There is nothing in the Import section... Could anyone give me a clue about this?

TY in advance!.]]>
Filesize limit for importing, uploading, or viewing images? http://www.plogger.org/forum/comments.php?DiscussionID=320 http://www.plogger.org/forum/comments.php?DiscussionID=320 Wed, 21 Dec 2005 05:13:30 +0000 vallius
What is the problem here? I use a fresh installation of the latest version of Plogger (2005-12-21). My web hotel has a limit of 12 MB for php-imports.

Best Regards, Vallius]]>
Image Sorting http://www.plogger.org/forum/comments.php?DiscussionID=3274 http://www.plogger.org/forum/comments.php?DiscussionID=3274 Mon, 07 Jun 2010 08:25:02 +0000 M104
M107
M110
M28
M49
M60
M87
M99

Can I change the code to get the following result ?
M28
M49
M60
M87
M99
M104
M107
M110

Any help would be great - thanks]]>
Remove full screen preview image http://www.plogger.org/forum/comments.php?DiscussionID=3277 http://www.plogger.org/forum/comments.php?DiscussionID=3277 Tue, 08 Jun 2010 13:02:46 +0000
I'm a designer and most definitely not a developer, so please bear with me. I'm currently trying to get my gallery to open thumbnails in a full-image new tab as soon as a user clicks on the thumbnail. Instead, at the moment, Plogger opens some sort of crazy "boxed preview" (even though it's full sized). Clicking on the boxed preview opens the image in a new tab, but I would like to skip that middle step and go immediately from thumbnail > full image in a new tab.

Here's an example on my website: http://davelee3d.com/gallery.php?level=album&id=4

Any tips?

Many thanks!

- Dave]]>
Disable fields http://www.plogger.org/forum/comments.php?DiscussionID=3250 http://www.plogger.org/forum/comments.php?DiscussionID=3250 Thu, 27 May 2010 02:18:19 +0000 How can I remove "Jump to", "Search", "Sort by" fields?]]> host upgraded php version - gallery gone http://www.plogger.org/forum/comments.php?DiscussionID=3281 http://www.plogger.org/forum/comments.php?DiscussionID=3281 Sun, 13 Jun 2010 10:37:08 +0000 floyd37 I have been running an older version3 of Plogger successfully until my host recently upgraded to php5, now the gallery is gone.
I was hoping that upgrading Plogger to the latest release would fix the problem, however, after having upgraded to Version 1.0 RC1,
the gallery is still missing within my site. The Admin area remains completely functional.
What am I missing?
Thanks!]]>
path not readable/writable by the web server http://www.plogger.org/forum/comments.php?DiscussionID=3275 http://www.plogger.org/forum/comments.php?DiscussionID=3275 Mon, 07 Jun 2010 23:17:07 +0000 ccccrnr http://narea.carltonsara.com/fday/fd09/

I click on _install.php and get
"Plogger cannot be installed until the following problems are resolved:

The path is not readable by the web server.
The path is not writable by the web server."

What does this mean what do I do next?
I've set everything in these directories to "755" for read/write and I've added the My SQL infor to the "plog-config-sample.php" file]]>
403 error when trying to configure http://www.plogger.org/forum/comments.php?DiscussionID=3273 http://www.plogger.org/forum/comments.php?DiscussionID=3273 Mon, 07 Jun 2010 03:49:43 +0000 Oliver Wichert
Forbidden

You don't have permission to access /plog/plog-admin/plog-options.php on this server.

Apache/2.2.3 (CentOS) Server at oliver-wichert.de Port 80


The whole plog directory is set to 777 except for the plog-content, which I set to 755 as I was told by the installer.
All help appreciated!]]>
getting a 404 error when viewing gallery http://www.plogger.org/forum/comments.php?DiscussionID=3236 http://www.plogger.org/forum/comments.php?DiscussionID=3236 Sun, 23 May 2010 13:56:39 +0000 jkellz
When clicking on an album, I get this message; Notice: Undefined variable: collection in" (my sites folder locations)/plog-includes/plog-functions.php on line 1169.

the URL of the site is pictures.nirvanaweb.com]]>
Send Email Notification to many users for Comments http://www.plogger.org/forum/comments.php?DiscussionID=3119 http://www.plogger.org/forum/comments.php?DiscussionID=3119 Mon, 15 Mar 2010 13:07:30 +0000 Dani Only displaying contents of one album http://www.plogger.org/forum/comments.php?DiscussionID=3067 http://www.plogger.org/forum/comments.php?DiscussionID=3067 Sat, 20 Feb 2010 12:36:42 +0000 cltracey
I have tried installing and uninstalling plogger three times this afternoon and keep getting the same problem - it is only displaying the images from within one album and not displaying a category list on the index page. It also refuses to let me skip to other albums. Not sure what is going wrong as have used Plogger in the past and had no problems. Any suggestions as to why this might be happening? I cannot see any options that would let me change this in the admin area.

Tracey]]>