Is There Any Option To Limit Download Speed In Xsendfile ? I want to Make Speed Limit & Connection Limit By Xsendfile
Before Xsendfile In Force Download ( fread() ) I make speed limit by this code :
if ($speed > 0 && ($this->bandwidth > $speed*$packet*1024))
{
sleep(1);
$packet++;
}
but in Xsendfile I cant Control Speed In This Way !
Also I was able to active or deactive resume by Accept-Ranges header , but i cant do that in xsendfile to !