Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author peter_gross

    (@peter_gross)

    Thanks for Mr. Kreuzheber in his forum, who has found the problem. The problem has to do with the absolute downloadpath beginning with https://…
    You can make a bugfix by changing the line

    $filename = WP_CONTENT_URL . ‘/’.$file;

    to

    if (substr($file, 0,7) == “https://”) $filename = $file;
    elseif (substr($file, 0,1) == “/”) $filename = WP_CONTENT_URL . $file;
    else $filename = WP_CONTENT_URL . ‘/’ . $file;

    or you wait for a bugfix in a new version,

    Peter Gross

    Hi,

    I have the same problem, but not for the counter. My problem is on the download part, the file doesn’t download at all… I try mp3, doc, zip files and isn’t working

    Plugin Author peter_gross

    (@peter_gross)

    Hello drhrap,

    please send the shortcode, otherwise I′m not able to analyse your problem. Do you also use it in the sidebar or in a normal article?

    Hi Peter,

    This is the code.

    [filedownload file=”https://www.clan-destino.com.co/wp-content/audio/Rapciocinio_Lirical/Rapciocinio_Lirical_-_60_Grados.mp3″ type=”application/xml” style=”color:#0000oo;”]Descargar[/filedownload]

    The URL is correct, but the download function is not working.

    It’s used in an article.

    Plugin Author peter_gross

    (@peter_gross)

    why do you use “application/xml” to download an mp3?
    Either you use a right type, or leave the type parameter coplete away, it′s optional for known filetypes like mp3.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Counter is not working for me’ is closed to new replies.