Home > php-throttle

php-throttle

Php-throttle is a project mainly written in C and PHP, it's free.

php module for throttling file upload speed

php throttle module

This module allows to throttle file upload speed, for debugging / testing purposes.

Install

phpize
./configure
make
make install

Ini settings

; load throttle module
extension=throttle.so
; speed limit, in bytes
throttle.speed=10240
; log debug infos
throttle.debug=0

Both settings are per-dir and can be overriden on a per-directory basis; for example in an Apache's .htaccess:

php_value throttle.speed 2048
Previous:MyCloud