除非我按照注释代码中的建议更改window.location网址,否则我的插件工作正常 - 而且我希望这样做。
将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/';
我在这里做错了什么?
提前感谢您的帮助。
答案 0 :(得分:0)
更改main.js:
url:'you_server'
答案 1 :(得分:0)
根据你的情况(以及我的情况)。您需要将blueimp服务器更改为您自己的URL。从给出的代码。您需要将 otherdomain.com 替换为您的域名。并将 server / php 更改为 UploadHandler.php 所在的位置。但请保持 // jquery-file-upload.appspot.com / 不受影响。
答案 2 :(得分:-1)
将其更改为服务器端上传处理程序的位置以解决此问题:
var url = (window.location.hostname === 'yourdomain' ||
window.location.hostname === 'blueimp.github.io') ?
'//yourpages.php/' : 'folderinsidethesever';`