formats

Fix Drupal Upload Progress


drupal




Drupal and other software can take advantage of a nice upload progress bar. Here is how to get that working on CentOS.



You may have seen this in Drupal. Let’s fix it!

pecl_drupal_edit

First, in CentOS 5 install these packages:

yum install php-pear gcc make php-devel

Next as root, issue:

pecl install uploadprogress

Once that completes, add this to /etc/php.ini

extension=uploadprogress.so

Finally save, and restart apache:

/etc/init.d/httpd restart

Done!

Leave a Reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Notify me of followup comments via e-mail. You can also subscribe without commenting.

Home linux Fix Drupal Upload Progress