30 11 / 2011

I’m just updated my Drupal copy to version 7 recently and reliaze that I have not installed PECL uploadprogress library. A quick search on google give me the above url.

In short, just do the following:

  1. Download PECL uploadprogress library (uploadprogress-1.0.3.1.tgz)
  2. tar -zxvf uploadprogress-1.0.3.1.tgz
  3. cd uploadprogress-1.0.3.1
  4. phpize
  5. ./configure
  6. make
  7. sudo make install

next, you need to update your php.ini file and add the following line:

extension=uploadprogress.so

final step it to restart your apache server and you’re done!