Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
phpmyadmin /
js /
transformations /
Delete
Unzip
Name
Size
Permission
Date
Action
image_upload.js
831
B
-rw-r--r--
2017-01-23 20:20
json.js
668
B
-rw-r--r--
2017-01-23 20:20
json_editor.js
476
B
-rw-r--r--
2017-01-23 20:20
sql_editor.js
312
B
-rw-r--r--
2017-01-23 20:20
xml.js
664
B
-rw-r--r--
2017-01-23 20:20
xml_editor.js
412
B
-rw-r--r--
2017-01-23 20:20
Save
Rename
/* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Image upload transformations plugin js * * @package PhpMyAdmin */ AJAX.registerOnload('transformations/image_upload.js', function() { // Change thumbnail when image file is selected // through file upload dialog $('input.image-upload').on('change', function(event) { if (this.files && this.files[0]) { var reader = new FileReader(); var $input = $(this); reader.onload = function (e) { $input.prevAll('img').attr('src', e.target.result); }; reader.readAsDataURL(this.files[0]); } }); }); /** * Unbind all event handlers before tearing down a page */ AJAX.registerTeardown('transformations/image_upload.js', function() { $('input.image-upload').off('change'); });