I have XAMPP Server on Windows with IP Address : 192.168.184.215
Then I have Log Data Server on Windows with IP Address : 192.168.184.13
And now I'm running below PHP code(test.php) on browser from Log Data Server (call http://192.168.184.215/test.php):
fopen('\\\\192.168.184.13\\Test Folder\\a.txt', 'r');
- I have shared the Test Folder for Everyone access.
But I got error:
Warning: fopen(\\192.168.184.13\Test Folder\a.txt): failed to open stream: Permission denied
I'm trying to open directly on windows explorer: \\192.168.184.13\Test Folder\a.txt
it can be opened.
Is it possible to do that?