PHP从另一台服务器获取文件
我们有一个运行 PHP(Windows)的服务器。我们的 ISP 的硬盘空间不足,因此在另一台服务器 (Linux) 上设置了一个帐户用于文件存储。
在一种环境中运行脚本但将文件获取/放入另一种环境的最佳方法是什么?
如果您有任何示例,我将不胜感激。不确定我们是否应该研究 ftp 连接或更好的方法。
Linux 盒子上的文件将无法通过网络访问(在 http 之上)
谢谢, D
We have a server running PHP (windows). We've run out of HD space with our ISP and set up an account on another server (Linux) for file storage.
What is the best method for running the script in one environment, but getting/putting files to another.
If you have any examples I'd appreciate any pointers. Not sure is we should just look into an (s)ftp connection or a better method.
The files on the linux box will NOT be web accessible (above the http)
Thanks,
D
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设两台服务器位于同一 LAN 上,在 Linux 服务器上安装 Samba 并将 Windows 驱动器映射到它。
我为一个需要 TB 的音频文件容错存储的 Windows 应用程序执行了此操作。
Assuming both servers are on the same LAN, install Samba on the Linux server and map a Windows drive to it.
I did this for a Windows app that needed a terabyte of fault-tolerant storage for audio files.