473,398 Members | 2,212 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,398 software developers and data experts.

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
http://fabbphoto.nickfabb.com

-nick
Jul 17 '05 #1
6 5193
nick wrote:
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


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

Jul 17 '05 #2
yes, I looked at (Gallery? http://gallery.sf.net), its way too
cumbersome for my tastes. i prefer fabbPhoto
Tom Lee <tl*****@webcrumb.com> wrote in message news:<3f******@news.comindico.com.au>...
nick wrote:
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


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

Jul 17 '05 #3
In comp.lang.php nick <nf***@yahoo.com> wrote or quoted:
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


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

Fatal error: Call to undefined function: imagecreatefromjpeg() 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,
--
__________
|im |yler http://timtyler.org/ ti*@tt1lock.org Remove lock to reply.
Jul 17 '05 #4
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 <ti*@tt1lock.org> wrote in message news:<HM*******@bath.ac.uk>...
In comp.lang.php nick <nf***@yahoo.com> wrote or quoted:
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


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

Fatal error: Call to undefined function: imagecreatefromjpeg() 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,

Jul 17 '05 #5
On 6 Oct 2003 11:22:41 -0700, nf***@yahoo.com (nick) wrote:
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


Hmm. What's wrong with Gallery?

http://gallery.menalto.com/

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:

http://gallery.backcountry.net
rafe b.
http://www.terrapinphoto.com
Jul 17 '05 #6
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:
http://pp.siedziba.pl/en/pc_ln.php

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:
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 <ti*@tt1lock.org> wrote in message
news:<HM*******@bath.ac.uk>...
In comp.lang.php nick <nf***@yahoo.com> wrote or quoted:
> 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


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

Fatal error: Call to undefined function: imagecreatefromjpeg() 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,


Jul 17 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Daniel Kelly \(AKA Jack\) | last post by:
Hi! I'm searching for a Photo Gallery software package (like Coppermine and Gallery) that works, from the ground up, like a database-driven app. In other words, I want a gallery which entirely...
10
by: matt | last post by:
I have this code, works perfectly on Windows server, but now i'm trying to run it on a Linux server, the form submits, i get no errors, but the photo doesnt upload, and the caption file doesnt...
7
by: Eric Lindsay | last post by:
I would like to do a photo gallery with a liquid layout. I wanted to center a caption below each photo (or above each photo). I can do that easily with tables, but then I don't have a liquid...
1
by: desjardins.daniel | last post by:
Hi ! Excuse my english, i'm a french canadien... So here my message : I have put on my site a photo gallery and at the right a nav menu. This menu has a red dot visible want someone is passing...
13
by: Viken Karaguesian | last post by:
Hello everyone, Can anyone recommend a good online site to learn PHP? The W3Schools website is quite lacking - leaves much to be desired. I'm sure there are many places, but which ones are good?...
1
by: Throw | last post by:
G'day everyone I'm looking for a simple photo gallery script in PHP (or Perl), but not too simple. I have tried several photo gallery scripts in either language and I have found that they are...
1
by: cumupkid | last post by:
II am trying to create a form that will allow me to upload photos to a folder in the site root directory and add the information to the mysql db at the same time. I have created two forms, one...
1
by: popotz | last post by:
Hi..I really need a big help.. I was wondering how to make my own photo gallery for my own website. The photo must be uploaded first, and then it automaticly putted into the gallery..if we click...
0
nomad
by: nomad | last post by:
Hello Everyone. I founded an Flash and xml photo gallery. It works but I took it to another step What I want is to have six different galleries in one Flash file. I figure out how to do that but ...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.