Upload progress PECL uploadprogress library

In my Drupal status report I get the following message:

Your server is capable of displaying file upload progress, but does not have the required libraries. It is recommended to install the PECL uploadprogress library

So I decided to enable this on my Fedora server (same for CentOS), since I will probably need to do this on more servers, here are the steps it takes:

# yum install php-devel
# pecl install uploadprogress

if you get: pecl: command not found then you will need to run:

# yum install pear

Note: I found out this did not work because the name is now php-pear so use:

# yum install php-pear

Now you can finally run the command you need:

# pecl install uploadprogress

Note: if you get the error configure: error: no acceptable C compiler found

# yum install gcc

Add this line to /etc/php.ini

vi /etc/php.ini

insert extension=uploadprogress.so

And of course you will need to restart apache to make it take affect:

# /etc/init.d/httpd restart

Subject

Keynotes Videos Eric Schmidt Dries Buytaert

These are some of my favorite keynote speaches:

Eric Schmidt at Morgan Stanley on Technology Directions

  • In 5 years Technology will be 10 times, in 10 years 100 times as powerful.
  • Phones with 1 Mbit connections will be everywhere, Large monitors with fiber
  • Client server is replace with cloud computing based on LAMP
  • Sales Team revenuereplaced by Advertizing revenue

Dries Buytaert at Drupal Conf 2010 SF DrupalconSF

Eric Schmidt at Mobile World Congress

John Mancini AIIM 2010 Keynote (click to view)

Linus Torvalds on git

Subject