• I have created dynamic add / remove fields in which one is file upload fields. Everything is working fine. But there is one problem. When I add images in file fields and fill other details in other fields the data doesn’t get inserted in database.

    And If I fill other details in other fields and keep the image upload file field empty then the data gets inserted in database.

    I am not getting as to why the script is weirdly working… Plz help me out with a solution… Thanks

    Following is the code:

    <?php
    
    if ( isset( $_POST['project_draft0'] ) ) {
    
    $user_id = get_current_user_id();
    
    $member_details->member_image = array_map( 'sanitize_file_name', $_FILES['member_image']['name'] );
    $member_details->member_name = array_map( 'sanitize_text_field', $_POST['member_name'] );
    $member_details->member_email = array_map( 'sanitize_text_field', $_POST['member_email'] );
    $member_details->member_role = array_map( 'sanitize_text_field', $_POST['member_role'] );
    $member_details->member_fb = array_map( 'sanitize_text_field', $_POST['member_fb'] );
    
    $member_details_encode = wp_json_encode( $member_details );
    
      global $wpdb;
    
      $member_result = $wpdb->insert( 'oc_project_members',
    
             array( 
    
                  'author_id'      => $user_id,
                  'member_details' => $member_details_encode
    
                  ),
    
             array( 
    
                  '%d',
                  '%s'
    
          )
    
        );
    
    }
    
    ?>
    
    <form method="POST"  enctype="multipart/form-data">
    
    <div class="card">
      <div class="card-header text-center">
        <b>Team Members</b>
      </div>
      <div class="card-body">
    
      <div class="row">
    
        <div class="col-4">
    
    <img src="<?php echo esc_url( site_url('/wp-content/img/blank-image.png') ); ?>" class="img-thumbnail" id="output_member0">
    
    <br><br>
    
    <label class="btn btn-success btn-block btn-file">Select Image<input type="file" name="member_image[]" onchange="preview_member(event, 0)" style="display: none;"></label>
    
        </div>
    
        <div class="col-8">
    
      <div class="form-group">
        <label for="member_name"><b>Member Name</b> <b style="color:#FF0000;">*</b></label>
        <input type="text" class="form-control" name="member_name[]">
      </div>
      <div class="form-group">
        <label for="member_email"><b>Email Address</b> <b style="color:#FF0000;">*</b></label>
        <input type="text" class="form-control" name="member_email[]">
      </div>
      <div class="form-group">
        <label for="member_role"><b>Role in Project</b> <b style="color:#FF0000;">*</b></label>
        <input type="text" class="form-control" name="member_role[]">
      </div>
      <div class="form-group">
        <label for="member_fb"><b>Facebook Username</b> <b style="color:#FF0000;">*</b></label>
        <input type="text" class="form-control" name="member_fb[]">
      </div>
    
        </div>
    
      </div>
    
      <div id="member-fields">
    
      </div>
    
    <button type="button" class="btn btn-success btn-block" id="add-member-fields">Add Member</button>
    
      </div>
    </div>
    
    <input class="btn btn-warning" type="submit" name="project_draft0" value="Draft" style="border-radius: 0px;">
    
    </form>
    
    <script type="text/javascript">
    
    var i = 0;
    
    function preview_member(event, inp) {
      var reader = new FileReader();
      console.log(inp);
      reader.onload = function() {
        var output = document.getElementById('output_member' + inp);
        output.src = reader.result;
      };
    
      reader.readAsDataURL(event.target.files[0]);
    }
    
    jQuery(document).ready(function($) {
      //fadeout selected item and remove
      $(document).on("click", '#remove-member-fields', function(event) {
        event.preventDefault();
        $(this)
          .parent()
          .fadeOut(300, function() {
            $(this).empty();
            return false;
          });
      });
    
      //add input
      $('#add-member-fields').click(function() {
        i++;
    
        var rows = <code><div class=&quot;all-member-fields&quot;><hr><div class=&quot;row&quot;><div class=&quot;col-4&quot;><img src=&quot;<?php echo esc_url( site_url('/wp-content/img/blank-image.png') ); ? />&quot; class=&quot;img-thumbnail&quot; id=&quot;output_member${i}&quot;><br><br><label class=&quot;btn btn-success btn-block btn-file&quot;>Select Image<input type=&quot;file&quot; name=&quot;member_image[]&quot; onchange=&quot;preview_member(event, ${i})&quot; style=&quot;display: none;&quot;></label></div><div class=&quot;col-8&quot;><div class=&quot;form-group&quot;><label for=&quot;member_name&quot;><b>Member Name</b> <b style=&quot;color:#FF0000;&quot;>*</b></label><input type=&quot;text&quot; class=&quot;form-control&quot; name=&quot;member_name[]&quot;></div><div class=&quot;form-group&quot;><label for=&quot;member_email&quot;><b>Email Address</b> <b style=&quot;color:#FF0000;&quot;>*</b></label><input type=&quot;text&quot; class=&quot;form-control&quot; name=&quot;member_email[]&quot;></div><div class=&quot;form-group&quot;><label for=&quot;member_role&quot;><b>Role in Project</b> <b style=&quot;color:#FF0000;&quot;>*</b></label><input type=&quot;text&quot; class=&quot;form-control&quot; name=&quot;member_role[]&quot;></div><div class=&quot;form-group&quot;><label for=&quot;member_fb&quot;><b>Facebook Username</b> <b style=&quot;color:#FF0000;&quot;>*</b></label><input type=&quot;text&quot; class=&quot;form-control&quot; name=&quot;member_fb[]&quot;></div></div></div><button type=&quot;button&quot; class=&quot;btn btn-danger&quot; id=&quot;remove-member-fields&quot; style=&quot;float: right;&quot;>Remove Member</button><br><br></div></code>;
    
        $(rows)
          .fadeIn("slow")
          .appendTo('#member-fields');
        return false;
      });
    });
    
    </script>
Viewing 5 replies - 1 through 5 (of 5 total)
  • Moderator bcworkz

    (@bcworkz)

    Check your error log. There’s something wrong with how you are handling the file upload data. It’s hard to say what’s wrong by a cold reading of your code, but from the behavior you describe, there’s a glitch in file data somewhere.

    If might help if you examine the values in $_FILES by var_dumping it.

    Maybe I just missed it, but I don’t see anything confirming the file upload is really an image file and moving it from the temp folder to its final destination. File uploads are a major security vulnerability if the nature of the file is not confirmed somehow. Look at all the checking WP does for uploads. Granted, it’s for more than just image files. Still a lot of checking is done.

    Thread Starter Mineshrai

    (@mineshrai)

    @bcworkz var_dump(); is displaying properly, but the data is not getting inserted… Following is the result of var_dump(); {"member_image":["oro-2.png","oro-blue.png","oro-Copy.png","oro-Copy-2.jpg","oro.jpg"],"member_name":["cdnwjk","bchwj","cbhdwb","cbhdwk","nvjrl"],"member_email":["xgquj","bhwbbch","bchidqk","bchkwd","njcvlw"],"member_role":["cxdwj","bchw","bchkwd","nvrjl","njllj"],"member_fb":["cbhdw","bhwck","cbhdwk","nvjlr","njklbjk"]}

    When I add 3 fields, means when I add upto 3 images it works fine, the data gets inserted. But when I add 4th image nothing gets inserted.

    • This reply was modified 5 years, 6 months ago by Mineshrai.
    • This reply was modified 5 years, 6 months ago by Mineshrai.
    Moderator bcworkz

    (@bcworkz)

    Ah! Works until the 4th — that’s an important distinction! It is probably due to a limit in simultaneous file uploads. One such limit is defined in php.ini: max_file_uploads = ##. It usually defaults to 20, but hosts often reduce this. 3 is pretty extreme, but not unheard of. If you cannot access your php.ini, you’ll need to ask you host to increase the setting.

    Thread Starter Mineshrai

    (@mineshrai)

    @bcworkz Thanks for ur help… But there is no issue of max_file_uploads Since when I add 4 or more images and keep the other fields blank. It gets inserted in database. The only issue is when all the fields are filled and they are 4 or more than 4 then the problem occurs.

    I just want to insert name of the image files in database. there is no issue to insert these images on Hosting.

    Moderator bcworkz

    (@bcworkz)

    It seems you are running up against a system limit of some sort. I’m now suspecting post_max_size. The setting may not be all that large when multiple files are involved.

    A few other possible pitfalls are listed in https://www.php.net/manual/en/features.file-upload.common-pitfalls.php

    The last item about mixing input and upload fields seems be salient, but I’m not sure why there would be such a restriction.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Images names not inserting in WordPress Database from Dynamic Add / Remove field’ is closed to new replies.