pakenney38 Posted July 27, 2006 Share Posted July 27, 2006 Is it possible to use a form to upload a file to a location outside the webroot folder? I've been able to do it anywhere within the webroot. Quote Link to comment https://forums.phpfreaks.com/topic/15837-upload-file-to-location-outside-of-webroot/ Share on other sites More sharing options...
pakenney38 Posted July 27, 2006 Author Share Posted July 27, 2006 I should note that this PHP server is installed on a Windows-based IIS server. Quote Link to comment https://forums.phpfreaks.com/topic/15837-upload-file-to-location-outside-of-webroot/#findComment-64848 Share on other sites More sharing options...
phil.t Posted July 28, 2006 Share Posted July 28, 2006 Try using a virtual directory. This description assumes you have Administrative priviledges over the server in question.In the IIS manager right click the name of your site, and select New-->Virtual Directory. This will take you through a series of dialogs where you select an alias, and the physical location of the directory (this could be anywhere). In your PHP code just use the alias as your target directory.You will want to pay careful attention to your NTFS and IIS permissions for the physical directory. IUSR will need write permissions to copy the file, though if this is implemented carelessly it could pose a security risk.I recommend the above approach, but I've also accomplished this by using the absolute path to the directory (i.e. D:\uploads\). Quote Link to comment https://forums.phpfreaks.com/topic/15837-upload-file-to-location-outside-of-webroot/#findComment-64950 Share on other sites More sharing options...
redarrow Posted July 28, 2006 Share Posted July 28, 2006 \\uploads\\ Quote Link to comment https://forums.phpfreaks.com/topic/15837-upload-file-to-location-outside-of-webroot/#findComment-64951 Share on other sites More sharing options...
phil.t Posted July 28, 2006 Share Posted July 28, 2006 oh, and it's always a good idea to escape your \'s. Thanks. Quote Link to comment https://forums.phpfreaks.com/topic/15837-upload-file-to-location-outside-of-webroot/#findComment-64955 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.