Click to See Complete Forum and Search --> : [RESOLVED] Windows to Linux - Images


Nate1
08-20-2007, 03:37 PM
Warning: move_uploaded_file(..\Products\1200600frontlinepaninithumb.gif) [function.move-uploaded-file]: failed to open stream: Permission denied in /home/caterw/public_html/Admin/Admin_AddProduct.php on line 105


The upload works on my PC (Windows) but not on the server.

//Works ALways Upload Main Image
move_uploaded_file($_FILES["filPhoto"]["tmp_name"], "..\\Products\\".$strMainimg); //Saving

I changed the permissions to 777, what else do I need to do?

Nate1
08-20-2007, 03:43 PM
Sorry Linux Server

MrCoder
08-20-2007, 03:55 PM
Maybe you need to use the full path?

"/home/caterw/public_html/Products/"

Nate1
08-20-2007, 04:39 PM
Yeah That worked thanks

$strPath=$_SERVER["DOCUMENT_ROOT"];

move_uploaded_file($_FILES["filPhoto"]["tmp_name"], $strPath."/Products/".$strMainimg);