AnimeSuki Forums

Register Forum Rules FAQ Community Today's Posts Search

Go Back   AnimeSuki Forum > Support > Tech Support

Notices

Reply
 
Thread Tools
Old 2004-12-14, 19:27   Link #1
ChibiDusk
Back From The Dead?
 
Join Date: Apr 2003
Location: Canada
Age: 34
PHP Help: Photo Album

I'm working on a site that will act as a personal photo gallery. Basically you go to the site and get a log-in panel in which if I have given you the password you can enter.

From there you go into the actual site. Basically I just want a simple gallery (implemented into a layout I already designed). I want it so there are three sections: People, Scenery, and Events. Each 'section' is "connected" to a folder on my webspace in which the images are stored. So basically, upload an image into "people" and that image would appear in the "people" section of the gallery in a small thumbnail form.

Of course, what also would be handy is if you could click on this thumbnail and be brought to a page where guests can leave comments and rate the image.

So that's all gallery-wise. I would also like to have an upload script in which i can upload directly via the site to the three categories. So an upload script with a dropdown box asking which category I wanted the image uploaded into.

On the main page I would have stats like "10 newest", "10 most popular (based on votes)", "most viewed", etc. if possible.

So, I was wondering if this is possible? And if anyone knows of any scripts like this?
ChibiDusk is offline   Reply With Quote
Old 2004-12-14, 21:53   Link #2
AnimeOni
Raid-the-mods
 
 
Join Date: Nov 2003
Location: Sol System
Some PhP like Fantastico has this feature pre-built. Check to see if this feature is installed. It will save you a lot of work. If not, check out this site: http://www.advancescripts.com/PHP/index.html

The feature you are asking for, is it similar to the gallery on http://wallpapers.downloadanime.org? If yes, they use the Coppermine Photo Gallery php script. You will need access to MySQL server.
AnimeOni is offline   Reply With Quote
Old 2004-12-15, 07:23   Link #3
subcool
Arienai Co-Founder
 
 
Join Date: Feb 2004
Location: Holland
Age: 40
Send a message via ICQ to subcool Send a message via AIM to subcool
Here are some of my own scripts that you can use

http://subcool.ath.cx/image_admin/index.phps <-- Uses files

http://subcool.ath.cx/myimageadmin/src/ <-- Uses MySQL

You'll need to following code for the MySQL version. and of course you'll need to modify it a bit. mine dont require login... So have fun =)

Code:
DROP TABLE IF EXISTS `images`;
CREATE TABLE IF NOT EXISTS `images` (
  `id` int(9) unsigned NOT NULL auto_increment,
  `image` mediumblob NOT NULL,
  `name` tinytext NOT NULL,
  `type` tinytext NOT NULL,
  `size` tinytext NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

DROP TABLE IF EXISTS `thumbnails`;
CREATE TABLE IF NOT EXISTS `thumbnails` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `name` tinytext NOT NULL,
  `image` mediumblob NOT NULL,
  `type` tinytext NOT NULL,
  `size` tinytext NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
subcool is offline   Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -5. The time now is 19:04.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
We use Silk.