📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
webmasterscripti.demodesign.com.tr
/
assets
/
js
📝
md5.js
← Geri Dön
function copy(){ let button = document.getElementById("copyButton"); let copyText = document.getElementById("md5Text"); let textArea = document.createElement("textarea"); textArea.value = copyText.textContent; if(textArea.value.length > 0){ document.body.appendChild(textArea); textArea.select(); document.execCommand("Copy"); textArea.remove(); button.disabled = true; button.innerText = "(Copied)"; setTimeout(function(){ button.disabled = false; button.innerText = "(Copy)"; }, 1500); } }
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula