位于webroot中的文件上载插件忽略对目标文件夹的动态更改

时间:2013-02-06 09:23:12

标签: php session cakephp uploadify

我有什么:

我正在使用uploadify上传我正在编写的Intranet应用程序的文件。

我需要将文件上传到属于一个用户的目录(动态创建目录)。

我明显不正确的解决方案:)

在任何用户登录后,我创建了一个文件夹(标题为user_id)。

现在uploadify.php看起来像这样:

    session_name("test_tool_cookie");
    session_start();
    $targetFolder = '/test_tool/app/webroot/uploadify/' . $_SESSION['Auth']['User']['user_id']; //Relative to the root
    //the 3 lines above are my only change to the script
//$targetFolder = '/test_tool/app/webroot/uploadify/tmpFile'; //this was here before my changes

    if (!empty($_FILES)) {
        $tempFile = $_FILES['Filedata']['tmp_name'];
        $targetPath = $_SERVER['DOCUMENT_ROOT'] . $targetFolder;
        $targetFile = rtrim($targetPath,'/') . '/' . $_FILES['Filedata']['name'];

        // Validate the file type
        $fileTypes = array('html' , 'docx', 'pdf', 'xls', 'xlsx', 'txt'); // File extensions
        $fileParts = pathinfo($_FILES['Filedata']['name']);

        if (in_array($fileParts['extension'],$fileTypes)) {
            move_uploaded_file($tempFile,$targetFile);
            echo '1';
        } else {
            echo 'Invalid file type.';
        }
    }

问题

  • 上述脚本不会将文件上传到文件夹中(已选中和 不要在任何其他地方上传文件)。

  • 如果我将$ targetFile更改为静态值,它可以正常工作。

  • 会话值正确(但忽略)

还有什么可以获得回答的问题

如果您建议一个易于与cake php集成的好的multiupload插件(简短描述),我会将您的问题标记为答案,并且可以自定义,因此数据库中的每个对象都可以拥有自己的文件夹。

请考虑一下你的答案,这个问题的任何解决方案都会有很大的帮助。

2 个答案:

答案 0 :(得分:1)

您是否尝试使用示例here上的表单数据发送会话名称?

答案 1 :(得分:0)

您应该检查$_SERVER['DOCUMENT_ROOT']返回的内容。

因为如果它返回,请说/home/your_username/public_html/test_tool/app/webroot,我相信会发生什么,并且您要添加/test_tool/app/webroot/uploadify/,您将永远无法上传文件。

从我的角度来看,你应该做以下事情并保留原样:

// As long as $_SESSION['Auth']['User']['user_id'] has a value, it should work. If not, statically place a number there like /uploadify/1 to see if it works
$targetFolder = '/uploadify/' . $_SESSION['Auth']['User']['user_id']; //Relative to the root