30 11 / 2011
Installing PECL uploadprogress Extension
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:
- Download PECL uploadprogress library (uploadprogress-1.0.3.1.tgz)
- tar -zxvf uploadprogress-1.0.3.1.tgz
- cd uploadprogress-1.0.3.1
- phpize
- ./configure
- make
- 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!