Search Results for 'download link'

Viewing 25 results - 1,151 through 1,175 (of 9,354 total)
  • Author
    Search Results
  • #184327

    Eddy Wright
    Participant

    Hello. I just want to know what reasons could cause the blue download button/link to not appear after downloading a pdf document into Download Manager.

    I do not have a file size limit on my website. Can you let me know if this has happened in the past and what was done to fix this type of issue?

    Thank you.

    #184318

    In reply to: Mollie payment system


    E.S. Kortsmit
    Participant
    This reply has been marked as private.
    #184299

    E.S. Kortsmit
    Participant

    Hi,
    Question: How can I get the Mollie payment system active for membership plans and downloads.
    I don’t see an option tot do so.
    I have purchased DM Mollie plugin and the API key is linked, but it’s not possible to add it as a payment method.
    I hope you can help.
    Thank you!
    Kind regards,

    #184272

    E.S. Kortsmit
    Participant

    Hi again,
    I purchased the mollie plugin.
    I got it linked to Downloads – Premium package – tab: paymnet.
    But I can’t get it attached as a payment option for planes.
    Can you help?
    Is there a tutorial how to do so?

    Thank you!


    Rita
    Member

    Hello!
    I have the same issues like this topic: #79408
    Your answer was:

    Hi,

    It is possible to keep the package download button open in the same session once the package is unlocked. You can add the following code after line 193 in /download-manager/libs/class.PackageLocks.php to apply it,

    if( isset( $_SESSION[ ‘_wpdm_unlocked_’.$package[‘ID’] ] ) == 1 ) {
    $download_url = \WPDM\Package::expirableDownloadLink( $package[‘ID’] );
    $link_label = get_post_meta($package[‘ID’], ‘__wpdm_link_label’, true);
    $link_label = trim($link_label) != ” ? $link_label : __(‘Download’, ‘wpdmpro’);
    $data = ”

    “;
    }

    But it will require very lengthy modification to unlock single file links. For now, use this modification. We will consider what you proposed for the future release of WPDM.

    Thanks.

    I tried the code but it’s not working. Could you have a look if there is an issue with the code or with compatibilites with newer versions of the plugin? Thank you.
    And since the topic is several years ago, are there other/better possibilities?
    My goal is to type in the password once and then choose which files or the whole zip file you want to download – without using the password every time.

    Thanks in advance!
    Best Regards

    #184264

    Tanvir
    Spectator

    Hello,

    I have checked the files.
    You are using wpdm link templates with elementor.
    WPDM is not responsible for any issues you are facing. As you are using it in a single page, All the files are loading at a same time. If server can handle that, there should be no issue.

    For arranging it without any issues, you can check demos of our below addon. There are many appearance with shortcodes with it

    WPDM Directory Add-on

    Regards
    Tanvir


    Eric Johnson
    Participant

    I have another ticket for this, but you stopped responding. I was having trouble with an old connection to a business account. You said the package links were to a personal account. You did some work on the site, but didn’t fix the issue. So, we started a new personal account, and link to that account, but files will not download even though it appears the permissions are correct. We need this to get fixed.

    #184040

    Maggie Gaston
    Participant

    I’m trying to recreate the demo page https://try.wpdownloadmanager.com/

    I’ve created several categories with packages in each, navigating to the url specified in the plugin settings (/downloads/category) results in a 404 error.

    Second, I’ve tried a ton of different combinations of shortcodes and can’t get a single one of them to display any packages. My current iteration is this:

    [wpdm_packages login="0" paging="1" items_per_page="10" template="link-template-bsthumnail" cols=4 colspad=2 colsphone=1]

    Note that I removed the tag id hoping that ANYTHING would come up. I’ve tried wpdm_category and wpdm_tag as well.

    #184034

    In reply to: Error 500


    Jason Levandoski
    Participant

    Yes for #1 you did change settings.

    However, the scenario was: In the FormLocked Download link page before you updated, each package file link “APPEARED” to be downloadable….

    So say a package of 5 files, a person was clicking the first, second, third…. links and instead 3 ZIPS were started in the backend killing the server inadvertently..

    Yes the user is doing dumb, but why does the UI make it look like it is possible.. I guess when “Single File for Package Downloads” setting is enabled, the individual files should NOT have HyperLinks or Download Buttons.. Only the Big ZIP button should be a HyperLink.. It should disable after click to prevent multiple click/ZIPs being created on Backend..

    I guess it is more about making the UI more clear and Mistake-Proof the logic as to what is occurring..

    Thanks for your support!!

    #184020

    In reply to: Error 500


    Jason Levandoski
    Participant

    1. We know there needs to be a bug fix from earlier in the thread. Clicking a single download from Package was creating a zip even though I did not click the Zip button. This was creating huge loads on the server for no reason resulting in the original 500 and timeout error..

    2. The Download Count Limits and Expiration Date is not followed for Form Locked Packages.
    Right now Form Locked seem to be set to 3 downloads.. If a package has more than 3 files, the person needs to do several Form Submissions to get all files.. That is not good..

    3. Lack of Scrolling in FormLock link page – Which you provide partial fix.

    4. There should be a way to turn the ZIP Package button on and off at the package level. Some packages with small files, a Zip would be great. However, a package with large files, a zip is not good.. Right now your partial fix has totally disable ALL zip which is not so great at all..

    -Jason

    #183998

    In reply to: Limit Redirect Page


    Shahjada
    Keymaster

    What I meant, probably due to cached page, you are seeing the download button instead of limit expired message, and as limit is already expired, download link is not serving the file anymore.

    #183992

    Tracy Reinhard
    Participant
    This reply has been marked as private.

    Imr Ta
    Participant

    Hi there,

    We have downloaded and tried to twice install the plugin as per the link and it now shows that the 6.2.9 ( 1.9.6.) installed.

    We have re-cleared the cache with Purge SG Cache but we still see a spinning download

    See here : https://healtheducationpartnership.com/free-resource-downloads/

    Any more ideas please? The client is not at al happy with the product and its inconsistencies, as it has now been over 6 weeks

    Regards

    #183926

    In reply to: before_download


    Sander Vercampt
    Participant

    Hi,

    I’m trying to add an extra check for rights.
    Before someone is downloading the file (he clicks on the link), I want to check if he has all the rights needed to download the file.
    So I was thinking to check that in the before_download, if not I want to redirect to another page.

    I added the example code that was given in the docs in my functions.php, but the action is not triggered…

    add_filter('before_download', 'wpdm_before_download_package', 10, 1);
    
    function wpdm_before_download_package($package)
    {
    //todo: Modify any package settings. This changes made here are only for current requested download if you do not update the option.
      var_dump('Test before download');exit();
      return $package;
    }
    

    If I’m correct I should get ‘Test before download’ if I try to download the file??

    Thanks!

    #183918

    Shreek Raivadera
    Participant

    Hi,
    I am building a searchable resource library for a medical professionals group – they want to be able to display downloads by category. Each download has multiple categories and sub-categories. The search interface is structured into tabs so you select the tabs that reflect what you’re looking for – the final tab (of four) shows the downloads in that category. So that final tab should be only showing downloads that match all four of the categories selected by the tabs.

    https://www.btog.org/resources-v2/
    password: btog123

    This is the code I am using to display the downloads, but the AND operator doesn’t seem to work – it is currently displaying all downloads regardless of the categories in the code.

    [wpdm_all_packages login=1 thumb=1 items_per_page="20" categories="medical oncology, small cell lung cancer, scientific principles, aetiology and risk factors" operator="AND" jstable=1 order_by="field_name" order="ASC/DESC" cols="title|excerpt|download_link" colheads="Title|Summary|Download::155px"]

    What am I doing wrong?

    #183913

    Humayon
    Spectator

    Hi,

    Thank you for your reply.

    Can you please share the demo page URL so that we can provide you with accurate information?

    Also, please use the link template ID in the template parameter. Example: template=”link-template-default”

    You will more details in our documentation.

    [wpdm_category] – Query All Downloads From One or More Categories

    Regards

    #183894

    Ron Fredericks
    Participant

    First: WP Download Manager Pro is a great program with outstanding features, performance and fantastic high quality. Right out of the box it worked for me.

    But:

    Some time was wasted figured out how to offer a free PDF download vs a free PDF to open in browser.

    1. In the end I discovered that if I upload my PDF (20 MB) using the WP Download Manager upload using Chunks feature – the download link would download the file.
    2. If I upload my PDF (20 MB) manually to my WordPress site using FileZilla followed by a plugin called “Add From Server” to put my PDF file into WordPress Media Library, then attach the PDF file to my WordPress Download Manager package using the Select From Media Library – the download link will open PDF inside the browser (and not download at all).
    3. This “duality” between selecting file in media library vs selecting file using No Limit chunks feature creates a problem when I upload a big (20 MB) zip file. Using the select file using No Limit chunks feature works great for Zip file download. But if I use my manual method of upload via FileZilla and Add From Server WordPress plugin to create my download package the file will not download and of course it can’t display as a binary file on the screen either. Yet the zip file manually uploaded will easily download without WordPress Download Manager just by putting the link in a blog post.

    I would like to have a programmatic way to control download vs display in browser: maybe a checkbox in the package editor to allow download or display in browser (for compatible files like jpg, png, pdf). Or I would like to have download / display behavior of files be the same no matter if placed in media library by the WordPress Download Manager Chunks No Limit Upload feature (a great feature BTW) or already in the Media Library by some other by-hook-or-by-crook method. Or even offer two buttons for user so one file can be either opened in web browser or downloaded – so I don’t have to upload two files. I feel the zip file download using by-hook-or-by-crook method is perhaps a bug for your team to look at as I see some forum help with no perfect answer over this upload “duality”.

    If I am allowed, I would like to share a link to this “duality” behavior from my web site using a free PDF download of my MATLAB study notes here: https://www.biophysicslab.com/portfolio/matlab-projects/#master-matlab-through-guided-problem-solving-dr-mike-x-cohen

    #183882

    Michael Lups
    Participant

    Hello, I only want one thing and that is: how can I open my CURRENTLY USING button open in a new tab.
    Open in browser: check. Now only open in new tab, what code do I need?

    [download_link] this is what I use now.

    I don’t want a link/text, just the button open in new tabblad.

    #183881

    Humayon
    Spectator

    Hello,

    Thank you for the details.

    Please check now we have linked the add-on with your account and you will be able to download it from the order details page.

    User Dashboard

    Also, Yes you can connect it with free version of WPDM as well.

    Regards

    #183876

    In reply to: Error 500


    Nayeem Riddhi
    Moderator

    Hello Jason,

    Please check now. I have adjusted the email download link for the form-lock email. I have adjusted the email template from your active-theme > download-manager > download-page-clean.php file. please check and let me know

    Thank you again and regards

    #183870

    In reply to: Error 500


    Jason Levandoski
    Participant
    This reply has been marked as private.
    #183869

    In reply to: Error 500


    Nayeem Riddhi
    Moderator

    please check now, The single download link is working properly. I have tested it here,

    https://downloads.ats-global.com/download/wpdm-test-2/

    I have adjusted some settings from Downloads > Settings > Basic > File Download. please check and let me know

    Thank you and regards

    #183863

    In reply to: Error 500


    Jason Levandoski
    Participant
    This reply has been marked as private.
    #183862

    In reply to: Error 500


    Jason Levandoski
    Participant
    This reply has been marked as private.
    #183839

    In reply to: Error 500


    Jason Levandoski
    Participant

    So I increased PHP script timeout very high and indeed it does complete now.

    So it appears the issue is with the handling of the Download Link Page.
    I have disabled creating of ZIP so not sure why the link page is still showing Download Zip Button??

    Also I never click the Zip link button, but instead an individual file link. However, I see a zip being created in wpdm-cache? That is also the file I receive for download instead of the individual file I select?

    -Jason

Viewing 25 results - 1,151 through 1,175 (of 9,354 total)