mirror of
https://github.com/php/pecl-php-uploadprogress.git
synced 2026-03-24 07:02:06 +01:00
uploadprogress-1.1.0
uploadprogress
Building on *nix systems
To compile your new extension, you will have to execute the following steps:
- $ ./phpize
- $ ./configure [--enable-uploadprogress]
- $ make
- $ make test
- $ [sudo] make install
Building on Windows
The extension provides the VisualStudio V6 project file
uploadprogress.dsp
To compile the extension you open this file using VisualStudio, select the
apropriate configuration for your installation (either "Release_TS" or
"Debug_TS") and create php_uploadprogress.dll.
After successfull compilation you have to copy the newly created
php_uploadprogress.dll to the PHP extension directory (default:
C:\PHP\extensions).
Testing
You can now load the extension using a php.ini directive
extension=uploadprogress
The extension should now be available, you can test this using the
extension_loaded() function:
if (extension_loaded('uploadprogress')) {
echo "uploadprogress loaded :)";
} else {
echo "something is wrong :(";
}
The extension will also add its own block to the output of phpinfo();
Description
⚠️ ARCHIVED: Original GitHub repository no longer exists. Preserved as backup on 2026-01-22T16:24:02.467Z
Languages
C
60.7%
PHP
37.3%
M4
1.3%
JavaScript
0.7%