Eyelash – PHP gallery admin
What is EYELASH ?
- Eyelash is a PHP Â single or multiple album image management tool that is designed to work on LAMP Platforms
- We distribute Eyelash on this website  for the small fee of 10$ : for this price you get access to the code of a professionnaly coded application that relies on popular libraries such as Code Igniter, Uploadify, Jquery
What do I need to run EYELASH requires ?
- HARDWARE / HOST : a webserver / web host  with PHP 5, Mysql
Notes : - Eyelash is designed to work on shared hosting with low memory and cpu requirements
- You can install eyelash in root directory (www or htdocs) , also works seamlessly in sub foldersÂ
- Installation Knowledge : Basic webmaster skills with  following parameters Â
- FTP : Â upload host, user and password
- Mysql  : host, user, password, database name
- User : Flash enabled browser (for uploading)
What features  does EYELASH  provide ?
- Database multi album image management  :Â
- Ajax / flash based upload with progress bar
- unlimited file size upload, automatic resizing for display in the admin
- Jquery based drag and drop reordering
- MVC coding, based on CodeIgniter framework
IS IT HARD TO INSTALL ?
- EYELASH is very easy to install : it comes with its web based  installer
 just unzip, run /install and as long as your mysql and php are OK you’re running !!! - Important : remember to delete the install folder for security reasons
- Configuration : all configuration files are in application/config folder
- Database access is configured automatically in the install (config/database.php)
- General code igniter config (config/config.php)
- language (english by default)
- available languages : english  /french
- you can create you own language file with localised strings in application/languages
- Eyelash  configuration Options( application/config/eyelash.php )
- multiple albums : true / false
- If you have a problem, we are here to provide unlimited email support
CAN I PREVIEW EYELASH ?
Yes you can : the demo is online (single album demonstrated) : click here ( user is eyelash and password… eyelash too)
Â
Click here to purchase on webmasterbulletin’s online shop
Â





2 Responses to “Eyelash – PHP gallery admin”
December 20, 2011 - Sylvain
Thank you very much for your script. It is really great! Everything works fine.
I have one question though : how can I modify the size of the generated thumbnails in the image preview ?
Sylvain
December 20, 2011 - EYELASH PHP JQUERY IMAGE GALLERY support
Hi, you have to dig into to the admin module code to change the generation of image galleries
1. Change the size of generated thumbnail
php : application/controllers/imageupload.php
method/function : private function resize
change config width and height values
2. modify in the HTML that displays thumbnails
template : application/views/image_list.php
for performance reasons, the size of the thumbnails is hard coded in the template
find the img code that displays the thumbnail_path and change width and height accordingly. If you want your thumbnails to keep proportions then completely remove sizes attributes there and specify overflow hidden in step 3
3. modify the style sheet
css:assets/eyelash/eyelash.css
identifier : #gallery_sortable li
specify the new width and height.
If you have removed sizes in step 2, specify overflow:hidden to keep proportions with crop
Please not that current distribution configures 150px for step no 1 and 100px for step no2. My mistake, numbers should be identical