|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Be the architects of evolution and help create the mobile internet future. It’s your move---enter to win here! |
|
#1
|
|||
|
|||
|
I can't upload file from client
I can't upload file from client when run a uploadfile programming while can upload file from localhost.
The error return when run php script from clien: Unable to open 'path_on_client:\filename_on_clien' for reading.No such file or directory in 'paht_on_server:\dirctory_on_server\...' on line ... Please , help me . I thank very much |
|
#2
|
|||
|
|||
|
RE: I can't upload file from client
Show us your script. but a script can't access 'path_on_client:\filename_on_client', else security would have some serious issues. The file needs to be sent to the server (ie. script), PHP will store the uploaded file to a temporary directory and then you need to copy it before the script ends..
|
|
#3
|
|||
|
|||
|
RE: RE: I can't upload file from client
Quote:
|
|
#4
|
|||
|
|||
|
RE: I can't upload file from client
Modify your form tag to be :
<form action="uploadfile.php" method="post" method=multipart/form-data> then in your code print_r($HTTP_POST_FILES) to have a lookie at the array it returns. You should be able to use move_uploaded_file($HTTP_POST_FILES["userfile"]["tmp_name"], $pathonServer).. |
|
#5
|
|||
|
|||
|
RE: I can't upload file from client
Your guides are very wonderful.I done successfully.Thank you very much and see you again .
|
|
#6
|
|||
|
|||
|
RE: I can't upload file from client
Do you know scripts like "response.redirect" command in ASP?
|
|
#7
|
|||
|
|||
|
RE: I can't upload file from client
|
|
#8
|
|||
|
|||
|
RE: I can't upload file from client
How can I save a result set returned from a php into a html file ?
|
|
#9
|
|||
|
|||
|
RE: I can't upload file from client
Huh? what do you actually want to save to html?
|
![]() |
| Viewing: Codewalkers Forums > PHP Related > PHP Coding > I can't upload file from client |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|
|
|