PHP Photo Gallery

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • nick

    PHP Photo Gallery

    After spending many hours trying to find a simple looking,
    fast,dynamic php photo-gallery for my digital pictures, I decided to
    code a my own.

    Once installed, all you have to do is drop a new folder of images on
    the server.
    Dynamic thumbnails, slideshow are built in.



    If your interested you can find/download it at


    -nick
  • Tom Lee

    #2
    Re: PHP Photo Gallery

    nick wrote:
    [color=blue]
    > After spending many hours trying to find a simple looking,
    > fast,dynamic php photo-gallery for my digital pictures, I decided to
    > code a my own.
    >
    > Once installed, all you have to do is drop a new folder of images on
    > the server.
    > Dynamic thumbnails, slideshow are built in.
    >
    >
    >
    > If your interested you can find/download it at
    > http://fabbphoto.nickfabb.com
    >
    > -nick[/color]

    Did you look at Gallery? http://gallery.sf.net

    Comment

    • nick

      #3
      Re: PHP Photo Gallery

      yes, I looked at (Gallery? http://gallery.sf.net), its way too
      cumbersome for my tastes. i prefer fabbPhoto


      Tom Lee <tl_nntp@webcru mb.com> wrote in message news:<3f81ca1c@ news.comindico. com.au>...[color=blue]
      > nick wrote:
      >[color=green]
      > > After spending many hours trying to find a simple looking,
      > > fast,dynamic php photo-gallery for my digital pictures, I decided to
      > > code a my own.
      > >
      > > Once installed, all you have to do is drop a new folder of images on
      > > the server.
      > > Dynamic thumbnails, slideshow are built in.
      > >
      > >
      > >
      > > If your interested you can find/download it at
      > > http://fabbphoto.nickfabb.com
      > >
      > > -nick[/color]
      >
      > Did you look at Gallery? http://gallery.sf.net[/color]

      Comment

      • Tim Tyler

        #4
        Re: PHP Photo Gallery

        In comp.lang.php nick <nfabb@yahoo.co m> wrote or quoted:
        [color=blue]
        > After spending many hours trying to find a simple looking,
        > fast,dynamic php photo-gallery for my digital pictures, I decided to
        > code a my own.
        >
        > Once installed, all you have to do is drop a new folder of images on
        > the server.
        > Dynamic thumbnails, slideshow are built in.
        >
        > If your interested you can find/download it at
        > http://fabbphoto.nickfabb.com[/color]

        I tried it on a unix PHP5 server - it crashed with:

        Fatal error: Call to undefined function: imagecreatefrom jpeg() in
        /usr/local/home/httpd/vhtdocs/sprouting/fabbPhoto/fabbphoto.php on line 53



        I tried it on a unix PHP4 server - it didn't seem to work - it gave a
        "JavaScript error: run_ss not defined" when I tried to view the slide show.



        FWIW, both have safe mode off. There's a phpinfo() file nearby
        if it might help.

        Best wishes,
        --
        __________
        |im |yler http://timtyler.org/ tim@tt1lock.org Remove lock to reply.

        Comment

        • nick

          #5
          Re: PHP Photo Gallery

          Tim,
          Do you have the GD(1.2+?) libs installed on your php server?
          That is expected behavior if you dont have gd installed.
          The Slideshow also would not work because the rest of the page does
          not get a chance to load(where the "run_ss" function is located).

          Most installations I have seen of php4+, have the gd libs installed.
          -nick


          Tim Tyler <tim@tt1lock.or g> wrote in message news:<HMEJ12.Lo @bath.ac.uk>...[color=blue]
          > In comp.lang.php nick <nfabb@yahoo.co m> wrote or quoted:
          >[color=green]
          > > After spending many hours trying to find a simple looking,
          > > fast,dynamic php photo-gallery for my digital pictures, I decided to
          > > code a my own.
          > >
          > > Once installed, all you have to do is drop a new folder of images on
          > > the server.
          > > Dynamic thumbnails, slideshow are built in.
          > >
          > > If your interested you can find/download it at
          > > http://fabbphoto.nickfabb.com[/color]
          >
          > I tried it on a unix PHP5 server - it crashed with:
          >
          > Fatal error: Call to undefined function: imagecreatefrom jpeg() in
          > /usr/local/home/httpd/vhtdocs/sprouting/fabbPhoto/fabbphoto.php on line 53
          >
          > http://sprouting.org/fabbPhoto/fabbPhoto_index.php
          >
          > I tried it on a unix PHP4 server - it didn't seem to work - it gave a
          > "JavaScript error: run_ss not defined" when I tried to view the slide show.
          >
          > http://timtyler.freeshell.org/fabbPh...hoto_index.php
          >
          > FWIW, both have safe mode off. There's a phpinfo() file nearby
          > if it might help.
          >
          > Best wishes,[/color]

          Comment

          • Rafe B.

            #6
            Re: PHP Photo Gallery

            On 6 Oct 2003 11:22:41 -0700, nfabb@yahoo.com (nick) wrote:
            [color=blue]
            >After spending many hours trying to find a simple looking,
            >fast,dynamic php photo-gallery for my digital pictures, I decided to
            >code a my own.
            >
            >Once installed, all you have to do is drop a new folder of images on
            >the server.
            >Dynamic thumbnails, slideshow are built in.
            >
            >
            >
            >If your interested you can find/download it at
            >http://fabbphoto.nickfabb.com[/color]



            Hmm. What's wrong with Gallery?



            Works for me. Much more comprehensive
            than yours, from what I can see. It was a snap
            to install and trivial to create new albums.

            Best feature about Gallery is that you can set up
            multiple accounts to allow others to post their own
            albums, sort of like a photo 'blog.

            Here's an example implementation:




            rafe b.

            Comment

            • addi

              #7
              Re: PHP Photo Gallery

              FYI, in my experience, I've noticed that the GD libraries, while included in
              the php package and are convenient, they are slow and do not generate
              sufficiently high quality thumbnails/resampled images.

              php_imlib is the way to go, I've found. it's based on the imlib2 imaging
              library - the latest version of php-imlib is located here:


              The maintainer is very open to feedback - although he is quite busy. I can
              probably code up a quick demonstrative sample to show the not-so-subtle
              improvement in the image quality, if necessary.

              James Addison

              nick wrote:
              [color=blue]
              > Tim,
              > Do you have the GD(1.2+?) libs installed on your php server?
              > That is expected behavior if you dont have gd installed.
              > The Slideshow also would not work because the rest of the page does
              > not get a chance to load(where the "run_ss" function is located).
              >
              > Most installations I have seen of php4+, have the gd libs installed.
              > -nick
              >
              >
              > Tim Tyler <tim@tt1lock.or g> wrote in message
              > news:<HMEJ12.Lo @bath.ac.uk>...[color=green]
              >> In comp.lang.php nick <nfabb@yahoo.co m> wrote or quoted:
              >>[color=darkred]
              >> > After spending many hours trying to find a simple looking,
              >> > fast,dynamic php photo-gallery for my digital pictures, I decided to
              >> > code a my own.
              >> >
              >> > Once installed, all you have to do is drop a new folder of images on
              >> > the server.
              >> > Dynamic thumbnails, slideshow are built in.
              >> >
              >> > If your interested you can find/download it at
              >> > http://fabbphoto.nickfabb.com[/color]
              >>
              >> I tried it on a unix PHP5 server - it crashed with:
              >>
              >> Fatal error: Call to undefined function: imagecreatefrom jpeg() in
              >> /usr/local/home/httpd/vhtdocs/sprouting/fabbPhoto/fabbphoto.php on line
              >> 53
              >>
              >> http://sprouting.org/fabbPhoto/fabbPhoto_index.php
              >>
              >> I tried it on a unix PHP4 server - it didn't seem to work - it gave a
              >> "JavaScript error: run_ss not defined" when I tried to view the slide
              >> show.
              >>
              >> http://timtyler.freeshell.org/fabbPh...hoto_index.php
              >>
              >> FWIW, both have safe mode off. There's a phpinfo() file nearby
              >> if it might help.
              >>
              >> Best wishes,[/color][/color]

              Comment

              Working...