I'm trying to get YUI uploader work on my computer / localhost, by using this example . The javascript the page use, can be view here.
Yükleme düğmesi aşağıdaki işleyicisi vardır:
YUE.on('upload', 'click', this.upload, null, this);
(...)
upload : function(e) {
YUD.get('browse').style.display = 'none';
this.uploader.disable();
this.uploader.uploadAll('wp-content/themes/storelocator/include/upload.php', 'GET');
},
PHP dosyası gibi görünüyor:
<?php
echo "TEST";
?>
Ben yükleme butonuna tıkladığınızda, sayfa yeniden, ama hiçbir şey yankılandı. Yükleme düğmesi basit bir html butonu <button id="upload">Upload</button>
.
"Test" yankılandı değil neden nedeni var mı?