Part of the EllisLab Network
   
 
Multi Image Uploader
Posted: 13 September 2009 03:55 PM   [ Ignore ]  
Summer Student
Total Posts:  2
Joined  09-13-2009

Hi ,

I’m posting here an image uploader that supports 3 types of upload forms :
- a standard upload form
- a jQuery uploadify form
- a jqUploader form

Switching between these 3 types of forms can be done from the configuration.

The script is based on the original script Latavish’s Multiple Image Upload w/ Thumbnail Generation.

I also used an asset helper written by Philip Sturgeon.

And 2 more jQuery libraries :
- jQuery lightBox written by Leandro Vieira Pinho
- GalleryView written by Jack Anderson

You can get the code from here:
http://alecsandru.ro/stuff/ci/image-upload_0.1.zip

In case you want to save the images information in the DB,
the following table has to be created.

CREATE TABLE IF NOT EXISTS `img_pictures` (
  `
idbigint(20NOT NULL AUTO_INCREMENT,
  `
imagenamevarchar(100NOT NULL,
  `
thumbnailvarchar(100) DEFAULT NULL,
  `
foldervarchar(255) DEFAULT NULL,
  `
filesizeint(11NOT NULL,
  `
widthint(11NOT NULL,
  `
heightint(11NOT NULL,
  `
thumb_widthint(11) DEFAULT NULL,
  `
thumb_heightint(11) DEFAULT NULL,
  `
timestamptimestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  
PRIMARY KEY (`id`)
ENGINE=MyISAM  DEFAULT CHARSET=utf8

Cheers

Profile
 
 
Posted: 13 September 2009 05:53 PM   [ Ignore ]   [ # 1 ]  
Research Assistant
Avatar
RankRankRank
Total Posts:  315
Joined  08-29-2008

Nice…

Any documentation? would be nice…

Any Demos? would also be nice wink

 Signature 

CodeIgniter From Scratch: Day 1 | Day 2 | Day 3 | Day 4 | Day 5 | Day 6 | Day 7

Profile
 
 
Posted: 13 March 2010 06:08 PM   [ Ignore ]   [ # 2 ]  
Lab Assistant
Avatar
RankRank
Total Posts:  168
Joined  05-04-2008

Looks like the site is down now.

Any one still have access to this zip?

 Signature 

Reality Knights - Have more fun
Play over 7000+ Free Games

Profile
 
 
Posted: 17 March 2010 12:47 PM   [ Ignore ]   [ # 3 ]  
Summer Student
Total Posts:  2
Joined  02-24-2010

I would like to get this nice application aswell! Bump bump! smile

Btw, is it possible to specify WHICH folder (from a dropdown menu) that you want to upload the selected image’s/files to? smile

/Znow

Profile
 
 
Posted: 18 March 2010 08:08 AM   [ Ignore ]   [ # 4 ]  
Summer Student
Total Posts:  2
Joined  09-13-2009

You can now get the script from here :
http://alecsandru.ro/stuff/ci/image-upload_0.1.zip

Profile
 
 
Posted: 18 March 2010 12:29 PM   [ Ignore ]   [ # 5 ]  
Summer Student
Total Posts:  2
Joined  02-24-2010

@Alecs Dinu - Do you got some documentation for it aswell? That would be nice smile

Profile
 
 
   
 
 
‹‹ Asset Library      Multi Session library ››