-
Browse server
Hello!
I would like to enable the client to browse another partition on my HDD (not the one where the server is) and download a file.
Is it possible?
I thought about something like this:
PHP Code:
<input type="button" name="Button" value="Download"
onClick="window.open('//ip/file:///G:/', 'download');
return false;">
-
Re: Browse server
If you open that partition to the world with some sort of sharing capability, yes. But, that's a serious security problem.
The safest route would be to have the server, which already has access to that partition, to read the files and give the users access through an intermediate server page.
-
Re: Browse server
Thank you Peej, i will try to do the safe way then.