Install PECL uploadprogress via SSH


/ Published in: Other
Save to your folder(s)

This script can be used to install the PECL upload progress PHP extension. You'll know this extension from the Drupal status report page which encourages you to install it.


Copy this code and paste it in your HTML
  1. cd ..
  2. cd tmp
  3. wget http://pecl.php.net/get/uploadprogress-1.0.1.tgz
  4. tar -xzvf uploadprogress-1.0.1.tgz
  5. rm uploadprogress-1.0.1.tgz
  6. cd uploadprogress-1.0.1
  7. phpize
  8. ./configure
  9. make
  10. sudo make install
  11.  
  12. #Then add the following line to the php.ini file located at /etc/php.ini:
  13. #extension=uploadprogress.so

URL: http://zoocha.com/what-we-do/drupal/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.