Install the PECL uploadprogress library on Ubuntu 10


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



Copy this code and paste it in your HTML
  1. # Install PHP developer package
  2. sudo apt-get install php5-dev
  3.  
  4. # Install the pear library
  5. sudo apt-get install php5-dev php-pear
  6.  
  7. # Install the PECL uploadprogress library
  8. sudo pecl install uploadprogress
  9.  
  10. # Open php.ini and add the line "extension=uploadprogress.so"
  11. sudo gedit /etc/php5/apache2/php.ini
  12.  
  13. # Restart apache:
  14. sudo /etc/init.d/apache2 restart

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

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.