Krajee

Bootstrap File Input Demo

Thankful to Krajee! BUY A COFFEEor to get more out of us.

Extension of scenario 2 for synchronous batch uploads - in which you can dynamically setup the initialPreview and initialPreviewConfig immediately after upload at runtime. For this you must return the initialPreview, initialPreviewConfig, and append properties within a JSON object from your server. Refer to the documentation for receiving data on server or sending data from server in synchronous mode.

The example below contains an example of a PHP server code that can respond with such a JSON as mentioned above.

Drag & drop files here …

Code

  1. <div class="file-loading">
  2. <input id="input-704" name="kartik-input-704[]" type="file" accept="image/*" multiple>
  3. </div>
  4.  
  5. <script>
  6. $(document).ready(function() {
  7. $("#input-704").fileinput({
  8. allowedFileExtensions: ['jpg', 'png', 'gif'],
  9. uploadUrl: "/file-upload-batch/2",
  10. uploadAsync: false,
  11. overwriteInitial: false,
  12. minFileCount: 1,
  13. maxFileCount: 5,
  14. initialPreviewAsData: true // identify if you are sending preview data only and not the markup
  15. });
  16. });
  17. </script>

Server Code (PHP Example)

  1. // example of a PHP server code that is called in `uploadUrl` above
  2. // file-upload-batch script
  3. header('Content-Type: application/json'); // set json response headers
  4. $outData = upload(); // a function to upload the bootstrap-fileinput files
  5. echo json_encode($outData); // return json data
  6. exit(); // terminate
  7.  
  8. // main upload function used above
  9. // upload the bootstrap-fileinput files
  10. // returns associative array
  11. function upload() {
  12. $preview = $config = $errors = [];
  13. $input = 'kartik-input-704'; // the input name for the fileinput plugin
  14. if (empty($_FILES[$input])) {
  15. return [];
  16. }
  17. $total = count($_FILES[$input]['name']); // multiple files
  18. $path = '/uploads/'; // your upload path
  19. for ($i = 0; $i < $total; $i++) {
  20. $tmpFilePath = $_FILES[$input]['tmp_name'][$i]; // the temp file path
  21. $fileName = $_FILES[$input]['name'][$i]; // the file name
  22. $fileSize = $_FILES[$input]['size'][$i]; // the file size
  23. //Make sure we have a file path
  24. if ($tmpFilePath != ""){
  25. //Setup our new file path
  26. $newFilePath = $path . $fileName;
  27. $newFileUrl = 'http://localhost/uploads/' . $fileName;
  28. //Upload the file into the new path
  29. if(move_uploaded_file($tmpFilePath, $newFilePath)) {
  30. $fileId = $fileName . $i; // some unique key to identify the file
  31. $preview[] = $newFileUrl;
  32. $config[] = [
  33. 'key' => $fileId,
  34. 'caption' => $fileName,
  35. 'size' => $fileSize,
  36. 'downloadUrl' => $newFileUrl, // the url to download the file
  37. 'url' => 'http://localhost/delete.php', // server api to delete the file based on key
  38. ];
  39. } else {
  40. $errors[] = $fileName;
  41. }
  42. } else {
  43. $errors[] = $fileName;
  44. }
  45. }
  46. $out = ['initialPreview' => $preview, 'initialPreviewConfig' => $config, 'initialPreviewAsData' => true];
  47. if (!empty($errors)) {
  48. $img = count($errors) === 1 ? 'file "' . $error[0] . '" ' : 'files: "' . implode('", "', $errors) . '" ';
  49. $out['error'] = 'Oh snap! We could not upload the ' . $img . 'now. Please try again later.';
  50. }
  51. return $out;
  52. }

Note

You can now visit the Krajee Webtips Q & A forum for searching OR asking questions OR helping programmers with answers on these extensions and plugins. For asking a question click here. Select the appropriate question category (i.e. Krajee Plugins) and choose this current page plugin in the question related to field.

The comments and discussion section below are intended for generic discussions or feedback for this plugin. Developers may not be able to search or lookup here specific questions or tips on usage for this plugin.

 
4,694,183 visitors to Krajee Jquery Plugins since 22-May-2017