Search Results for 'all downloads'

Viewing 25 results - 3,801 through 3,825 (of 4,410 total)
  • Author
    Search Results

  • jftripp
    Member

    Hi there,

    We have an install where we’re allowing downloads to software installers and documentation. All files are stored in a directory on the server (not in wordpress). All downloads of documentation work normally. However, for some reason the downloads of .zip files (the large files), do not work unless you have the administrator role in wordpress.

    All other roles get a 503 error when downloading.

    #22929

    Shahjada
    Keymaster

    @XadrezValle,
    Short-code is working fine, I’ve installed and activated v4.1.7, I see you already imported packaged, but they schedules, please publish those from quick edit.
    I’m installed tinymce editor button add-on, you can get more add-ons from Downloads Add-ons Menu.

    #22912

    MartinR
    Member

    Hey, question how can I update all my previous downloads with a download button??

    I have a lot of them soo …

    #22900

    a515
    Member
    This reply has been marked as private.
    #22884

    Eribros
    Member
    This reply has been marked as private.
    #22850

    boudiccas
    Member

    Hi Shaon.

    Just adding my voice to the list. I have converted *all* my downloads and then tried to set up with the new ids of the posts, but its just not working. THe throbber is just churning away and nothing is happening. The site is A taste of linux.

    Is there a solution please? Or should we downgrade the plugin until you’ve got it sorted out and running properly again?

    Sharon.
    [aka boudiccas]

    #22842

    When you create a new package in the backend you can choose who can download it:

    -based on user roles
    -but ALSO you can choose specific individual users (like John or Sally) who can download it

    Unfortunately users who can only create a package from the front end can only choose download permissions:

    -based on user roles

    This has still not been addressed. Why can’t the front end package creators have the same choice as the backend package creators? If you look at my snap from the previous comment you can see that ONLY the choice of user role is available from the front end. In fact Ziku’s screen grab shows teh exact same thing. The only option for FRONT end package creators is to limit downloads by role, NOT by individual. I hope this makes sense. Thanks!


    mchamzah
    Member

    solved. and this is a bug in version 2.7 and 2.7.1

    I add this code in the file: wpdm-all-downloads.php the first line:

    <script language="JavaScript" type="text/javascript" src="<?php echo plugins_url('download-manager/js/jquery.dataTables.js'); ?>"></script> 
    <link rel="stylesheet" href="<?php echo plugins_url('download-manager/css/jquery.dataTables.css'); ?>" type="text/css" media="all" />
    <style type="text/css">
    #TB_window{
        -moz-box-shadow: 0 0 5px #000;
    -webkit-box-shadow: 0 0 5px#000;
    box-shadow: 0 0 5px #000;
    }
    #TB_overlay{
        opacity:0.5;
    }
    </style>

    and this code on the last line

    <script type="text/javascript" charset="utf-8">
                /* Default class modification */
                jQuery.extend( jQuery.fn.dataTableExt.oStdClasses, {
                    "sSortAsc": "header headerSortDown",
                    "sSortDesc": "header headerSortUp",
                    "sSortable": "header"
                } );
                
                jQuery('.wpdm-pck-dl').click(function(){
                    tb_show(jQuery(this).html(),this.href+'&modal=1&width=600&height=400');
                    return false;
                });
    
                /* API method to get paging information */
                jQuery.fn.dataTableExt.oApi.fnPagingInfo = function ( oSettings )
                {
                    return {
                        "iStart":         oSettings._iDisplayStart,
                        "iEnd":           oSettings.fnDisplayEnd(),
                        "iLength":        oSettings._iDisplayLength,
                        "iTotal":         oSettings.fnRecordsTotal(),
                        "iFilteredTotal": oSettings.fnRecordsDisplay(),
                        "iPage":          Math.ceil( oSettings._iDisplayStart / oSettings._iDisplayLength ),
                        "iTotalPages":    Math.ceil( oSettings.fnRecordsDisplay() / oSettings._iDisplayLength )
                    };
                }
    
                /* Bootstrap style pagination control */
                jQuery.extend( jQuery.fn.dataTableExt.oPagination, {
                    "bootstrap": {
                        "fnInit": function( oSettings, nPaging, fnDraw ) {
                            var oLang = oSettings.oLanguage.oPaginate;
                            var fnClickHandler = function ( e ) {
                                if ( oSettings.oApi._fnPageChange(oSettings, e.data.action) ) {
                                    fnDraw( oSettings );
                                }
                            };
    
                           jQuery(nPaging).addClass('pagination').append(
                                '<ul>'+
                                    '<li class="prev disabled"><a href="#">&larr; '+oLang.sPrevious+'</a></li>'+
                                    '<li class="next disabled"><a href="#">'+oLang.sNext+' &rarr; </a></li>'+
                                '</ul>'
                            );
                            var els =jQuery('a', nPaging);
                           jQuery(els[0]).bind( 'click.DT', { action: "previous" }, fnClickHandler );
                           jQuery(els[1]).bind( 'click.DT', { action: "next" }, fnClickHandler );
                        },
    
                        "fnUpdate": function ( oSettings, fnDraw ) {
                            var oPaging = oSettings.oInstance.fnPagingInfo();
                            var an = oSettings.aanFeatures.p;
                            var i, sClass, iStart, iEnd, iHalf=Math.floor(oPaging.iTotalPages/2);
    
                            if ( oPaging.iTotalPages < 5) {
                                iStart = 1;
                                iEnd = oPaging.iTotalPages;
                            }
                            else if ( oPaging.iPage <= iHalf ) {
                                iStart = 1;
                                iEnd = 5;
                            } else if ( oPaging.iPage >= (5-iHalf) ) {
                                iStart = oPaging.iTotalPages - 5 + 1;
                                iEnd = oPaging.iTotalPages;
                            } else {
                                iStart = oPaging.iPage - Math.ceil(5/2) + 1;
                                iEnd = iStart + 5 - 1;
                            }
    
                            for ( i=0, iLen=an.length ; i<iLen ; i++ ) {
                                // Remove the middle elements
                               jQuery('li:gt(0)', an[i]).filter(':not(:last)').remove();
    
                                // Add the new list items and their event handlers
                                for ( i=iStart ; i<=iEnd ; i++ ) {
                                    sClass = (i==oPaging.iPage+1) ? 'class="active"' : '';
                                   jQuery('<li '+sClass+'><a href="#">'+i+'</a></li>')
                                        .insertBefore('li:last', an[i])
                                        .bind('click', function () {
                                            oSettings._iDisplayStart = (parseInt($('a', this).text(),10)-1) * oPaging.iLength;
                                            fnDraw( oSettings );
                                        } );
                                }
    
                                // Add / remove disabled classes from the static elements
                                if ( oPaging.iPage === 0 ) {
                                   jQuery('li:first', an[i]).addClass('disabled');
                                } else {
                                   jQuery('li:first', an[i]).removeClass('disabled');
                                }
                                 
                                if ( oPaging.iPage === oPaging.iTotalPages-1 ) {
                                   jQuery('li:last', an[i]).addClass('disabled');
                                } else {
                                   jQuery('li:last', an[i]).removeClass('disabled');
                                }
                            }
    
                        }
                    }
                } );
    
                /* Table initialisation */
               jQuery(document).ready(function() {
                   jQuery('#wpdmmydls').dataTable(   );
                } );
            </script>
    
    #22840

    Shaon … I just updated my version as well and all my downloads deleted! Please help me out asap! I had over 35,000 combined downloads from programs on my website and now they are all gone! ?!

    #22838

    XadrezValle
    Member

    Hi, Shaon
    All downloads in my site worked well with 2.6.96 version. When I upgraded to the next version they desappeared.
    I’ve tested to downgrade to 2.6.96 and it worked again.
    I purchased today the pro version and have already migrated the downloads, but the downloads in the posts desappeared again.
    Could you help me in this issue?
    Thank you in advance.
    Adriano

    #22823

    In reply to: new update


    Shahjada
    Keymaster

    Please download and install http://www.wpdownloadmanager.com/download/advanced-tinymce-button/ for editor button
    more free add-ons are here http://www.wpdownloadmanager.com/downloads/free-add-ons/

    Sorry for all this trouble, but we did the update for making the plugin stable and secure, v2.6 was 3 years old code.

    #22805

    In reply to: Shotcode Help


    Shahjada
    Keymaster

    For http://demo.wpdownloadmanager.com/wpdmpro/all-downloads/ , please use short-code [wpdm-all-packages items_per_page="20" jstable=1] and for http://demo.wpdownloadmanager.com/wpdmpro/archive-page/ user [wpdm_archive].

    short-code docs: http://www.wpdownloadmanager.com/doc/short-codes/#datatable
    Archive page docs: http://www.wpdownloadmanager.com/doc/installation-usage/

    please let me know if you have any other query 🙂

    #22798

    Shahjada
    Keymaster

    need to edit code at wpdm-all-downloads.php, replace <?php echo DownloadLink($data, $style = 'simple-dl-link'); ?> with <a href="<?php the_permalink(); ?>">Download Now</a>

    #22794

    Hi

    After your advice I have purchased WordPress Download Manager Special Pack for Pro4.

    I would like to produce the following layout on my pages but cannot work out what shortcode to use as all I ty do not look like either of these pages:

    http://demo.wpdownloadmanager.com/wpdmpro/all-downloads/
    http://demo.wpdownloadmanager.com/wpdmpro/archive-page/

    Please can you advise of the shortcoe/template etc needed to do these?

    Many thanks
    Scott

    #22786

    Klaus D.
    Member

    Hi there,

    still waiting for any help regarding

    “have updated Download Manger and now all downloads showing “xxx.pdf.download”. It also shows “Download class=”fa fa-th-large”> 607.92 KB”. And Password won’t work anymore.”

    Thanks for help

    Klaus D.

    #22740

    Supernacorp
    Member

    This is the file http://www.superna.net/download/eyeglass-emc-isilon-edition-virtual-appliance/

    if you can download this you will see it won’t finish and is corrupt after download

    This url works fine http://www.superna.net/wp-content/Downloads/Superna_Eyeglass-1.1.6.zip

    Really need to know whey streaming large files fails with WPDM plugin.

    I can change or test an changes but need input. The suggestion above does not have anything to do with building multi file zip file downloads with WPDM.

    Andrew

    #22739

    maritzalisa
    Member

    SO – I found out that the trick is to go to Downloads > Settings from the WPAdmin screen and select Migrate. You should be able to bring previous packages into the new version. I did that, but they were all missing download icons. You will have to go in and assign icons manually. The downloads did not appear immediately in posts. I think the reason for that was because they were not immediately published. Just a heads-up for those who used previous versions of the plugin….

    #22729

    Shahjada
    Keymaster

    please use this add-on http://www.wpdownloadmanager.com/download/copy-to-pro/
    #1. download, install & activate
    #2. go to Admin Menu Downloads Settings Migrate tab to transfer data from free to pro

    #22701

    paulsmit
    Member
    This reply has been marked as private.
    #22691

    Hi Shaon,

    I’m pretty sure this is a script execution time issue, but wanted to check with you before submitting an issue with WP-Engine.

    Here’s the error:

    [Wed Nov 19 15:11:06 2014] [error] [client 24.126.225.81] [WPE Monitoring] Stopwatch php.pod-1487.function.session_start.duration exceeded 200ms. Was: 911ms.\n#0 wpe\\measure\\LoggingStopwatch->logStackTrace(911) called at [/nas/wp/www/common/production/measure.php:198]\n#1 wpe\\measure\\LoggingStopwatch->lap_ended(911) called at [/nas/wp/www/common/production/measure.php:134]\n#2 wpe\\measure\\Stopwatch->lapstart() called at [/nas/wp/www/common/production/measure.php:158]\n#3 wpe\\measure\\Stopwatch->__destruct() called at [/nas/wp/www/cluster-1487/hitechanswers/wp-content/plugins/download-manager/download-manager.php:15]\n#4 session_start() called at [/nas/wp/www/cluster-1487/hitechanswers/wp-content/plugins/download-manager/download-manager.php:15]\n#5 include_once(/nas/wp/www/cluster-1487/hitechanswers/wp-content/plugins/download-manager/download-manager.php) called at [/nas/wp/www/cluster-1487/hitechanswers/wp-settings.php:215]\n#6 require_once(/nas/wp/www/cluster-1487/hitechanswers/wp-settings.php) called at [/nas/wp/www/cluster-1487/hitechanswers/wp-config.php:131]\n#7 require_once(/nas/wp/www/cluster-1487/hitechanswers/wp-config.php) called at [/nas/wp/www/cluster-1487/hitechanswers/wp-load.php:29]\n#8 require_once(/nas/wp/www/cluster-1487/hitechanswers/wp-load.php) called at [/nas/wp/www/cluster-1487/hitechanswers/wp-blog-header.php:12]\n#9 require(/nas/wp/www/cluster-1487/hitechanswers/wp-blog-header.php) called at [/nas/wp/www/cluster-1487/hitechanswers/index.php:17]\n, referer: http://www.hitechanswers.net/download/interoperability-mu-lies-beyond/
    
    [Wed Nov 19 15:11:06 2014] [error] [client 24.126.225.81] Directory index forbidden by Options directive: /nas/wp/www/sites/hitechanswers/wp-content/plugins/wp-formbuilder/, referer: http://www.hitechanswers.net/download/interoperability-mu-lies-beyond/

    The second error is happening many times – any idea why something is trying to access the directory index of the formbuilder plugin?

    Thanks,

    Jeff

    PS – I’ll repost the login and ftp details in a private message

    #22688

    zoomlanski
    Member

    Following topic.
    I had to add all my downloads again too.
    Concern that with any subsequent update I’ll lose them repeatedly.

    #22671

    In reply to: new domain


    daniel63
    Member
    This reply has been marked as private.
    #22644

    Supernacorp
    Member

    how much RAM is required when download manger is used. I have posted and
    verified cache director is writeable.

    If you notice in my post when I use url that by passess download manager
    the file downloads fine without issue.

    Its specifically when downloading from the same server through WPDM
    pluggin.

    what is method to check output buffering. I can check now and post update
    here.

    Andrew

    #22634

    Shahjada
    Keymaster

    file location: /wp-content/plugins/download-manager/wpdm-all-downloads.php

    #22612

    tomfavell
    Member

    Hi
    I’m using the shortcode [wpdm-all-packages], – (which looks very nice) Id like to change the action of the “Download” button at the end of each row to work the same way as the link on the filename. I gather from other posts I will have to edit wpdm-all-downloads.php. But I cant find this file in WordPress. Where is the file and what do I have to edit to make the link work.
    Many Thanks

Viewing 25 results - 3,801 through 3,825 (of 4,410 total)