• Hi,

    I put out an ad for someone to make an upload plugin like yours.
    I got some answers but before I decided who would get the job I found your plugin. I gave it a try and it worked almost perfectly.

    But now it doesnt work at all and you dont seem to care anymore since there is a forum post since 5 days and no answer ? I installed your plugin on the 20th of June and I expected it to work just a few days later. Is this how it is with WP plugins, they are totally unreliable and can break any day ?

    The plugin doesnt load pictures anymore…

    So I have to hire someone again to make a stable simple WP upload plugin?

    Is the plugin code open so I can ask someone else to solve this problem ?

    Would appreciate an answer ASAP thank you.

    http://ww.wp.xz.cn/extend/plugins/jquery-html5-file-upload/

Viewing 3 replies - 1 through 3 (of 3 total)
  • The plugin author was referencing JS files hosted on github that have been moved. The best thing is to go find these files and bring them local, but the quick and easy fix is to open the main plugin file (/wp-content/plugins/jquery-html5-file-upload/jquery-html5-file-upload.php)

    on lines 202, 203, 204 add /js/ to the path — here are the lines:

    wp_enqueue_script ( 'tmpl-script', 'http://blueimp.github.com/JavaScript-Templates/tmpl.min.js',array('jquery'),'',true);
    	wp_enqueue_script ( 'load-image-script', 'http://blueimp.github.com/JavaScript-Load-Image/load-image.min.js',array('jquery'),'',true);
    	wp_enqueue_script ( 'canvas-to-blob-script', 'http://blueimp.github.com/JavaScript-Canvas-to-Blob/canvas-to-blob.min.js',array('jquery'),'',true);

    replace them with:

    wp_enqueue_script ( 'tmpl-script', 'http://blueimp.github.com/JavaScript-Templates/js/tmpl.min.js',array('jquery'),'',true);
    	wp_enqueue_script ( 'load-image-script', 'http://blueimp.github.com/JavaScript-Load-Image/js/load-image.min.js',array('jquery'),'',true);
    	wp_enqueue_script ( 'canvas-to-blob-script', 'http://blueimp.github.com/JavaScript-Canvas-to-Blob/js/canvas-to-blob.min.js',array('jquery'),'',true);

    this should fix it, at least until the github changes again. the plugin author should be including the JS files in the plugin itself.

    Thread Starter mix624

    (@mix624)

    Good input madlabmg. I have sent some emails around on fiverr to get help with this becuase it doesnt seem to difficult.

    Thread Starter mix624

    (@mix624)

    Anwar, I will soon give this plugin a 1 star rating.
    If I could I would give it a -1 to -5 rating.

    Why ?

    I see others had problem with this plugin since April saying it didnt work for them.

    I installed it June the 20th 2013 and now when testing it again a few days ago it isnt working.

    You dont seem to be around, time have been flying for a long time with no response.

    It seems I have to pay someone to develop a plugin like this or ask someone to fix this. Why dont WordPress add a functionality for programmers to build up money to a certain amount and then updating would be worth it for the programmer ?

    What would this upload plugin cost to repair if I ask a programmer ?

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Plugin creation – Urgent’ is closed to new replies.