Hello, I have a very simple routine for inserting blob data (a jpg) into a MySQL database. I have this page deployed on both my local - WINDOWS server, and my production FreeBSD UNIX server. Both of these implementations point at the same production MySQL server. Running the routine from my local server inserts the BLOB with no problems into the DB, however runing the same exact script from the production server produces the following results:
Warning: fopen(C:\test\test.jpg): failed to open stream: No such file or directory in /urs/www/users/millersh/admin/Edit.php on line 25
The strange this is how this works great on my local windows server. Obviously there is a php value or something that needs to be configured on the production (UNIX) server - I have already tried the following:
php_value magic_quotes_gpc "1" and also "On"
php_value upload_max_filesize "10M"
php_value file_uploads "1" and also "On"
php_value upload_tmp_dir "/usr/www/users/millersh/temp/" (this directory has write access on the server)
The windows server PHP info is as follows:
http://sheahome1.no-ip.com/PHPInfo
The UNIX php info is as follows:
http://www.millershea.com/php_info
PLEASE HELP!!!! I thank you kindly in advance.