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

    (@qad1a)

    To be clear, the error that I get says file “Not Found” (404 Error).

    Plugin Author peter_gross

    (@peter_gross)

    The changes from version 1.1 to version 1.2 do only affect the function “filedownload_shortcode_button_handle” and matches only the counter shortcode. The rest of the code (used for the download shortcode) is completely unchanged (you can see it in the Subversion Repository). If you read the discussion with “drhrap”, you see that he could not solve the problems by reeinstalling version 1.1.
    So the problem must have other reasons.

    Thread Starter qad1a

    (@qad1a)

    Thanks Peter,
    You saved me the trouble of testing version 1.2. As you said, the problem must have other reasons. Here are the top 2 reasons I suspect:
    1) Hostgator uses Apache servers, but I don’t understand why Apache causes a problem for the plugin.
    2) Several weeks ago, I changed the Permalink settings and I wonder if that could have broken the plugin. Does the plugin make assumptions about which Permalinks setting I am using in WordPress?

    Plugin Author peter_gross

    (@peter_gross)

    Apache is not the problem – I also use an Apache server.

    The Permalink setting might in your case also not be the problem, because in the case of using https:// there is no feature of WordPress used – it is only php code, see:

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

    Thread Starter qad1a

    (@qad1a)

    If nmy syntax is correct, and the plugin is compatible with other plugins I use (including a security plugin), then I don’t know why the plugin can’t find the file. I know that other users on this board had a similar problem.

    Plugin Author peter_gross

    (@peter_gross)

    so now I have copied your code above directly in an article at my blog – it′s working correct.
    https://filedownload.blog-me.de/allgemein/test-for-qad1a/

    So, how can I help you to find your problem? – it is easy php code and the problem must be on your server side – it′s not possible for me to analyse any not well working php environment.

    Thread Starter qad1a

    (@qad1a)

    Peter,
    thanks so much for your help and attention to this.
    Franklin

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Download links stopped working maybe 1 month ago’ is closed to new replies.