What web server are you using? When your PHP code runs, who's account is it using to access the fileshare - does that user have rights to see the share?
UNC Path as local filesystem
I have an application which needs to run on windows due to some dependencies here.
I have to use my fileservers as storage either as a mounted drive or a UNC path. Both should work on the server. However i can't make it work in Laravel as a local filesystem.
If a add it as W:\ i get an error with the message: The root path W: is not readable.
If i add it as a UNC path like "\\storage\share" it creates the folder in C:\storage\share and usses this as the prefix.
As i'm bound to use either a mounted drive or UNC there's no reason to suggest other types of storage. I do know how to use other types but it simply can't be used here.
Any ideas on a solution is much appreciated. :)
Please or to participate in this conversation.