子域到主域文件上传

时间:2016-03-27 20:52:59

标签: upload directory

如何将子域中的表单(http://abc.domain.com/register-form.php和save.php位于子域文件夹中)上传到主域中的文件夹(上传) - >外部子域名文件夹。?

主域名public_html: 上传 abc->子域位置 的index.php ....

由于

1 个答案:

答案 0 :(得分:2)

如果您的两个网站位于同一台服务器上,则可以正常工作。

我猜你正在使用这样的东西 move_uploaded_file($ _ FILES ['userfile'] ['tmp_name'],$ uploadfile)

$ uploadfile现在应该指向您想要拥有该文件的位置。 例如$ uploadfile =“/ var / www / main_domain / cool_uploads / afile”。

确保允许运行子域的http服务器写入$ uploadfile描述的文件夹。