404在WordPress上使用Uploadify上载文件时出错

时间:2012-12-31 22:37:45

标签: php wordpress http-status-code-404 uploadify

我最近在我的网站http://tradersprinting.com/contact/send-file-2/上安装了uploadifive,每次尝试上传文件时都会遇到404错误。

该网站由WordPress内容管理系统提供支持,该网站托管在1& 1上。 uploadify文件存储在以下目录中:“http://tradersprinting.com/wp-content/themes/traders/uploadify”。 WordPress函数“bloginfo('template_directory')”返回“http://tradersprinting.com/wp-content/themes/traders/”。目前所有东西都处于“出厂设置”而没有任何调整,保存下面附带的代码片段:

页面上的代码http://tradersprinting.com/contact/send-file-2/

  <?php
    chmod("wp-content/themes/traders/uploads/",0777);
    chmod("wp-content/themes/traders/uploadify/uploads/",0777);
  ?>
  <script src="<?php bloginfo('template_directory'); ?>/uploadify/jquery.min.js" type="text/javascript">
  </script>
  <script src="<?php bloginfo('template_directory'); ?>/uploadify/jquery.uploadifive.min.js" type="text/javascript">
  </script>
  <link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory'); ?>/uploadify/uploadifive.css">
  <style type="text/css">
    body {
      font: 13px Arial, Helvetica, Sans-serif;
    }
    .uploadifive-button {
      float: left;
      margin-right: 10px;
    }
    #queue {
      border: 1px solid #E5E5E5;
      height: 177px;
      overflow: auto;
      margin-bottom: 10px;
      padding: 0 3px 3px;
      width: 300px;
    }
  </style>
  <form>
    <div id="queue">
    </div>
    <input id="file_upload" name="file_upload" type="file" multiple="true">
    <a style="position: relative; top: 8px;" href="javascript:$('#file_upload').uploadifive('upload')">Upload Files</a>
  </form>
  <script type="text/javascript">
    <?php $timestamp = time();?>
      $(function() {
      $('#file_upload').uploadifive({
        'auto'             : false,
        'checkScript'      : 'check-exists.php',
        'formData'         : {
          'timestamp' : '<?php echo $timestamp;?>',
          'token'     : '<?php echo md5('unique_salt' . $timestamp);?>'
        },
        'queueID'          : 'queue',
        'uploadScript'     : 'uploadifive.php',
        'onUploadComplete' : function(file, data) { console.log(data); }
      });
    });
  </script>

我的uploadifive.php副本

<?php
/*
UploadiFive
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
*/

// Set the uplaod directory
$uploadDir = '/uploads/';

// Set the allowed file extensions
$fileTypes = array('jpg', 'jpeg', 'gif', 'png'); // Allowed file extensions

$verifyToken = md5('unique_salt' . $_POST['timestamp']);

if (!empty($_FILES) && $_POST['token'] == $verifyToken) {
    $tempFile   = $_FILES['Filedata']['tmp_name'];
    //  Commenting out this line as a potential bugfix for 404 error
    //$uploadDir  = $_SERVER['DOCUMENT_ROOT'] . $uploadDir;
    $uploadDir = "/wp-content/themes/traders/uploadify/uploads";
    $targetFile = $uploadDir . $_FILES['Filedata']['name'];

    // Validate the filetype
    $fileParts = pathinfo($_FILES['Filedata']['name']);
    if (in_array(strtolower($fileParts['extension']), $fileTypes)) {

        // Save the file
        move_uploaded_file($tempFile, $targetFile);
        echo 1;

    } else {

        // The file type wasn't allowed
        echo 'Invalid file type.';

    }
}
?>

我在目录树的每个分支中从根开始创建了一个“uploads”目录,并且在前往示例uploadify目录的每一步都包含一个目录,但是没有一个接收文件。

我喜欢这个程序,我认为设计师已经做了很好的工作,但我真的希望产品能够正常工作,特别是在投资之后!请帮忙!

1 个答案:

答案 0 :(得分:0)

Uploadify使用基于Flash SWF的上传器。在许多情况下,Apache Web服务器的mod_security模块会阻止任何SWF上传的数据。所以我会说检查服务器的mod_security日志(不是Apache错误日志),如果它阻止你的脚本。