Is it possible to get a remote webserver to read from my hard drive? I would like to make an uploader PHP to my website so I don't have to do it with the companies input boxes.
Printable View
Is it possible to get a remote webserver to read from my hard drive? I would like to make an uploader PHP to my website so I don't have to do it with the companies input boxes.
well, if you have root access to the server you could mount a networkdrive/path on this machine targeting yours.
now the script on the webserver can access this mountpath, if it has the rights to do this.
otherwise...
you have to set up a script on your local machine and let the two of them communicate with each other. the script on your machine can read the local files, read them and submit them to the script on the server.