在Socialengine中移动上传的文件

时间:2017-03-08 08:29:20

标签: socialengine

我尝试通过socialengine中的浏览操作从/ public / user /移动上传文件到/ Files / SE /使用
1。     $ fileobj = new Zend_Cloud_StorageService_Adapter_FileSystem();     $ fileobj-> moveItem($ sourcePath,$ destinationpath);

  1. move_uploaded_file($ sourcePath,$ destinationpath); 这两个都无法移动文件。我已经检查了路径,它们是完美的,并与其他框架一起使用

2 个答案:

答案 0 :(得分:0)

您应该使用Storage模块的API,它允许您创建临时文件(当您需要调整图像大小或转换视频时),然后将它们放入公共存储中。将在engine4_storage_files表格中跟踪此文件。

答案 1 :(得分:0)

我通过在存储>下使用createSystemFile()函数来实现它。型号> DbTable> Files.php

我创建了一个类似于此的函数,并将parent_type作为我想在文件中移动的文件夹。