PHP FWRITE - 无法写入网络驱动器

时间:2015-09-08 19:25:29

标签: php mysql fopen fwrite

我遇到的问题是我可以写入本地驱动器,但不能写入网络驱动器...我可以在两台计算机之间复制文件,但是fwrite不起作用...

   //works
   $myfile = fopen("D:\\mapcycle.txt", 'w') or die("Unable to open file!");

   //Does Not Work, Drive is properly mapped and can copy files from drive to drive via the lan
   $myfile = fopen("X:\\mapcycle.txt", 'w') or die("Unable to open file!"); 

   // Does not work
   $myfile = fopen("\\\\INSURGENCY\\mapcycle.txt", 'w') or die("Unable to open file!"); 

我检查了这些计算机之间的安全性,看起来它设置正确,但并没有说我没有错过任何东西。

  • 源服务器:Windows 2008R2,IIS ver 7.0,PHP 5.3.29,MYSQL Ver 5.5.23
  • 目标服务器:Windows 7 Professional

0 个答案:

没有答案