Do you have the thumbnails directory created under the media directory? If so, is it CHMOD 777? Also, what are the file extensions and mime types of your thumbnails and images?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
The mime type of the images you're trying to upload aren't supported by gallery. You need to find the mime types of the images and add them to line 94 of gallery_config.php as necessary.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Having some issues.
Install went ok
Create anything ok
Add images ... hmmm! (see below)
Delete anything (album, media) ... no go get "Unlink Failed"
Won't accept thumbnails at all
Sometimes won't accept any images
I have deleted everything directly from the database manually and started again.
http://www.grammarians.com.au/mod.php?mod=gallery is the link (not public yet)
Have had 3 goes. No thumbnails and only 1 image uploaded.
I can provide more details direct should you require. Its just that I have 300 images to go up and want to get it right before we start.
Do you have the thumbnails directory created under the media directory? If so, is it CHMOD 777? Also, what are the file extensions and mime types of your thumbnails and images?
CHMOD is 777
All directories are correct per the readme.txt file.
All media (thumbnails and images) going into the module are .jpg files
I notice that there is no naming consistancy in the last 3 lines of the gallery_config.php file.
92 and 93 refer to gif jpg png
94 refers to gif jpeg pjepg png but no jpg
===== gallery_config.php =====
92 $gal_allowed_exts = 'gif jpg png';
93 $gal_allowed_thumbnail_exts = 'gif jpg png';
94 $gal_allowed_mime = 'image/gif image/jpeg image/pjpeg image/png';
The mime type of the images you're trying to upload aren't supported by gallery. You need to find the mime types of the images and add them to line 94 of gallery_config.php as necessary.