divadiva Posted January 30, 2009 Share Posted January 30, 2009 Experts, The requested URL /files/123.pdf was not found on this server. The problem is my code works in testserve not in production. When I try to upload a pdf file it doesnt uppload.Where as in test it works fine. Any suggetsions? Here is mycode if(count($_FILES) ) { $dir = '../files/'; //Only PDF is not loaded in Production where as it works in TestServer.Any suggestions? if(is_uploaded_file($_FILES['file_configuration_file']['tmp_name'])) { copy($_FILES['file_configuration_file']['tmp_name'], $dir.$_FILES['file_configuration_file']['name']); $configuration_file = $_FILES['file_configuration_file']['name']; } } Link to comment https://forums.phpfreaks.com/topic/143149-file-not-found-error/ Share on other sites More sharing options...
phpSensei Posted January 30, 2009 Share Posted January 30, 2009 Maybe its your folder permissions on the server... Link to comment https://forums.phpfreaks.com/topic/143149-file-not-found-error/#findComment-750739 Share on other sites More sharing options...
landavia Posted January 30, 2009 Share Posted January 30, 2009 hmmm.. let me guest u put this script on c:\phpdoc\myscript\script.php and the folder (files) on c:\phpdoc\files\ ??? Link to comment https://forums.phpfreaks.com/topic/143149-file-not-found-error/#findComment-750746 Share on other sites More sharing options...
divadiva Posted January 30, 2009 Author Share Posted January 30, 2009 Thankyou for replying. The problem is only with pdf.I can upload jpg in it.File permission is set to octal:777.But in Testserver pdf also works.Anycomments? Shoould I put a check so if its pdf it should upload? Link to comment https://forums.phpfreaks.com/topic/143149-file-not-found-error/#findComment-750749 Share on other sites More sharing options...
revraz Posted January 30, 2009 Share Posted January 30, 2009 Know that folder and file names are case sensitive on Unix/Linux. Verify that it is lower case on the server. Link to comment https://forums.phpfreaks.com/topic/143149-file-not-found-error/#findComment-750758 Share on other sites More sharing options...
divadiva Posted January 30, 2009 Author Share Posted January 30, 2009 It is in the lower case I have checked it.Please help me out.Thanks!! Link to comment https://forums.phpfreaks.com/topic/143149-file-not-found-error/#findComment-750763 Share on other sites More sharing options...
divadiva Posted January 30, 2009 Author Share Posted January 30, 2009 Any suggestion?? Link to comment https://forums.phpfreaks.com/topic/143149-file-not-found-error/#findComment-750794 Share on other sites More sharing options...
landavia Posted January 31, 2009 Share Posted January 31, 2009 don't use extension PDF? try other extension but not pdf? Link to comment https://forums.phpfreaks.com/topic/143149-file-not-found-error/#findComment-751049 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.