Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

    •  
      CommentAuthormike
    • CommentTimeApr 6th 2007
     
    Posted By: _leon_The Gallery URL I'm assuming just needs to be the root of your plogger installation?

    Yes, and it should be automatically set by the installation script. I'm wondering though if running on localhost might be messing anything up here...
    • CommentAuthoramasters
    • CommentTimeApr 7th 2007
     
    I've been looking at the Classic theme as I am interested in the descriptions-in-tool-tips feature. I can't, however, get the tool tips to work. The description turns up just below the image. I've made no modifications to this theme. Am I missing something?

    Thanks,
    Anne
    • CommentAuthoramasters
    • CommentTimeApr 7th 2007 edited
     
    In version 2, I could use html in some of the fields (title, caption) but in this beta3 version, I don't seem to be able to do that. Any suggestions?

    Thanks,
    Anne
    • CommentAuthoramasters
    • CommentTimeApr 8th 2007
     
    Posted By: amastersIn version 2, I could use html in some of the fields (title, caption) but in this beta3 version, I don't seem to be able to do that. Any suggestions?


    I figured this out.
    •  
      CommentAuthordusk
    • CommentTimeApr 9th 2007 edited
     
    Mike,

    I'm running into some problems with cruft-free links and apostrophes, eg nature's - example link here. Looks like the string is getting written to the db without being escaped, so the link just heads back to the previous album/collection.

    Ben
    • CommentAuthor_leon_
    • CommentTimeApr 9th 2007
     
    Mike - any pointers on the localhost issue? I could check something here if given some direction.... At the moment I can't really get anywhere :(
    • CommentAuthorArchytas
    • CommentTimeApr 9th 2007
     
    Hi,

    Just a small issue - just annoying more than anything else. In the admin section when you add an album it redirects you to the overview of the collections page rather than the overview of the albums page. Just a small redirect issue but havn't found where the redirect is done yet.

    Thanks,
    •  
      CommentAuthorkent
    • CommentTimeApr 13th 2007
     
    How about the swedish translation ? has anyone started with that ? if not, i could do it.
    •  
      CommentAuthorkent
    • CommentTimeApr 14th 2007
     
    sv.plogger.org:80 for latest nightly ? whats the username and password ?
    •  
      CommentAuthorkent
    • CommentTimeApr 15th 2007
     
    where is all ppl ?
    •  
      CommentAuthormike
    • CommentTimeApr 15th 2007
     
    Posted By: kentsv.plogger.org:80 for latest nightly ? whats the username and password ?

    svn.plogger.org allows anonymous checkouts, no need for a username or password.
    • CommentAuthorandros69
    • CommentTimeApr 15th 2007
     
    Mike,

    I just upgraded to the latest alpha. Once I did, all my thumbs were not showing. It turns out that the src for the images was "thumbs/fileName.jpg", without the full URL to the thumb. I went and manually added "/photos/" to each call to the SRC of the image in my templates.

    Is this a new change, did I miss something?
    •  
      CommentAuthorkent
    • CommentTimeApr 16th 2007 edited
     
    My TortoiseSVN keeps asking for username and password :(

    Edit.. havent used this before.. import no.. update yes.. bet refuses to update .. had to remove all files
    •  
      CommentAuthormike
    • CommentTimeApr 16th 2007
     
    Posted By: andros69Mike,

    I just upgraded to the latest alpha. Once I did, all my thumbs were not showing. It turns out that the src for the images was "thumbs/fileName.jpg", without the full URL to the thumb. I went and manually added "/photos/" to each call to the SRC of the image in my templates.

    Is this a new change, did I miss something?


    Andros, is your "Gallery URL" set correctly on the Plogger options page? I don't remember changing anything with the way thumbnail URL's are generated...
    • CommentAuthorandros69
    • CommentTimeApr 16th 2007 edited
     
    Posted By: mike
    Andros, is your "Gallery URL" set correctly on the Plogger options page? I don't remember changing anything with the way thumbnail URL's are generated...


    Damn, I didn't check that. When I copied the new files I must have overwritten it. Weird. Thanks!

    BTW, so when are we supposed to run the _upgrade.php script and when is it ok to simply copy new files over?
    •  
      CommentAuthormike
    • CommentTimeApr 17th 2007
     
    Upgrading is pretty easy, just upload all the new files into your Plogger directory (if you are upgrading don't overwrite plog-config.php, overwrite all the files if you are installing fresh). Once all the new files are uploaded, simply run _upgrade.php in your browser.

    For all these incremental releases from SVN, it's usually not even necessary to run the upgrade script (say, if you are upgrading from rev 401 to 402 or something) unless I change something with how the database is structured, or change the upgrade script itself.
    • CommentAuthoramasters
    • CommentTimeApr 18th 2007
     
    Mike,

    I posted part of this in another discussion (dealing with thumbnail behavior) but since it is dealing with the beta3 version I thought I should post it here. Sorry for the double posting.

    When using the Lightbox theme in Firefox the thumbnails line up across the page and then start a new row. This, I think, is the expected behavior. However, in IE (checked for 6 and 7), the thumbnails are in 1 column. Since I want them to appear in rows in IE, I've played with the CSS quite a bit. No joy. I need help.

    I did notice some repetition and what looks like contradictory display rules in the following:

    ul#slides li {
    display:block;
    padding:10px;
    text-align:center;
    position:relative;
    float:left;
    display:inline;
    margin:5px;
    text-align: center;
    }

    Any suggestions as to how I can get the thumbnails into rows in IE?

    Thank you,
    Anne
    • CommentAuthorardamis
    • CommentTimeApr 18th 2007
     
    Anne: you can fix this by setting a definite width for the ul#slides li element.

    If you're not squeamish about inline styles, I'd suggest you utilize the new plogger_get_thumbnail_info function to set a width for the list item containing each thumbnail. To do this, edit the lightbox theme's album.php like so:


    <?php
    plogger_get_header();
    print '<div id="thumbnail_container">';
    if (plogger_has_pictures()) {
    print '<input type="hidden" name="dl_type" value="pictures" />';

    print '<ul id="slides">';

    while(plogger_has_pictures()) {

    plogger_load_picture();

    // display thumbnails within album
    // generate XHTML with thumbnail and link to picture view.

    $capt = plogger_get_picture_caption();

    // find thumbnail width
    $thumb_info = plogger_get_thumbnail_info();
    $thumb_width = $thumb_info[0]; // The width of the image. It is integer data type.
    $li_width = $thumb_width + 16; // The li_width is 16 pixels greater than the width of the image.

    $img_id = "thumb-".plogger_get_picture_id();
    $imgtag = '<img id="' . $img_id . '" class="photos"
    src="'.plogger_get_picture_thumb().'" title="'.$capt.'" alt="'.$capt.'" />';

    print '<li class="thumbnail" style="width:'.$li_width.'px;"><a title="'.$capt.'" href="' . plogger_get_picture_thumb(THUMB_LARGE) . '" rel="lightbox">' . $imgtag . "</a>";

    print plogger_download_checkbox(plogger_get_picture_id());

    print '<div class="tag">' . $capt . '</div></li>';
    }


    print '</ul>';
    }
    else{
    print '<div id="no-pictures-msg">There are no pictures in this album.</div>';
    }

    print '</div>';
    plogger_get_footer();
    ?>



    Actually, this method works well with all of the themes, not just Lightbox. It allows a consistent layout to be achieved regardless of the user-defined thumbnail size.

    There's another, user-created Lightbox theme in the works at http://plogger.org/forum/discussion/1152/plogger-with-litebox-lightbox2/, and I'm off-and-on assembling one myself.

    -ardamis
    • CommentAuthoramasters
    • CommentTimeApr 19th 2007
     
    Thanks so much ardamis, I'll check it out. --Anne
    • CommentAuthor_leon_
    • CommentTimeApr 30th 2007
     
    still can't get anywhere with it running on localhost. will try again later on to dissect it and output what the urls equate to. any help on classes used for this would be great. really want to try and help out and get this problem resolved. hints anyone?
    • CommentAuthorSubhash
    • CommentTimeMay 2nd 2007
     
    Is there a german version available? (Couldn't find the information.)
    •  
      CommentAuthormike
    • CommentTimeMay 2nd 2007
     
    No german translation yet. _leon_ I'm sorry I can't be of more help, I have been real busy lately. Have you checked to make sure that you have GD installed on your host? That would be the most fundamental problem... thumbnails would have no way to generate. If that's not it, then it is probably something with the URL's, make sure your Gallery URL is setup relative to the root of your webserver.
    • CommentAuthorSubhash
    • CommentTimeMay 2nd 2007
     
    Thanks for the quick information!
    • CommentAuthorcorie
    • CommentTimeMay 4th 2007
     
    This isn't so much a bug, but more of an annoyance.

    In Beta 3, when you're on the manage page under a collection and you add an album, it dumps you back at the root, instead of putting you back into that collection.

    Plogger 2.1 functions as desired.

    -Corie
    • CommentAuthorjack
    • CommentTimeMay 8th 2007
     
    I haven't tried the latest svn-version, but is the filename diplayed when you edit an image (caption or description)? For now I always copy that filename (without extension) in the caption field.

    Suggestion for a feature (or plugin???):
    Today I uploaded about twenty new images belonging to several categories. Using the WordPress plugin PloggerPress I display the most recent six images on my homepage. Those six images could all belong to just one category. This way people who visited my gallery before will miss those other new images. How about an extra default category "Most Recent" for the Plogger homepage or a kind of PloggerPress plugin that would display 10-20-50 thumbs on the Plogger homepage with direct links to the images or albums?
    • CommentAuthorLadyHLG
    • CommentTimeMay 8th 2007
     
    Hi Mike,
    First off, thanks for a wonderful gallery. I have successfully downloaded and installed v2 and was hoping to give v3 a try but I have run into the same problem that a couple of others in this post have.
    Its the same rather lengthly error message that dlongnecker posted on Feb 19th and Martin Searle posted on Mar 15th. It seems to be happening during the image upload, from the error I would guess it has something to do with the thumbnail creation?
    Like dlongnecker, I am also on a windows server.

    Just a little more info to help narrow down the problem. I get a similar error if I try to use the import feature, the box where the thumbnail should be shows the same type of error. Also, strangely, when I upload the image and get the error, the gallery still creates the image record and uploads the main image. If I view the image through the front-end of the gallery, not only does it display the image but it creates the thumbnail and medium size image files.

    I hope that makes sense.

    Thanks again!
    LadyHLG

    Just for reference here is the error:

    Failed: setSourceFilename(c:\inetpub\wwwroot\gardneragency\portfolio\images/photography/location_photography/image3.jpg) set $this->sourceFilename to "c:\inetpub\wwwroot\gardneragency\portfolio\images/photography/location_photography/image3.jpg" in file "phpthumb.class.php" on line 216 $AvailableImageOutputFormats = array(text;wbmp;gif;png;jpeg) in file "phpthumb.class.php" on line 636 $this->thumbnailFormat set to $this->config_output_format "jpeg" in file "phpthumb.class.php" on line 646 $this->thumbnailQuality set to "75" in file "phpthumb.class.php" on line 663 !$this->config_allow_src_above_docroot therefore setting "c:/inetpub/wwwroot/gardneragency/portfolio/images/photography/location_photography/image3.jpg" to null in file "phpthumb.class.php" on line 790 $this->sourceFilename set to "" in file "phpthumb.class.php" on line 587 phpThumb() v1.6.2-200511240855 "" does not exist $this->config_cache_directory () is not a directory in file "phpthumb.class.php" on line 704 SetCacheFilename() failed because $this->config_cache_directory is empty in file "phpthumb.class.php" on line 1986 GetImageSize("") failed in file "phpthumb.class.php" on line 1869 ImageMagickThumbnailToGD() aborting because cannot find convert in $this->config_imagemagick_path (), and `which convert` returned () in file "phpthumb.class.php" on line 830 ImageMagickThumbnailToGD() aborting because ImageMagickCommandlineBase() failed in file "phpthumb.class.php" on line 923 ImageMagickThumbnailToGD() failed in file "phpthumb.class.php" on line 1876 exif_thumbnail() does not exist, cannot extract EXIF thumbnail in file "phpthumb.class.php" on line 1920 starting SourceImageToGD() in file "phpthumb.class.php" on line 2073 Not using EXIF thumbnail data because $this->config_use_exif_thumbnail_for_speed is FALSE in file "phpthumb.class.php" on line 2076 Populating $this->rawImageData and attempting ImageCreateFromStringReplacement() in file "phpthumb.class.php" on line 2182 phpThumb() v1.6.2-200511240855 cannot fopen("") on line 2195 of c:\inetpub\wwwroot\gardneragency\portfolio\lib\phpthumb\phpthumb.class.php
  1.  
    I've just upgraded from beta 2.1 to beta 3 and cannot login to the admin pages. I get the following message:

    SELECT * FROM `plogger_config`

    In file: /photos/admin/plog-upload.php

    On line: 17

    What can I do? The upgrade went without any problems, all files belong to the correct user and group so any changes may be written to the files.

    The gallery itself displays but formatting is not correct anymore.
    •  
      CommentAuthormike
    • CommentTimeMay 23rd 2007
     
    There seems to be a problem with the upgrade for some people, I would suggest doing a new install for testing at this point until I can get in and figure out what is going on...
    • CommentAuthorFeyD
    • CommentTimeMay 25th 2007
     
    When viewing PICTURE.PHP the link to the image is being generated incorrectly. The PHP extension is left on (i.e. gallery.php)

    My Gallery URL is defined as: http://www.mywebsite.com/gallery/

    Below is the source generated for the page.

    <div id="picture-holder">
    <a accesskey="v" href="/gallery.phpimages/2006_seaside_soccer_classic/semi_finals/021_seaside_semi_2006.jpg"><img class="photos-large" src="http://www.mywebsite.com/gallery/thumbs/lrg-631-021_seaside_semi_2006.jpg" title="&nbsp;" alt="&nbsp;" /></a>
    </div>

    When I clck on the image this is the URL the browser is attempting to load.

    http://www.mywebsite.com/gallery.phpimages/2006_seaside_soccer_classic/semi_finals/021_seaside_semi_2006.jpg

    Thanks in advance...
    • CommentAuthorMurdock
    • CommentTimeJun 19th 2007
     
    I just mailed Mike a german language translation.

    Did anyone has a found out why the slideshow only shows the pictures from the first page and loops only that page then ?
    When anyone can give me a hint where to search for fix that bug in the code, I would be happy

    thanks
    • CommentAuthorGremi0
    • CommentTimeJun 20th 2007
     
    How about integrating Highslide into Plogger..
    http://vikjavev.no/highslide/
    I would love to see these effects with plogger..
    •  
      CommentAuthormike
    • CommentTimeJun 24th 2007
     
    Murdok, thanks for the German Translation, as soon as I review it I will commit it to SVN!

    As far as Highslide, that looks pretty cool. It would be a snap to integrate into Plogger3 as well...
    • CommentAuthorjeffhanlon
    • CommentTimeJun 25th 2007
     
    Mike,

    Thanks for the sticky on this thread. How close are you to a stable release of version 3?
    •  
      CommentAuthorkent
    • CommentTimeJun 27th 2007 edited
     
    is the latest plogger3alpha.zip fom nightly ? cant do anything, even with a clean install.. cant login as admin etc. i use the right username and password but it doesnt work..

    Login to admin
    SELECT * FROM `plogger_config`

    In file: /bild/admin/plog-upload.php

    On line: 17
    • CommentAuthordime
    • CommentTimeJun 28th 2007
     
    When I first time installed, I also received that message, but that was because you didn't uploaded new plog-config.php file. Later I ?installed? Plogger but received message Notice: Undefined index: install_values in /mounted-storage/.../plogger3/_install.php on line 20

    Warning: mkdir(): SAFE MODE Restriction in effect. The script whose uid/gid is 5306/5306 is not allowed to access /mounted-storage/.../plogger3/images/plogger_test_collection owned by uid/gid 99/99 in /mounted-storage/.../plogger3/admin/plog-admin-functions.php on line 880

    Notice: Undefined variable: path in /mounted-storage/.../plogger3/admin/plog-admin-functions.php on line 518

    Warning: Cannot modify header information - headers already sent by (output started at /mounted-storage/.../plogger3/_install.php:20) in /mounted-storage/.../plogger3/_install.php on line 27
    , but I could enter in admin area, could change options and create collection, but when try to create album I receive message Warning: mkdir(): SAFE MODE Restriction in effect. The script whose uid/gid is 5306/5306 is not allowed to access /mounted-storage/.../plogger3/images/nude_galleries owned by uid/gid 99/99 in /mounted-storage/.../plogger3/admin/plog-admin-functions.php on line 880

    Then I deleted everything (including database) and done everything again and I again receive this messages.

    Is this problem with this instalation or what?

    Notice I deleted folders structure here and instead use ...
    • CommentAuthorsicruise
    • CommentTimeJul 5th 2007 edited
     
    I'm also getting...

    SELECT * FROM `plogger_config`

    In file: /admin/plog-upload.php

    On line: 17

    I was initially upgrading from version 2 and received this error... so decided to do a complete fresh install and i'm getting the same error when trying to access the admin section.

    Any move on a fix for this?

    {EDIT}Not 100% on what caused this... but removing all tables again and removing all files related to plogger off my server and reinstalling did the trick... working away at it now! Bring on the multiple users!!{EDIT}
    •  
      CommentAuthormike
    • CommentTimeJul 8th 2007 edited
     
    Alright... I figured out the problem. There actually isn't anything wrong with the upgrade script, we consolidated everything from beta 3 into a single plog-globals.php file, but version beta 2.1 uses two plog-globals files. Just delete /admin/plog-globals.php and everything should work fine after you upgrade. There is some code in Beta3 that is mistakenly grabbing the old plog-globals file that is no longer being used, that is why a fresh install works because you end up deleting that extra file.
    •  
      CommentAuthormike
    • CommentTimeJul 8th 2007 edited
     
    Alright, I re-uploaded the package with this fix implemented. Guys, this should be ready to go now. I need some themes!
    •  
      CommentAuthormike
    • CommentTimeJul 8th 2007
     
    Ardamis, I just committed your "Air" theme to be included with the official release. Hope you don't mind =)
    • CommentAuthorardamis
    • CommentTimeJul 9th 2007
     
    I'm flattered, thanks Mike.

    -Ardamis
    •  
      CommentAuthormike
    • CommentTimeJul 9th 2007
     
    Ok, it's released.
    • CommentAuthorMurdock
    • CommentTimeJul 10th 2007
     
    I still have problems with the Slideshow, it only shows me Page one of the pictures and then loops again on the first pic from page one.
    Did anyone has tested it out? maybe it has something to do with my webspace or my mysql version then.
    Anyone tested it and it runs for you ?
    please let me know thanks.
    •  
      CommentAuthorTony
    • CommentTimeJul 11th 2007 edited
     
    Posted By: sicruiseI'm also getting...

    SELECT * FROM `plogger_config`

    In file: /admin/plog-upload.php

    On line: 17

    I was initially upgrading from version 2 and received this error... so decided to do a complete fresh install and i'm getting the same error when trying to access the admin section.

    Any move on a fix for this?

    {EDIT}Not 100% on what caused this... but removing all tables again and removing all files related to plogger off my server and reinstalling did the trick... working away at it now! Bring on the multiple users!!{EDIT}



    im getting the exact same problem....
    •  
      CommentAuthormike
    • CommentTimeJul 11th 2007
     
    Tony,

    First of all, please do not use the Plogger Admin icon for your avatar, this is reserved for moderators and developers of Plogger. I have removed it from your account twice now, and if I have to do it again your account will be banned.

    In regards to your problem, as I stated above try deleting the file "admin/plog-globals.php" and run again.
    •  
      CommentAuthormike
    • CommentTimeJul 11th 2007
     
    Also, make sure you guys are using the version at the download page (http://www.plogger.org/download/) and not the Alpha build which is linked in this thread...
    •  
      CommentAuthorTony
    • CommentTimeJul 11th 2007
     
    Right so you would ban my account just for having a plogger logo hmmm........ that?s a little on the sad side, I have spent many hours fixing bugs for this CMS and have been an active member in helping out others fix the bugs that I have come across as you haven?t and that?s the thanks I receive, I have a right to have a plogger logo, why.... I?ve spent enough time fixing it, oh & doing you?re job for you.

    It sounds like you got it all figured out hey mike
    •  
      CommentAuthormike
    • CommentTimeJul 11th 2007 edited
     
    Um, first of all ... you have posted 12 comments on the forum. Congratulations, but I hardly believe you "deserve" anything. I have posted 655 comments here, helping people fix bugs, implementing feature requests in the code, and generally writing a good portion of the code base (along with designing the entire user interface, website, and documentation) on and off since October 2004. Do you see the difference? I appreciate the time you put into the site, but the logo is meant for administrators and developers, to help differentiate from other contributers. I am not going to ban you for having a Plogger logo, I am going to ban you for being belligerent. It's a pretty simple request, find another logo for your avatar or you will be banned from the forum. Thank you.
    •  
      CommentAuthorTony
    • CommentTimeJul 12th 2007
     
    There is a big difference between being belligerent, & being pissed off, by the fact that one of the supposed developers has an issue with me using a plogger logo? Some who has a right to having the logo, due to what I have put into this project which has been a considerable amount, although you some how find that hard to believe ?only 12 comments? I?ve have posted 655? what does that sound like to you? I know what it sounds like?..A pathetic excuse, you?re value on a forum is determined by how many comments you post, ever heard of quality over quantity?....probably not.

    You know what if it bothers you that badly go right ahead and ban me but I warn you now, you will be making a big mistake.
    • CommentAuthorKiddo
    • CommentTimeJul 14th 2007
     
    Install fails after entering DB data with:

    Notice: Undefined index: PATH_TRANSLATED in /home/lphmon/public_html/plogger/plog-load_config.php on line 36

    Notice: Undefined index: PATH_TRANSLATED in /home/lphmon/public_html/plogger/plog-load_config.php on line 36

    Notice: Array to string conversion in /home/lphmon/public_html/plogger/admin/plog-admin-functions.php on line 303

    Notice: Undefined index: id in /home/lphmon/public_html/plogger/_install.php on line 24

    Warning: Cannot modify header information - headers already sent by (output started at /home/lphmon/public_html/plogger/plog-load_config.php:36) in /home/lphmon/public_html/plogger/_install.php on line 27
    • CommentAuthordime
    • CommentTimeJul 19th 2007 edited
     
    I already wrote here about problems with alpha versions, but here it continue with official release too.

    I created new database and completely new folder. Upload everything and start _install.php. Set attributes to all folders, inset database infos and receive message that set up is complete. Downloaded new plog-config.php and uploaded to server. Then clicked on final button and receive following message:

    Warning: mkdir(): SAFE MODE Restriction in effect. The script whose uid/gid is 5306/5306 is not allowed to access /mounted-storage/home7/.../plogger/images/plogger-test-collection owned by uid/gid 99/99 in /mounted-storage/home7/.../plogger/admin/plog-admin-functions.php on line 880

    Notice: Undefined variable: path in /mounted-storage/home7/.../plogger/admin/plog-admin-functions.php on line 518

    Warning: Cannot modify header information - headers already sent by (output started at /mounted-storage/home7/.../plogger/admin/plog-admin-functions.php:880) in /mounted-storage/home7/.../plogger/_install.php on line 27


    Since I already had experience with this, I went to default folder and there I saw normal page with ?No collections yet? text. Then I went to /admin page and logged normally. I successfully created new collection. In that collection when I tried to create new album, I received following code on top of the page:

    Warning: mkdir(): SAFE MODE Restriction in effect. The script whose uid/gid is 5306/5306 is not allowed to access /mounted-storage/home7/.../plogger/images/novo owned by uid/gid 99/99 in /mounted-storage/home7/.../plogger/admin/plog-admin-functions.php on line 880

    but bellow it I saw normal plog-manage.php page with list of collections, except of message I receive in red square: Could not create directory !

    So, what is problem with this?

    Notes: I tried new install several times and always see this.

    By the way, I translated that .pot file to Serbian, but couldn't test it since I don't have working installation of new Plogger.