English 中文(简体)
Plupload upload filename issues
原标题:

I have been successful in porting over plupload into Codeigniter, but when a user uploads a file, the filename comes out like this: _1, _2, _3, etc.

What could be causing this error?

Here is my CodeIgniter Controller:

function do_upload($fileName) {
        // Settings
            $targetDir = getcwd() . "/uploads/";
            $cleanupTargetDir = false; // Remove old files
            $maxFileAge = 60 * 60; // Temp file age in seconds
            // 5 minutes execution time
            @set_time_limit(5 * 60);
            // usleep(5000);
            // Get parameters
            $chunk = isset($_REQUEST["chunk"]) ? $_REQUEST["chunk"] : 0;
            $chunks = isset($_REQUEST["chunks"]) ? $_REQUEST["chunks"] : 0;
            // Clean the fileName for security reasons
            $fileName = preg_replace( /[^w._]+/ ,   , $fileName);
            // Create target dir
            if (!file_exists($targetDir))
                @mkdir($targetDir);
            // Remove old temp files
            if (is_dir($targetDir) && ($dir = opendir($targetDir))) {
                while (($file = readdir($dir)) !== false) {
                    $filePath = $targetDir . DIRECTORY_SEPARATOR . $file;
                    // Remove temp files if they are older than the max age
                    if (preg_match( /\.tmp$/ , $file) && (filemtime($filePath) < time() - $maxFileAge))
                        @unlink($filePath);
                }
                closedir($dir);
            } else
                die( {"jsonrpc" : "2.0", "error" : {"code": 100, "message": "Failed to open temp directory."}, "id" : "id"} );
            // Look for the content type header
            if (isset($_SERVER["HTTP_CONTENT_TYPE"]))
                $contentType = $_SERVER["HTTP_CONTENT_TYPE"];
            if (isset($_SERVER["CONTENT_TYPE"]))
                $contentType = $_SERVER["CONTENT_TYPE"];
            if (strpos($contentType, "multipart") !== false) {
                if (isset($_FILES[ file ][ tmp_name ]) && is_uploaded_file($_FILES[ file ][ tmp_name ])) {
                    // Open temp file
                    $out = fopen($targetDir . DIRECTORY_SEPARATOR . $fileName, $chunk == 0 ? "wb" : "ab");
                    if ($out) {
                        // Read binary input stream and append it to temp file
                        $in = fopen($_FILES[ file ][ tmp_name ], "rb");
                        if ($in) {
                            while ($buff = fread($in, 4096))
                                fwrite($out, $buff);
                        } else
                            die( {"jsonrpc" : "2.0", "error" : {"code": 101, "message": "Failed to open input stream."}, "id" : "id"} );
                        fclose($out);
                        unlink($_FILES[ file ][ tmp_name ]);
                    } else
                        die( {"jsonrpc" : "2.0", "error" : {"code": 102, "message": "Failed to open output stream."}, "id" : "id"} );
                } else
                    die( {"jsonrpc" : "2.0", "error" : {"code": 103, "message": "Failed to move uploaded file."}, "id" : "id"} );
            } else {
                // Open temp file
                $out = fopen($targetDir . DIRECTORY_SEPARATOR . $fileName, $chunk == 0 ? "wb" : "ab");
                if ($out) {
                    // Read binary input stream and append it to temp file
                    $in = fopen("php://input", "rb");
                    if ($in) {
                        while ($buff = fread($in, 4096))
                            fwrite($out, $buff);
                    } else
                        die( {"jsonrpc" : "2.0", "error" : {"code": 101, "message": "Failed to open input stream."}, "id" : "id"} );
                    fclose($out);
                } else
                    die( {"jsonrpc" : "2.0", "error" : {"code": 102, "message": "Failed to open output stream."}, "id" : "id"} );
            }
            // Return JSON-RPC response
            die( {"jsonrpc" : "2.0", "result" : null, "id" : "id"} );
        }

External Links:
CodeIgniter
Plupload

问题回答

I know this is an old question, and you probably figured it out - but for anyone else who comes across it like me: In your javascript function that configs, or binds, any of the plupload functions - are you passing in up and file params? e.g.: flashuploader.bind( BeforeUpload , function(up,file){//TODO});

up and file are members somewhere along the line of pluploads - just not sure exactly where they come from.

Initially I was only passing in the file array and the name was undefined, but the id existed - weird. But, adding up to the param list fixed my issues.





相关问题
ajax login using httpRequest?

I am trying to develop my login script to give feedback to the user if the login is valid or not. Basically if it isn t correct a div box will show saying its wrong, if its correct it will show its ...

Virtual Tour using sketch up, ajax, flash technologies

I want to know if there are existing technology that make your 3d models in sketch into virtual tours, using either Ajax or Flash for web presentation. If there s none, which will be a good approach ...

How can i update div continuously

I have asp.net application where i have a div which showing the value from other site. The value of that site is changing continuously. I want that my div will automatically update in some interval ...

热门标签