I'm creating a web-based interface to manage images/photos for a promotional campaign at work. Here's what I'm trying so desperately to do....
- Users log on, complete a form (name, e-mail, etc), and upload a picture.
- The information and the picture are stored in a MySQL database. The picture/image is stored as a BLOB in the MySQL database.
- Using a web-based administration interface, I'll be able to see all of the entries, view the pictures, and information.
HERE'S THE PROBLEM I'M HAVING:
It appears small pictures upload just fine, but larger images do not. They get cut off when I go to look at them. Here is an example of the problem I'm experiencing: http://mydomain.com/KSBY/Admin/Details.php?Number=74. The username/password you'll need to see this is KSBY and ksby respectively.
I don't understand why I'm having this problem. I've beefed up my file size upload limit in PHP.ini and rebooted my server to no avail. My PHP.ini file is below:
;;;;;;;;;;;;;;;;
; File Uploads ;
;;;;;;;;;;;;;;;;
; Whether to allow HTTP file uploads.
file_uploads = On
; Temporary directory for HTTP uploaded files (will use system default if not
; specified).
upload_tmp_dir = C:\Program Files\Apache Group\Apache\htdocs\KSBY\Upload ; temporary directory for HTTP uploaded files (will use system default if not specified)
; Maximum allowed size for uploaded files.
upload_max_filesize = 10M
Any ideas?