473,395 Members | 1,379 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Retrieving full path of file on upload to php script

Don
How do I retrieve the full path (C:\.....filename) of a file uploaded to a php script on the server.
I think $_FILES will only provide 'name', which is only the filename itself.

Thanks, Don
----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= East/West-Coast Server Farms - Total Privacy via Encryption =---
Jul 17 '05 #1
9 5386
Don wrote:
How do I retrieve the full path (C:\.....filename) of a file uploaded
to a php script on the server.
That information usually isn't sent. And see RFC2183 sec.
2.3 (http://www.ietf.org/rfc/rfc2183.txt ).
I think $_FILES will only provide 'name', which is only the filename
itself.


But $_FILES['foo']['name'] will be empty if no filename is
given to the server. Although they 'should attempt to
supply a file name for each submitted file' (HTML4.01 sec.
17.3.4), user agents are not required to supply them.

HAGW!

--
Jock
Jul 17 '05 #2
John Dunlop <us*********@john.dunlop.name> wrote in
news:MP************************@News.Individual.NE T:
Don wrote:
How do I retrieve the full path (C:\.....filename) of a file uploaded
to a php script on the server.


That information usually isn't sent. And see RFC2183 sec.
2.3 (http://www.ietf.org/rfc/rfc2183.txt ).
I think $_FILES will only provide 'name', which is only the filename
itself.


But $_FILES['foo']['name'] will be empty if no filename is
given to the server. Although they 'should attempt to
supply a file name for each submitted file' (HTML4.01 sec.
17.3.4), user agents are not required to supply them.

HAGW!


I wonder if javascript could get it from the fileupload box, attach it to
a hidden form, which is available on the next page as a post. Never tried
it tho.
Jul 17 '05 #3
Don
On Sat, 23 Oct 2004 17:29:44 -0000, Theo <in*****@noemail.com> wrote:
John Dunlop <us*********@john.dunlop.name> wrote in
news:MP************************@News.Individual.N ET:
Don wrote:
How do I retrieve the full path (C:\.....filename) of a file uploaded
to a php script on the server.


That information usually isn't sent. And see RFC2183 sec.
2.3 (http://www.ietf.org/rfc/rfc2183.txt ).
I think $_FILES will only provide 'name', which is only the filename
itself.


But $_FILES['foo']['name'] will be empty if no filename is
given to the server. Although they 'should attempt to
supply a file name for each submitted file' (HTML4.01 sec.
17.3.4), user agents are not required to supply them.

HAGW!


I wonder if javascript could get it from the fileupload box, attach it to
a hidden form, which is available on the next page as a post. Never tried
it tho.

I'm not sure how to construct the javascript to do what you recommend. Can you show me an example?
Thanks, Don
----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= East/West-Coast Server Farms - Total Privacy via Encryption =---
Jul 17 '05 #4
Don <no@adr.com> wrote in
news:q6********************************@4ax.com:
On Sat, 23 Oct 2004 17:29:44 -0000, Theo <in*****@noemail.com> wrote:
John Dunlop <us*********@john.dunlop.name> wrote in
news:MP************************@News.Individual. NET:
Don wrote:

How do I retrieve the full path (C:\.....filename) of a file
uploaded to a php script on the server.

That information usually isn't sent. And see RFC2183 sec.
2.3 (http://www.ietf.org/rfc/rfc2183.txt ).

I think $_FILES will only provide 'name', which is only the
filename itself.

But $_FILES['foo']['name'] will be empty if no filename is
given to the server. Although they 'should attempt to
supply a file name for each submitted file' (HTML4.01 sec.
17.3.4), user agents are not required to supply them.

HAGW!


I wonder if javascript could get it from the fileupload box, attach it
to a hidden form, which is available on the next page as a post. Never
tried it tho.

I'm not sure how to construct the javascript to do what you recommend.
Can you show me an example? Thanks, Don
----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet
News==---- http://www.newsfeeds.com The #1 Newsgroup Service in the
World! >100,000 Newsgroups ---= East/West-Coast Server Farms - Total
Privacy via Encryption =---


try this...

assuming you have the standard fileupload box in a form, call it myimage,
and the form is myform, add an onfocus function call to the upload box to
call a function named as you choose.

In the box put
onFocus="passfilename();"

In the function put:
filename = document.myform.myimage.value;

'filename' will be whatever is in the box. then attach that value to the
hidden field with

document.myform.hiddenfield.value = filename;

and submit the form.

use POST to get the value as you would any other. dont know whether it
will balk at the slashes and colon.
Jul 17 '05 #5
Don
On Sun, 24 Oct 2004 00:33:53 -0000, Theo <in*****@noemail.com> wrote:
Don <no@adr.com> wrote in
news:q6********************************@4ax.com :
On Sat, 23 Oct 2004 17:29:44 -0000, Theo <in*****@noemail.com> wrote:
John Dunlop <us*********@john.dunlop.name> wrote in
news:MP************************@News.Individual .NET:

Don wrote:

> How do I retrieve the full path (C:\.....filename) of a file
> uploaded to a php script on the server.

That information usually isn't sent. And see RFC2183 sec.
2.3 (http://www.ietf.org/rfc/rfc2183.txt ).

> I think $_FILES will only provide 'name', which is only the
> filename itself.

But $_FILES['foo']['name'] will be empty if no filename is
given to the server. Although they 'should attempt to
supply a file name for each submitted file' (HTML4.01 sec.
17.3.4), user agents are not required to supply them.

HAGW!
I wonder if javascript could get it from the fileupload box, attach it
to a hidden form, which is available on the next page as a post. Never
tried it tho.

I'm not sure how to construct the javascript to do what you recommend.
Can you show me an example? Thanks, Don
----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet
News==---- http://www.newsfeeds.com The #1 Newsgroup Service in the
World! >100,000 Newsgroups ---= East/West-Coast Server Farms - Total
Privacy via Encryption =---


try this...

assuming you have the standard fileupload box in a form, call it myimage,
and the form is myform, add an onfocus function call to the upload box to
call a function named as you choose.

In the box put
onFocus="passfilename();"

In the function put:
filename = document.myform.myimage.value;

'filename' will be whatever is in the box. then attach that value to the
hidden field with

document.myform.hiddenfield.value = filename;

and submit the form.

use POST to get the value as you would any other. dont know whether it
will balk at the slashes and colon.

Theo,

IT WORKS!! I did exactly as you recommended, and it works just great. You don't know how relieved
I am that this is working. Thank you so much. I don't know what I'd do without these news groups.
What a tremendous asset. When I'm good enough, I expect to do my share of helping others.

Thanks again,
Don
----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= East/West-Coast Server Farms - Total Privacy via Encryption =---
Jul 17 '05 #6
On Sat, 23 Oct 2004 19:45:44 -0700, in comp.lang.php Don <no@adr.com>
wrote:
| On Sun, 24 Oct 2004 00:33:53 -0000, Theo <in*****@noemail.com> wrote:
[snip]
| >try this...
| >
| >assuming you have the standard fileupload box in a form, call it myimage,
| >and the form is myform, add an onfocus function call to the upload box to
| >call a function named as you choose.
| >
| >In the box put
| >onFocus="passfilename();"
| >
| >In the function put:
| >filename = document.myform.myimage.value;
| >
| >'filename' will be whatever is in the box. then attach that value to the
| >hidden field with
| >
| >document.myform.hiddenfield.value = filename;
| >
| >and submit the form.
| >
| >use POST to get the value as you would any other. dont know whether it
| >will balk at the slashes and colon.
|
|
| Theo,
|
| IT WORKS!! I did exactly as you recommended, and it works just great. You don't know how relieved
| I am that this is working. Thank you so much. I don't know what I'd do without these news groups.
| What a tremendous asset. When I'm good enough, I expect to do my share of helping others.


Don, just out of curiosity, why do you want the information on where
the users is uploading the file from?
---------------------------------------------------------------
jn****@yourpantsbigpond.net.au : Remove your pants to reply
---------------------------------------------------------------
Jul 17 '05 #7
Don
On Sun, 24 Oct 2004 08:46:02 GMT, Jeff North <jn****@yourpantsbigpond.net.au> wrote:
On Sat, 23 Oct 2004 19:45:44 -0700, in comp.lang.php Don <no@adr.com>
wrote:
| On Sun, 24 Oct 2004 00:33:53 -0000, Theo <in*****@noemail.com> wrote:


[snip]
| >try this...
| >
| >assuming you have the standard fileupload box in a form, call it myimage,
| >and the form is myform, add an onfocus function call to the upload box to
| >call a function named as you choose.
| >
| >In the box put
| >onFocus="passfilename();"
| >
| >In the function put:
| >filename = document.myform.myimage.value;
| >
| >'filename' will be whatever is in the box. then attach that value to the
| >hidden field with
| >
| >document.myform.hiddenfield.value = filename;
| >
| >and submit the form.
| >
| >use POST to get the value as you would any other. dont know whether it
| >will balk at the slashes and colon.
|
|
| Theo,
|
| IT WORKS!! I did exactly as you recommended, and it works just great. You don't know how relieved
| I am that this is working. Thank you so much. I don't know what I'd do without these news groups.
| What a tremendous asset. When I'm good enough, I expect to do my share of helping others.


Don, just out of curiosity, why do you want the information on where
the users is uploading the file from?
---------------------------------------------------------------
jn****@yourpantsbigpond.net.au : Remove your pants to reply
---------------------------------------------------------------


Jeff,

It's complicated. I'm providing an improved version of a chat group page which has very limited
capability for attaching pictures. I'm reading in the original page, modifying it to include adding
browse boxes for uploading pictures. The user clicks on a "Preview" button, afterwhich a
server-side php script uploads the files, then provides back to the client page a preview of the
results of his pending post. That preview includes the same form data that he entered on the
original page, including the file browse boxes. This allows him the opportunity to make any
changes, afterwhich he clicks on "Previw" again, or "Post", which sends the info to the original
chat group for posting.. Everything seems to work okay, but now just discovered even though I have
the full path to his original file, I can't populate the original browse box for a <input
type=file...>. DARN! Guess the browser is designed that way for security reasons. So, guess I'll
have to come up with another approach. This has been a real learning curve for me, but I'm having
fun. Things are coming together pretty well. Just wish I could come up with an answer on this one.
If you have any ideas I'd appreciate your feedback.

Thanks for your inquiry.
Regards, Don
----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= East/West-Coast Server Farms - Total Privacy via Encryption =---
Jul 17 '05 #8
On Sun, 24 Oct 2004 05:00:00 -0700, in comp.lang.php Don <no@adr.com>
wrote:
| On Sun, 24 Oct 2004 08:46:02 GMT, Jeff North <jn****@yourpantsbigpond.net.au> wrote:
|
| >On Sat, 23 Oct 2004 19:45:44 -0700, in comp.lang.php Don <no@adr.com>
| >wrote:
[snip]
| >Don, just out of curiosity, why do you want the information on where
| >the users is uploading the file from?
| >---------------------------------------------------------------
| >jn****@yourpantsbigpond.net.au : Remove your pants to reply
| >---------------------------------------------------------------
|
| Jeff,
|
| It's complicated. I'm providing an improved version of a chat group page which has very limited
| capability for attaching pictures. I'm reading in the original page, modifying it to include adding
| browse boxes for uploading pictures. The user clicks on a "Preview" button, afterwhich a
| server-side php script uploads the files, then provides back to the client page a preview of the
| results of his pending post. That preview includes the same form data that he entered on the
| original page, including the file browse boxes. This allows him the opportunity to make any
| changes, afterwhich he clicks on "Previw" again, or "Post", which sends the info to the original
| chat group for posting.. Everything seems to work okay, but now just discovered even though I have
| the full path to his original file, I can't populate the original browse box for a <input
| type=file...>. DARN! Guess the browser is designed that way for security reasons. So, guess I'll
| have to come up with another approach. This has been a real learning curve for me, but I'm having
| fun. Things are coming together pretty well. Just wish I could come up with an answer on this one.
| If you have any ideas I'd appreciate your feedback.
|
| Thanks for your inquiry.


I don't know if this is going to help or hinder your progress.
If you look at the discussion forum on
http://www.interactivetools.com/foru....cgi?forum=18; then do a
search on image, image preview etc. The basic app (htmlArea) simply
has a dialog box where you type in the url of the image. Other people
have wanted image preview (amongst other things). It might give you an
idea of what is involved. You might even find some code there that you
can use.

Also, if you still have the full path and filename in the input box
you might want to prepend file:/// to the name.
---------------------------------------------------------------
jn****@yourpantsbigpond.net.au : Remove your pants to reply
---------------------------------------------------------------
Jul 17 '05 #9
Don
On Sun, 24 Oct 2004 15:34:27 GMT, Jeff North <jn****@yourpantsbigpond.net.au> wrote:
On Sun, 24 Oct 2004 05:00:00 -0700, in comp.lang.php Don <no@adr.com>
wrote:
| On Sun, 24 Oct 2004 08:46:02 GMT, Jeff North <jn****@yourpantsbigpond.net.au> wrote:
|
| >On Sat, 23 Oct 2004 19:45:44 -0700, in comp.lang.php Don <no@adr.com>
| >wrote:


[snip]
| >Don, just out of curiosity, why do you want the information on where
| >the users is uploading the file from?
| >---------------------------------------------------------------
| >jn****@yourpantsbigpond.net.au : Remove your pants to reply
| >---------------------------------------------------------------
|
| Jeff,
|
| It's complicated. I'm providing an improved version of a chat group page which has very limited
| capability for attaching pictures. I'm reading in the original page, modifying it to include adding
| browse boxes for uploading pictures. The user clicks on a "Preview" button, afterwhich a
| server-side php script uploads the files, then provides back to the client page a preview of the
| results of his pending post. That preview includes the same form data that he entered on the
| original page, including the file browse boxes. This allows him the opportunity to make any
| changes, afterwhich he clicks on "Previw" again, or "Post", which sends the info to the original
| chat group for posting.. Everything seems to work okay, but now just discovered even though I have
| the full path to his original file, I can't populate the original browse box for a <input
| type=file...>. DARN! Guess the browser is designed that way for security reasons. So, guess I'll
| have to come up with another approach. This has been a real learning curve for me, but I'm having
| fun. Things are coming together pretty well. Just wish I could come up with an answer on this one.
| If you have any ideas I'd appreciate your feedback.
|
| Thanks for your inquiry.


I don't know if this is going to help or hinder your progress.
If you look at the discussion forum on
http://www.interactivetools.com/foru....cgi?forum=18; then do a
search on image, image preview etc. The basic app (htmlArea) simply
has a dialog box where you type in the url of the image. Other people
have wanted image preview (amongst other things). It might give you an
idea of what is involved. You might even find some code there that you
can use.

Also, if you still have the full path and filename in the input box
you might want to prepend file:/// to the name.
---------------------------------------------------------------
jn****@yourpantsbigpond.net.au : Remove your pants to reply
---------------------------------------------------------------


Thanks Jeff. I checked out that forum. It looks like it should be of great help.
Regards,
Don
----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= East/West-Coast Server Farms - Total Privacy via Encryption =---
Jul 17 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Willoughby Bridge | last post by:
I am having trouble with a file upload script. Have tried a lot of different methods and the problem boils down to the $_FILES variable not being picked up. Below is a simple example of...
2
by: SU_Oran | last post by:
I found this when searching. I need to have a simple script that will upload a single file. It is giving me an error on Set upl = Server.CreateObject("ASPSimpleUpload.Upload") It is saying : ...
2
by: Chuck | last post by:
Hi, can anyone provide or point me in the direction of a simple python file upload script? I've got the HTML form part going but simply putting the file in a directory on the server is what I'm...
7
by: gmax2006 | last post by:
Hi, I use RedHat linux. How can I find where exactly the current python script is running? I use this code: #test.py import os,sys
7
by: pbd22 | last post by:
hi. i am having probs understanding how to grab a file being uploaded from a remote client. i am using hidden input fields for upload such as: <input id="my_file_element" type="file"...
1
by: fatjoez | last post by:
Hey there. I've been trying to modify my file upload script so that it handles 10 files instead of one. i was thinking the most straightforward way would be to add a FOR LOOP? placed...
0
by: wasif | last post by:
I am trying to upload file using ajax and php but having some problems. it always says that there was a problem and file is not uploaded. here is the code form and ajax code <!DOCTYPE html...
1
by: kksandeep | last post by:
i am using this three files to uplod file. i got this file from net but i think these have some error. i am new to this field plz help the script i found is some helpful but not too that i need ...
24
by: owz2008 | last post by:
This has probably been covered before but could not find a similar thread. Basically I have created a form which can be viewed at www.icomworks.co.uk/canvaspayform.html I want to submit the...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.