Some of the file locations within the plupload have moved and therefore it won't install/run without them being renamed.

plupload.install (line 14) should be:

  $js_file = $lib_dir .'/js/plupload.js';

plupload.module (line 84-87) should be:

  drupal_add_js($path . '/plupload/js/plupload.js');
  drupal_add_js($path . '/plupload/js/plupload.html5.js');
  drupal_add_js($path . '/plupload/js/jquery.plupload.queue/jquery.plupload.queue.js');
  drupal_add_js($path . '/plupload/js/plupload.flash.js');

Comments

willhallonline’s picture

Sorry, my stupidity, should have been

plupload.module line 86-89!

  drupal_add_js($path . '/plupload/js/plupload.js');
  drupal_add_js($path . '/plupload/js/plupload.html5.js');
  drupal_add_js($path . '/plupload/js/jquery.plupload.queue/jquery.plupload.queue.js');
  drupal_add_js($path . '/plupload/js/plupload.flash.js');
willhallonline’s picture

One more:

plupload.module (line 110)

  $swfurl = url($path .'/plupload/js/plupload.flash.swf');
justintime’s picture

Status: Active » Closed (duplicate)