Search Results for 'download link'

Viewing 25 results - 7,276 through 7,300 (of 9,314 total)
  • Author
    Search Results

  • Leitner
    Member

    Hello,

    I have some troubles during the csv import.
    I got the following error:

    Warning: mysql_real_escape_string(): No such file or directory in /…./wp-content/plugins/download-manager/wpdm-functions.php on line 4751

    Warning: mysql_real_escape_string(): A link to the server could not be established in /…./wp-content/plugins/download-manager/wpdm-functions.php on line 4751

    I’ve also tested to upload the original samle.csv file. There is the same error.

    Have anyone a solution for me?

    Best Regards

    Patrick

    #34882

    Nintay
    Member

    Hi

    I’m having problem – It’s suddenly happen and its really urgent.

    When I’m clicking on a download button – I’m getting a loading icon which not stop even after the download finish.

    Only when clicking on the browser page – displaying an error says only “1”.

    Why is this happening?!?

    attached in private mesage my user and password.

    While you’re there..

    1. Can I make header style to to be sticky?

    2. Why the links in the right sidebar not opening in new tab? they’ve HTML target=_blank, and also tested it with another plugin – Just check the “Open in new tab” box.

    Is this suppose to happen?

     

    Thanks

    #34880

    brunzino
    Member

    It appears that when batch importing, the file is copied into download-manager-files, correct? If two files of the same base name, but batch imported from different directories, the original file in download-manager-files is overwritten. Every copied field needs to be timestamped, then, yes?

    // wpdm-core.php ~line 457
    function wpdm_dimport()
    {
    global $wpdb;

    //array_shift($flds);
    $fileinf = array();

    // $files holds array with filename in UPLOAD_DIR where newly created package will be copied to
    // $files = array($_POST[‘fname’]);
    $new_file_name = time() . ‘wpdm_’ . $_POST[‘fname’];
    $files = array($new_file_name);

    $fileinf[‘access’] = $_POST[‘access’];

    if (isset($_POST[‘password’]) && $_POST[‘password’] != ”) {
    $fileinf[‘password_lock’] = 1;
    $fileinf[‘password’] = $_POST[‘password’];

    }

    $fileinf[‘files’] = $files;

    $post_id = wp_insert_post(array(
    ‘post_title’ ► esc_attr($_POST[‘title’]),
    ‘post_content’ ► esc_attr($_POST[‘description’]),
    ‘post_type’ ► ‘wpdmpro’,
    ‘post_status’ ► ‘publish’
    ));

    wp_set_post_terms($post_id, $_POST[‘category’], ‘wpdmcategory’);

    foreach ($fileinf as $meta_key ► $value) {
    update_post_meta($post_id, “__wpdm_” . $meta_key, $value);
    }

    print_r($fileinf);

    // Newly imported file is copied to $new_file_name in UPLOAD_DIR
    // copy(get_option(‘wpdm_importdir’) . $_POST[‘fname’], UPLOAD_DIR . ‘/’ . $_POST[‘fname’]); // also inserts an extra ‘/’
    copy(get_option(‘wpdm_importdir’) . $_POST[‘fname’], UPLOAD_DIR . $new_file_name);

    do_action(‘after_add_package’, $post_id, $fileinf);
    //@unlink(dirname(__FILE__).’/imports/’.$_POST[‘fname’]);
    die(‘Done!’);
    }

    #34832

    Shahriar
    Moderator

    To use such field dynamically, you will need http://www.wpdownloadmanager.com/download/advanced-custom-fields/ to create a new field for demo link in each package

    #34794

    Rizonesoft
    Member

    I do not want to put pressure on you, but my users are getting extremely frustrated. Is there a way to remove the session completely (simplify the plugin). I do not mind users hot linking to the files. As long as the waiting page is presented on each download click. Please help as soon as you can.

    #34793

    In reply to: Turn off Cache Feature


    DocCohn
    Member

    Cache added over 5 gig to my server. Also, when I updated from 3.0 to 4.0, all the product download links were gone. If so, do I have to add them again? Your upgrades should be more efficient and not cause more work on our part.

    #34785

    ganquetil
    Member

    Hello,

    I don’t know the buton code to add a button to my template ‘templatebibliotheque’.

    You can find enclosed an image which show what I have and what I want.

    Could you tell me which code I have to add?

    Today the code is :

    <div class=”col-md-12″><div class=”media”>

    <div class=”pull-right” align=”right”>

    [download_link]

    </div>

    <div class=”pull-left” align=”left”>

    [icon]

    </div>

    <div class=”media-body”>

    <h3> [title] </h3> [file_size] [download_count] downloads &nbsp

    [description]

    </div>

    </div>

    <hr style=”border-top: 1px solid #fff;display: block; width: 100%;clear: both; “/>

    </div>

    My webpage is http://applexia.fr/bibliotheque-driver/

     

    #34782

    In reply to: Turn off Cache Feature


    Shahjada
    Keymaster

    From Admin Menu Downloads Settings Basic Tab File Downloads Section Uncheck the option “Cache created zip file from multi-file package” Save Settings

    But disabling zip cache may slower the response time for download link of multi-file package.

    #34763

    Hi,

    I think I found a solution. Can you tell me if it’s good from you. I am a developer but as far, I do not know too WordPress framework.

    So I changed the taxonomy wpdmcategory.php-file, by:

    $count = 0;

    $wpmpcat = get_term(get_queried_object_id(), ‘wpdmcategory’);

    $q = new WP_Query(array(
    ‘post_type’ ► ‘wpdmpro’,
    ‘tax_query’ ► array(
    array(
    ‘taxonomy’ ► ‘wpdmcategory’,
    ‘terms’ ► $wpmpcat->term_id,
    ‘field’ ► ‘term_id’,
    ‘include_children’ ► true
    )
    ),
    ‘orderby’ ► ‘publish_date’,
    ‘order’ ► ‘DESC’)
    );
    $z = 0;
    while ($q->have_posts()) {
                $q->the_post();
    /*Desactivate Source Code
    while(have_posts()): the_post();*/
    ?>
    <div class=”col-md-3 recent_item”>
    <div class=”product-block”>

    “><?php wpeden_post_thumb(array(300,300), true, array(‘class’►’no-radius thumbnail’)); ?>

    <div class=”product-info”>
    <h3>“><?php the_title(); ?></h3>

    <?php if(function_exists(‘wpdmpp_product_price’)){ ?>
    <h4 class=”price”><?php echo wpdmpp_product_price(get_the_ID())>0?wpdmpp_currency_sign().wpdmpp_product_price(get_the_ID()):’Free’; ?></h4>
    <?php echo wpdmpp_product_price(get_the_ID())>0?str_replace(“btn-info”,”btn-flat flat-info no-radius”,wpdmpp_waytocart($post)):”Download“; ?>

    <?php } else { ?>

    “><?php _e(‘read more’,’thenext’); ?> <i class=”fa fa-angle-right”></i>

    <?php } ?>

    </div>

    </div>
    </div>

    <?php

    if(++$count%4==0) echo “<div class=’clear’></div>”;
    }
    //desactivate source code endwhile; ?>
    </div>

     

    Thank you in advance for your help.

    #34733

    Rizonesoft
    Member
    #34726

    Coaram
    Member
    This reply has been marked as private.
    #34721

    In reply to: Updating URL Issue


    trickz100
    Member

    Updating URLs used to be an easy job as they had their own Database Folder “ahm_files” or something like that. Now, everything is in “postmeta” which has made updating links pretty hard as you have them serialized, which I don’t understand what that means.

    To update the links, I would literally download the Database file, open Notepad++ and dona find and replace. This method works the best and quickest!

    Kind regards

    #34709

    Shahriar
    Moderator

    Sorry, that is not possible yet, as Dropbox generate only temporary direct download link, however we will release advanced dropbox add-on soon where there you will be able to generate direct download link.

    #34686

    But in regard to download, is it possible to, when user clicks on the link, it doesn’t open dropbox page and begin the download?

    #34610

    Rizonesoft
    Member

    I’m having an issue where my users are downloading a file and the wrong file gets downloaded. A number of users already reported this problem. Below is some of the reported issues.

    I can’t download it, I think there is something wrong with the links, when I download it, the file is memboost_1959.zip

    Everytime i try to download firemin or memory booster or else it’s always download the same file dvd repair. may u update the link please. thx a lot

    nstead of getting Memory Booster, I get Firemin… I think you need to fix the link?


    campusnod
    Member

    If this helps, I noticed that in the url referred to by the download link, some (but not all) underscores are casted to ‘%20’

    #34426

    Shahjada
    Keymaster

    Yes, you will see update notice in plugin dashboard as soon as it is available.

    As far as now, the change logs:

    — Fixed individual download issue
    — Fixed base name issue for non-ascii filenames
    — Fixed base name issue for non-ascii filenames
    — Fixed issues with docx preview
    — Fixed issued with template tag [file_list_extended]
    — Fixed issues with linkedin app id settings
    — Added new shortcodes wpm_package_count, wpdm_package_count
    — Added pause option with play button
    — Added New Short-code User Dashboard
    — Added Download History Page
    — Redesigned all link templates
    — Global option for single file download
    — Package option for zip cache

    #34417

    Shahriar
    Moderator

    this can’t be from any regular visitors, except some bot copied the download link and tried to access it repeatedly, max download count could be same or double of page view but not this much. You may check it from your website stats, which IP doing this, but nothing much here to do from wpdm itself, but as I explained earlier, block hotlink can block direct access to download link from external source.

    #34413

    sojournerweb
    Member

    I have a PDF file designated to a specific user using Download Manager Pro and Custom Access Level.

    On my website, when someone clicks a link to a PDF, it typically opens up as a new web page. However, when they click a link to the protected PDF, it downloads instead of open.

    Is it possible to change this behavior?

    Thanks

    #34409

    andisites
    Participant

    Hi!

    The download links on this page (and throughout site) link to pages with weird code – see attachment.  Thank you!

    http://www.brooksacademy.org/school-performance/

     

     

    I have already posted this in reply to the thread in the other forum, but was told that it should be posted in this forum for faster response.
    <p class=”MsoPlainText”>Post Link: http://www.wpdownloadmanager.com/support/topic/upgrade-from-free-date/#post-34287</p>
    ————

    Shahriar, it is now working, but every package on the site is now no longer displaying the icon and more importantly, is now showing the download count which has to be removed URGENTLY. I cannot see anywhere on the package to change that, and I don’t have time to go through every single file making changes. Can you please fix this or tell me a fast way to do it. The website looks really poor at the moment, and I would not have allowed access to the website if I had known you weren’t going to check that the changes you made hadn’t adversely affected the site. I will also post this in the other forum you mention because I can’t wait days for a response.

    #34345

    campusnod
    Member

    According to this forum post, the “mass update option” was supposed to be released by the end of August.

    #34331

    Hi,

    Can this be due to Facebook bot? these spikes happen when i share the posts containing these download links on facebook and twitter, nd my posts get shared.

    can this be the cause?

    will the hotlinking extension fix this? or i need other steps?

    cheers

    #34321

    Hi,

    Can you please be patient and explain how are the bot visits considered hotlinking?

    My problem is not users stealing my content!!

    Also, if i bought and installed the hotlinking prevention extension, will this prevent me from linking to the files? I have a PDF reader flipbook that i feed the pdfs paths to it so people can read the pdf online.

    and also use the worpdress audio shortcode to play some files. will the extension stop this?

    Please find attached a screenshot of the hits activity on 1 link that WPDM is saying that it was downloaded 32,075 times, while the page was visited only 972 times.

    clearly there are bots activities as the link was visited in one day 45,000 times and in another day 25,000 times. this can’t be legit users.

    Awaiting your help.

    cheers

     

    #34316

    ganquetil
    Member

    Hello,

    Thanks for your reply.

    Regarding the point 3 it seems the shortcode for the compact archive page doesn’t work. I trie this on:

    <span style=”line-height: 26.6667px;”>[wpdm-archive button_style=”inverse” link_template=”55ff81feac604″ order_by=”download_count” order=”desc” items_per_page=”12″ cat_view=”compact”]</span>

    and I obtain the page: http://applexia.fr/bibliotheque-driver/

    Regarding the point 2, the template name is “<span style=”color: #23527c; transition-property: border, background, color; transition-duration: 0.05s; transition-timing-function: ease-in-out; outline: 0px; box-sizing: border-box; font-family: ‘Open Sans’, sans-serif; font-size: 13px; line-height: 20.6349px; font-weight: bold;”>TemplateBibliotheque2” </span><span style=”color: #23527c; transition-property: border, background, color; transition-duration: 0.05s; transition-timing-function: ease-in-out; outline: 0px; box-sizing: border-box; font-family: ‘Open Sans’, sans-serif; font-size: 13px; line-height: 20.6349px;”>reference 55ff9cee9230a.</span>

    Regarding the point 1, why I can’t use the template settings on the downloads manager settings?

    You can access to my website with longin and password I gave you previously.

    Thank you for your help.

    Gael

Viewing 25 results - 7,276 through 7,300 (of 9,314 total)