2020-01-25 18:40:28 -06:00
2019-04-24 18:03:26 +02:00
2020-01-25 15:13:55 -06:00
2019-04-24 18:32:43 +02:00
2020-01-25 15:13:55 -06:00
2019-04-24 18:30:25 +02:00
2019-04-24 18:22:26 +02:00
2020-01-25 15:33:07 -06:00
2020-01-25 12:18:27 -06:00
2019-04-24 18:03:26 +02:00

uploadprogress

Building on *nix systems

To compile your new extension, you will have to execute the following steps:

  1. $ ./phpize
  2. $ ./configure [--enable-uploadprogress]
  3. $ make
  4. $ make test
  5. $ [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
Readme 212 KiB
Languages
C 60.7%
PHP 37.3%
M4 1.3%
JavaScript 0.7%