⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.112
Server IP:
65.21.180.239
Server:
Linux gowhm.eplangoweb.com 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.0.30
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
eplangoweb
/
.trash
/
assets.1
/
user
/
js
/
View File Name :
dropzone-file-upload.js
Dropzone.options.fileDropzone = { paramName: 'file', acceptedFiles: '.txt, .doc, .docx, .pdf, .zip', url: fileUpUrl, method: 'post', success: function (file, response) { // remove error message if exist $('#err_file').text(''); $('#file-original-name').append(`<input type="hidden" id="file-org-${response.originalName}" name="file_org[]" value="${response.originalName}">`); $('#file-unique-name').append(`<input type="hidden" id="file-unq-${response.uniqueName}" name="file_unq[]" value="${response.uniqueName}">`); // create remove button const rmvBtn = Dropzone.createElement("<button class='rmv-btn'><i class='fa fa-times'></i></button>"); // capture the dropzone instance as closure let _this = this; // bind an event to the remove button rmvBtn.addEventListener('click', function (event) { // make sure the button click event doesn't submit the form event.preventDefault(); event.stopPropagation(); // remove file from dropzone preview _this.removeFile(file); // remove file from storage rmvFile(response.originalName, response.uniqueName); }); // add the remove button to the file preview element file.previewElement.appendChild(rmvBtn); }, error: function (file, message) { $('#err_file').text(message?.error?.file[0]); $('#err_file').text(message?.exception); // create remove button const rmvBtn = Dropzone.createElement("<button class='rmv-btn'><i class='fa fa-times'></i></button>"); // capture the dropzone instance as closure let _this = this; // bind an event to the remove button rmvBtn.addEventListener('click', function (event) { // make sure the button click event doesn't submit the form event.preventDefault(); event.stopPropagation(); // remove file from dropzone preview _this.removeFile(file); }); // add the remove button to the file preview element file.previewElement.appendChild(rmvBtn); } }; function rmvFile(orgName, unqName) { $.ajax({ url: fileRmvUrl, type: 'POST', data: { 'title': unqName }, success: function (response) { const orgEle = document.getElementById('file-org-' + orgName); orgEle.remove(); const unqEle = document.getElementById('file-unq-' + unqName); unqEle.remove(); }, error: function (response) { } }); }