コメント付きのコードで提案されているように、window.location の URL を変更しない限り、プラグインが機能しています。
blueimp.github.com または blueimp.github.io のいずれかまたは両方を目的のドメインに変更すると、進行状況バーが実行され、成功が示されますが、何もアップロードされません。
blueimpを使用して実行しているサイトとサーバーの有効なURLに変更していますが、失敗します。
これから始めます:
// Change this to the location of your server-side upload handler:
var url = (window.location.hostname === 'blueimp.github.com' ||
window.location.hostname === 'blueimp.github.io') ?
'//jquery-file-upload.appspot.com/' : 'server/php/';
そしてこれに変更:
// Change this to the location of your server-side upload handler:
var url = (window.location.hostname === 'otherdomain.com' ||
window.location.hostname === 'otherdomain.com') ?
'//jquery-file-upload.appspot.com/' : 'server/php/';
ここで何が間違っていますか?
助けてくれてありがとう。