I am trying to upload file using php. I am using the function move_uploaded_file. However it work okay in my local machine but when I test it in the server , it is not working. How can I know what is missing in my server.
Thanks IN advance.
|
|
I am trying to upload file using php. I am using the function move_uploaded_file. However it work okay in my local machine but when I test it in the server , it is not working. How can I know what is missing in my server. Thanks IN advance.
|
||
|
|
|
|
Check if those variables in |
||
|
|
|
|
Check the output of php_info() to see if the server allows file uploading - the 'file_uploads' property. If not, it must be configured to allow it. |
||
|
|
|
|
whenever you face problems in PHP, I suggest checking out log files of the web server. in this situation, I think it could be PHP configurations. check your PHP configurations and make sure that file uploads are allowed on the web server. PHP configurations are stored in a php.ini file. to find out more information, create a simple php file, say info.php and enter these lines in it:
upload info.php to your server and open the page in your web browser. try to find "file_uploads". it should be "on". if it is off, find your php.ini file and change the value of "file_uploads" to "on". |
||
|
|
|
|
I had a problem with upload where it would upload the files but it gave the files no permissions so if you tried to open them from a browser it would appear as they are not there. You might want to check to see if this is what happening. |
||
|
|