Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter Giovanni Caputo

    (@giocaputo)

    While with pdf files no problem.

    Thread Starter Giovanni Caputo

    (@giocaputo)

    I have tried it in another installation and i have not problems.

    What setting can i see?

    P.s. I use mac for client.

    Thread Starter Giovanni Caputo

    (@giocaputo)

    I am seing binary/hex diff of file.

    On file downaloaded there are on start “0D 0A”: carriage return – line feed character.

    Thread Starter Giovanni Caputo

    (@giocaputo)

    I have resolved it!!!!!

    On class CUAR_PrivateFileAddOn
    method output_file
    i have added ob_clean() method after you ob_end_clean.

    @ob_end_clean(); //turn off output buffering to decrease cpu usage
    ob_clean();

    I think that it depand by version of web server apache. I don’t know.

    Plugin Contributor Vincent Mimoun-Prat

    (@vprat)

    Hi,

    Thanks for finding the source of your problem. Could you try another way to fix it to see if that works?

    Replace:

    @ob_end_clean();

    With:

    if (ob_get_length() > 0) @ob_end_clean();

    Thread Starter Giovanni Caputo

    (@giocaputo)

    I have tried your code but I have same problem.

    While with my code i have not problem.

    Plugin Contributor Vincent Mimoun-Prat

    (@vprat)

    Ok. Will be fixed in upcoming 2.3.0.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Problems with image files.’ is closed to new replies.