Install PECL UploadProgress
If you want to enable the cool Progress Tracking feature, you need to get PECL UploadProgess extension installed. More information about this extension you may find here. Lastly, please try to have PHP version 5.2.x
If you are use Linux, do as follow:
- Run the following command:
pecl install uploadprogress
- Open your
php.ini
and register the extension:extension=uploadprogress.so
- Restart server.
If you are use Window, do as follow:
- Download this
php_uploadprogress.dll
- Copy
php_uploadprogress.dll
into{PHP_PATH}\ext
folder - Open
php.ini
and add the following:extension=php_uploadprogress.dll uploadprogress.file.filename_template="C:\WINDOWS\TEMP\upt_%s.txt"
- Restart server.