Search Results for 'all downloads'

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

    Shahjada
    Keymaster

    @MartinR, Here is http://www.wpdownloadmanager.com/support/topic/download-manager-moving-to-custom-post-type/ the v2.7 details. You only need to migrate data, but old file short-code still woill work fine for already created files. Category short-code need to be changed. With v2.7 you can use all adds, here are some free add-on http://www.wpdownloadmanager.com/downloads/free-add-ons/ , but still if you want you can get back to v2.6 from here https://wordpress.org/plugins/download-manager/developers/

    #23001

    In reply to: 403 forbidden


    Shahjada
    Keymaster

    to get back all old files, go to Admin Menu Downloads Settings Migrate Tab, from there you can migrate all data from v2.6 to v2.7 . For other issue I need to check it from your installation, please give me temporary wp-admin login info in a private reply to check your issue.

    #22984

    Shahjada
    Keymaster

    Please install add-ons from here http://www.wpdownloadmanager.com/downloads/free-add-ons/ to add tinymce button, tree view and other short-code, you don’t have to purchase pro except you need to advanced features with pro.

    #22979

    Supernacorp
    Member

    yes it works. It would have been good to know this 10 posts ago. Why not just document this method to workaround shared hosting php timeout causing corrupt files on downloads. You must have many customers with this exact situation.

    For anyone else reading this. I will document it here.

    Upload file to media library
    if the file is too large to upload with wordpress 2Mb default upload limit then do the following.

    ftp to some folder under wp-content

    add plugging called “add from server” this plugin allows you to add to media library a file already on the server file system and browse to it. This way you can ftp the big file and simple add to library. NOTE: this plugin will copy your file on the OS disk from your directory to wp-content/uploads (media library default folder). make your life easier and put ftp files in uploads and then add to server to avoid the file copy and filling your disk

    now “edit file” and copy the file url of your download

    now goto download manager pluggin add package and add file using the url option, configure package they way you want now and publish

    if you use the email lock option the download url still points to wpdm plugin url so that tracking still works but the code now issues a redirect to the url so the file media library url is used serve the file to the browser. why this makes a difference?

    on shared hosting like goddaddy or other, you have no control over php.ini settings. you can google phpinfo.php and getini.php (will give you steps and code to see what settings you php site are using, but changing your php.ini won’t have an effect specifically max_execution_timeout = value to determine how long a php file is allowed to execute in seconds. defaults to 30 seconds which is not long enough to stream 100MB+ size files and times out and corrupts the download. Tried many options to change time out and godaddy confirmed it can not be changed by shared hosting (i.e. cheap hosting). save yourself some time and don’t bother with this as the url method works here is why.

    using the WP media library url works since apache is serving the file to the browser not PHP code which has 30 second download limit. The WPDM url method preserves email url’s and direct webpage downloads for big files, you can use smaller files without this method and we found this worked well as long as download was <30 seconds.


    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.

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