Search Results for 'download link'

Viewing 25 results - 7,051 through 7,075 (of 9,350 total)
  • Author
    Search Results
  • #40023

    therrmann
    Member

    Now i get the following Errormessage from the server (filesystem ext4) when i try to update a plugin:
    [Mon Feb 01 07:26:25.986195 2016] [:error] [pid 31607] [client xxx.xxx.xxx.xxx:48680] PHP Warning: unlink(/tmp/wpdmdl15731oid56a0d705c1000indQqbGZ9Bq
    J4hGonYd6GZMGNOVm98acnDe4M-8xUe0i2EuG3qBVJrxzaInEjhihbTEjip6xTqm8Ko2Xl5EOjHVBZdJp92tulbldDBasy87khwrA_7nV4Vq0_im-B8SsmcvZqv1tW9yNbvMzTjZiIG-Agpreact loginuserusernameandpassword_27chars__wpdmnocache56aefa918f59f-FDyeCL.tmp): File name too long in /var/www/____.de/htdocs/wp-admin/includes/file.php on line 481, referer: http://www._____.de/wp-admin/edit.php?post_type=wpdmpro&page=settings&tab=plugin-update&plugin=download-after-submit&v=1.2.1

    The Plugin is deleted but not installed.

    #39985

    Shahjada
    Keymaster

    We got the issue with password protected package & individual download link, update is coming within next 48 hours. But package download link will work fine.

    #39974

    Hello !

    I have question about Wpdm Cart Form, it is possible to make it lika a Attachments. I would like to looks like 2# on attached image.

    Now i use download link template:

    [download_link]
    <style>
    .wpdm-download-link {
    border-radius: 3px !important;
    padding: 15px 90px !important;
    font-size: 22px !important;
    text-decoration: none !important;
    margin: 0px !important;
    color: #fff !important;
    position: relative !important;
    display: inline-block !important;
    }

    .wpdm-download-link:active {
    transform: translate(0px, 5px) !important;
    -webkit-transform: translate(0px, 5px) !important;
    box-shadow: 0px 0px 0px 0px !important;
    }

    .wpdm-download-link {
    background-color: #444244 !important;
    box-shadow: 0px 0px 0px 0px #444244 !important;
    }

    .wpdm-download-link:hover {
    background-color: #9e9e9e !important;
    }
    </style>

    It would be great to make it looks better 🙂

    I think so i need to make a new template for it.

    Best
    Kaja

    #39970

    welkindai
    Member
    This reply has been marked as private.
    #39968

    welkindai
    Member

    hi
    i has set up download links button, but it is only workable while i login in. if i as a visitor download file by password basis, we only getted a file name of ” link expired.txt” could u pls help ?
    i test on ie and chrome , both are same result.

    * earlier, your engineer has been solved this issue. during, we didnt update any plugins, but now this again happen, our customer complain thedownload link not work after fitted password, they only get a file ” link expired.txt”

    could you pls help me to check, or pls guide me how to settle it.

    #39963

    PhotonEngr
    Member

    Ok, thank you.

    I got this:

    Array
    (
    [id] ► 2468
    [dataType] ► json
    [execute] ► wpdm_getlink
    [verify] ► email
    [action] ► wpdm_ajax_call
    [custom_form_field] ► Array
    (
    [name] ► richard
    [fredid] ► 22
    [company] ► company1234
    [ph] ► 0987654321
    )

    [s2dcf_meta_box_nonce] ► 3f49a3cef5
    [_wp_http_referer] ► /fredreleasedownloadlinkstest/
    [email] ► <email address entered in form>
    )

    It appears that it is an array, within an array.

    For the people watching and any who want to do this, this is what you have to do.

    Because it’s a nested array you have to parse the sub-array into another variable like so:

    $customform = $post[custom_form_field]

    where $customform is the variable and you can address the various fields like $post (eg. $customform[company])

    I also solved the newline issue in the resultant email that is generated.

    Because the email type is set to html, \r\n will not work for formatting. you have to use <br> in place of \r\n anytime you want a new line.

    My code no looks like this (sorry about the formatting):

    add_action(“wpdm_before_email_download_link”, “your_function”, 10, 2);
    function your_function($post, $file){
    customform = $post[custom_form_field];
    $message = “Package Title: {$file[post_title]}<br>
    Email: {$post[email]}<br>
    Name: {$customform[name]}<br>
    Fred Key # {$customform[fredid]}<br>
    Company: {$customform[company]}<br>
    Phone: {$customform[ph]}<br>
    end of line”;
    wp_mail(“email1@company.com”, “New Download Notification”, $message, “From: no-reply@sitename\r\nContent-type: text/html\r\n”);
    }

    This code in the functions.php for your theme will generate an additional email to email1@company.com with the following content

    Package Title: <package title>
    Email: <email address entered in form>
    Name: richard
    Fred Key # 5
    company: Success Inc.
    Phone: 1234567890
    end of line

    this has been an ….. interesting …… experience

    #39957

    Shahjada
    Keymaster

    @graphictwister, if you are having issue with popover, actually wpdm has nothing to with this for now, as it could be a theme conflict, but we are trying to avoid such conflict with next update, However there are 2 other option for download link, using tags [download_link_popup] and [download_link_extended], certainly any of them will work fine for you.


    @lips
    , v4.5.4 is coming within 7th Feb.

    #39913

    Shahjada
    Keymaster
    1. Checking and adjusting in next update
    2. Your suggestion is noted, however you can add a custom title for file and use file list, in your custom link/page template you can skip [download_link] tag.
    3. 🙂
    4. Sorry, not clear
    #39909

    Shahjada
    Keymaster

    @klawzfinger, #2 was working fine for me in your site, however I created a link template with [download_link_popup] and tested it in “test” page, that should work fine for you too .

    #39827

    Pombad
    Member

    1. It should, but it doesn’t. At least, it didn’t for me. I used a fresh 4.5.3 installation when doing my latest tests.

    2. Because, if I create a custom template, what if I don’t want to include the file list, but I want to be able to add to cart? (And, I don’t). The majority of my packages are 1 file and my users don’t care about seeing the file name. Using [file_list] to get it to show is impractical in this sense.

    The good news is, I already hacked something together which allows for this–I just looked at how you generated your button code and added some php trickery, so my link template grabs the necessary values (specifically the package-id and encrypting the filename; since all my packages have an index of 0) and it works with the cart fine.

    3. Cool. 🙂 For now, I’ll work on hacking something together on my site to get it to work.

    Something else I realized after:

    4. I would change how the jquery/ajax works, but only slightly. Using the slide/up functions for removals works well, but it would be better, if the functions (addtocart, removeitem, removecart) also complete refreshed the cart html itself. I only realized I needed this, because I decided to have my cart (currently) on my same file index page where downloads occur. I’m writing some jquery now to accomplish this.

    Edits:

    1. Scratch that, I see upon updating I have a few variable index values, so I wrote a function to fetch them, insert the value in the button, and fetch the filename by index value. Working again for all files.

    2. I also completed the AJAX refresh: on adding an item to cart, removing an item from cart, and emptying the cart. I just need to limit the requests now, and then I can start work on the custom lock functionality. 🙂

    #39769

    Thanks Shaon,

    Have purchased that add-on, but the shortcode doesn’t seem to be working. Am using the archive shortcode to get something similar to this from your demo, but with the downloads displaying with the template that I have set up. The search function at the top is showing OK, but the list of downloads is missing. I’ve tried different options with TinyMCE, including different templates, and none of them have worked (and have tried deactivating plugins and changing to the default theme).

    [wpdm-archive category="coaching-resources" cat_view="compact" button_style="default" link_template="56a6e56b82ead" order_by="post_title" order="asc" items_per_page="10"]

    Hope you can point me in the right direction.

    Many thanks,

    Sandra

    #39753

    dmishra
    Member

    I think , I did not get the issue corrected after clearing all the cahches but, When I replaced addtocart or downloadlink shortcode with addtocart form, Now its directing me directly to the shopping Cart,
    I am sharing this solution because it worked for me well. Thanks for all your Guidance and Help.

    Regards
    Dinkar

    #39735

    In reply to: Bugs found in V 4.5.3


    Shahriar
    Moderator

    Hi Faisal,

    1. Disable ‘single file download’ option in package settings to remove download second button.

    2. Checking this issue, will release an update with required fix soon

    3. Please send your package link to check lazy download issue.

    Thanks.

    #39730

    Shahjada
    Keymaster

    For now, please create a custom link template from Admin Menu Downloads Templates, the warning will be gone.

    #39725

    Hi Shaon

    Regarding issue #2, I’ve attached a screenshot.

    It shows what happens if I click on more than 1 download link. A lot of styling code shows up

    I’m using the panel template

    Cheers

    Klavs

    #39709

    In reply to: Script Error


    Shahjada
    Keymaster

    All popover working fine for me, however I still have changed it to popup by replace [download_link] with [download_link_popup], please check now.


    IVA Groep
    Member

    Hi,

    I’ve recently updated to 4.5.3 from 4.4.0 and now my downloads stopped working.
    It happens with de downloads were i’ve used the “upload” option in the backend. The downloads that i linked with the “browse” option still work.
    Also when ik make a new package and upload a file, the download doesn’t work. It links to the “file not found file”

    I now downgraded to v4.40 and it works again.

    Hope you can find the problem.

    Gr,
    Bazar

    #39683

    Spencer
    Member

    Please navigate to the following page http://www.hpepumps.co.uk/portfolio-view/unibloc-rotary-lobe-pump/

    On the page there are 3 Product Data Sheets available to download.

    When you load or refresh the page you can click on any one of the three download links, and they all work fine. Once you click on one of the other ‘Email’ (after clicking on one already), you get the following error:

    <button type=button id=’close’ class=’btn btn-link btn-xs pull-right po-close’ style=’margin-top:-4px;margin-right:-10px’><i class=’fa fa-times text-danger’></i></button> Download UNIBLOC®-PD Positive Displacement Pump

    Please help.

    Thank you.

    #39629

    PhotonEngr
    Member
    This reply has been marked as private.
    #39608

    Gfoss
    Member

    Hi

    I’ve upgraded my version of Download Manager Pro from 4.40 to 4.5.3 but now get a issue with the download links not appearing on my site.

    Instead I get ‘link-default.php’ text appearing.

    When upgrading I have deactivated and deleted old files and uploaded new and activated plugin. Back office looks okay.

    Please help.

    Geoff

    #39593

    In reply to: Email Lock not working


    Spencer
    Member

    Hi apologies this was a separate issue, the database has now been repaired.

    The email functionality still isn’t working, we don’t receive emails with download links.

    Thank you,

    Dean


    therrmann
    Member

    Can you tell me what thats for?
    When WPDM is telling me there is an Update for a plugin and i click on the version it always links me into this section of the settings.
    But i can’t do anything there. I put in my logindata but nothing happens. What is that for and when will it be possible to make a simple update, not always
    download new plugin from this website -> deactivate plugin -> delete plugin -> upload plugin zip -> activate plugin

    that’s totaly annoying. 🙁

    #39564

    Jass
    Spectator

    You need to create a custom link template and there he need to use [title] tag instead of [page_link] tag and user the template with short-code like this:
    [wpdm_my_downloads login=1 template="template-id"]

    #39558

    andreabk
    Member

    Hallo,

    when I add the price to a download, the link template become less pretty, because the price and add to cart button are added in a strange way, esthetically conflicting with the template. How can I influence/modify the template of the price and the add to cart button?

    PS: I already tried to add elements from the Premium package option when customizing the link template, but this is just doubling the price and the add to cart buttons (i.e.: I get to “add to cart” buttons).

    Thanks,

    A

    #39549

    In reply to: Links and pages


    Shahjada
    Keymaster

    this is just a feature, you can control it from link template, usually in most link template we use [page_link] tag, which linked page title and page url, you need to create new link template where you should use [title] tag instead of [page_link], doc: http://www.wpdownloadmanager.com/doc/templates/

Viewing 25 results - 7,051 through 7,075 (of 9,350 total)