dongxikuo5171 2019-07-22 11:55
浏览 40
已采纳

FIle没有上传到同一服务器的另一个目录。

I want to upload file to an directory of another outside of my word-press directory.

Here is my HTML

<form>
<div class="form-group  upload-btn-wrapper2">
<span id="">Member Passport - Front</span>
<input required="" type="file" dir="rtl" name="member_passport_front_copy_names" id="member_passport_front_copy_names" class="form-control valid" for="UAE citizen" aria-required="true" aria-invalid="false">
</div>

</form>

Here is my AJAX Function.

   jQuery(document).ready(function () {

                jQuery('body').on('change', '#member_passport_front_copy_names', function (evt) {

                         var data = new FormData(this.form);
                          var data = new FormData();
        var files = jQuery('#member_passport_front_copy_names')[0].files[0];
        data.append('file',files);
                         jQuery.ajax({
                             url: '<?php echo site_url(); ?>/wp-admin/admin-ajax.php?action=cms_filesubmit',
                             type: "POST",
                             data: data,
                            mimeType: "multipart/form-data",
                            contentType: false,
                             processData: false,
                            cache: false,
                            dataType: "html",
                             success: function (response) {
                                  console.log(response);

                             },
                             error: function (response) { 
                             alert("something went wrong");
                             }
                         });


            });
                }); 

Here is my PHP function to upload file to directory

add_action( 'wp_ajax_cms_filesubmit', 'cms_filesubmit' );
add_action( 'wp_ajax_nopriv_cms_filesubmit', 'cms_filesubmit' );

function cms_filesubmit(){

$target_dir = "http://sajaya.ae/himmah/app/webroot/img/user_upload/";

if(isset($_FILES['file'])){
      $errors= array();
      $file_name = $_FILES['file']['name'];
      $file_size =$_FILES['file']['size'];
      $file_tmp =$_FILES['file']['tmp_name'];
      $file_type=$_FILES['file']['type'];
      $file_ext=strtolower(end(explode('.',$_FILES['file']['name'])));

      $extensions= array("jpeg","jpg","png");

      if(in_array($file_ext,$extensions)=== false){
         $errors[]="extension not allowed, please choose a JPEG or PNG file.";
      }

      if($file_size > 2097152){
         $errors[]='File size must be excately 2 MB';
      }

      if(empty($errors)==true){
         move_uploaded_file($file_tmp,"http://sajaya.ae/himmah/app/webroot/img/user_upload/".$file_name);
         echo "Success";
      }else{
         print_r($errors);
      }
   }
}

When ever i change or upload file it give in response Success but file not get uploaded to directory.

  • 写回答

1条回答 默认 最新

  • dtv8189 2019-07-22 12:17
    关注

    move_uploaded_file does not work with HTTP URLs – you need to specify a file system path for the destination.

    Either relative to the current working directory of your script, or as a full absolute path from the server file system’s root directory.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 unity第一人称射击小游戏,有demo,在原脚本的基础上进行修改以达到要求
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?
  • ¥15 加热介质是液体,换热器壳侧导热系数和总的导热系数怎么算
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line
  • ¥500 火焰左右视图、视差(基于双目相机)
  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染