• Resolved redcastor

    (@redcastor)


    Hello,

    Thanks for your plugin.

    I want to use the chunked download file but there some bug in your source.

    The header “Content-Length” is not correctly set.

    Line 534:
    $new_length = $range_end - $range;
    Change to
    $new_length = ($range_end - $range) + 1;

    Line 544:
    if ( $this->readfile_chunked( $file_path, $range ) ) {
    Change to
    if ( $this->readfile_chunked( $file_path, false, $range ) ) {

    Regards,

    Auban

    • This topic was modified 5 years, 6 months ago by redcastor.
  • The topic ‘Download chunked file not working’ is closed to new replies.