Search Results for 'download link'

Viewing 25 results - 3,176 through 3,200 (of 9,374 total)
  • Author
    Search Results

  • Nayeem Riddhi
    Moderator

    What Causes 403 Forbidden Error in WordPress?
    The most common cause for the 403 Forbidden error in WordPress is due to poorly configured security plugins. Many WordPress security plugins can block an IP address (or a whole range of IP addresses) if they believe them to be malicious

    First thing you need to do is to temporarily deactivate all WordPress plugins. This includes any security plugins that you may have installed on your site. If this resolves your problem, then this means one of the plugins on your website was causing this error. You can figure out which plugin was causing the error by activating all your plugins one at a time until you are able to reproduce the 403 forbidden error.

    Often the 403 error is caused by a corrupt .htaccess file in your WordPress site. Repairing this file is quite easy.First you need to connect to your website using a FTP client or file manager in cPanel. Next, locate the .htaccess file in the root folder of your WordPress site. See this guide if you can’t find .htaccess file in Your WordPress folder. You need to download the .htaccess file to your computer so that you have a fresh backup of it. After that, you need to delete the file from your server.

    Try accessing your website. If 403 forbidden error is resolved, then this means that your .htaccess file was corrupt. You can generate a fresh .htaccess file by logging into your WordPress admin area and going to Settings » Permalinks page.

    please check those and let me know,

    thanks

    • This reply was modified 4 years, 9 months ago by Nayeem Riddhi.
    #138580

    Joshua Laing
    Participant

    Still no fix for this it seems to be a pretty big issue and its making me second guess getting an alternative download manager plugin. None of my download links show the total number of downloads most of the time its just an arrow or its blank next to downloads…. Please fix this asap!


    smoco
    Participant

    Hi,
    the free version worked like a charm. After upgrading from free to pro version all my downloads are broken and i get this error:
    <br /><b>Notice</b>: A non well formed numeric value encountered in <b>/var/www/clients/client15/web13/web/labw/wp-content/plugins/download-manager/admin/tpls/metaboxes/file-info.php</b> on line <b>18</b><br /><br /><b>Notice</b>: Uninitialized string offset: 1600115352 in <b>/var/www/clients/client15/web13/web/labw/wp-content/plugins/download-manager/admin/tpls/metaboxes/file-info.php</b> on line <b>18</b><br /><br /><b>Warning</b>: Illegal string offset 'title' in <b>/var/www/clients/client15/web13/web/labw/wp-content/plugins/download-manager/admin/tpls/metaboxes/file-info.php</b> on line <b>18</b><br /><br /><b>Notice</b>: Uninitialized string offset: 0 in <b>/var/www/clients/client15/web13/web/labw/wp-content/plugins/download-manager/admin/tpls/metaboxes/file-info.php</b> on line <b>18</b><br />
    Screenshot
    Any help?

    The only reason i switched from free to pro is that i had to make a small change in the default link template. Can i copy the default link template to my child theme and do the changes? if so i would go back to free and ditch the pro version.

    Matt

    • This topic was modified 4 years, 9 months ago by smoco.
    #138475

    David Baker
    Participant

    I’ve installed download pro – and it works….

    However, there are more than 50 downloads on a customers site ( paye.net/paye-projects ) and when you first select a download – you get the invalid download link…

    Then you clear your cache and you get the correct link.

    However, the end-user isn’t going to do this – they will simple go somewhere else.

    Can you help?

    thanks

    David

    #138429

    Shahjada
    Keymaster

    Hello @markshipley77,
    Please check the doc for all downloads table here:

    [wpdm_all_packages] – List all downloads in tabular format in a page


    You can specify columns here, for column data use title instead of page_link to remove the link from there title.

    Yes, you can remove icon with thumb, that also mentioned in the doc above.

    #138415

    Nayeem Riddhi
    Moderator

    which link-templates you are using in that shortcode, you can customize the link-template, you can follow this doc, https://www.wpdownloadmanager.com/building-a-wordpress-download-manager-link-template-from-scratch/ also you can edit the link template PHP file,

    and for media image as an icon, you can use like as I image attached

    Image 2020-10-14 at 6.48.10 PM

    thanks

    #138387

    Ben Schlaepfer
    Participant

    Solved this myself by copying the code you use in wpdm-functions.php function wpdm_logout_url so my finalised code for my custom function is:

    /*  ADD NONCE TO LOGOUT LINK  */
    
    function change_menu($items){
      foreach($items as $item){
        if( $item->title == "Logout"){
             $item->url = $item->url . "=" . wp_create_nonce(NONCE_KEY);
        }
      }
      return $items;
    	
    }
    add_filter('wp_nav_menu_objects', 'change_menu');
    

    Where the change was from

           $item->url = $item->url . "=" . wp_create_nonce( 'login' );
    

    TO

             $item->url = $item->url . "=" . wp_create_nonce(NONCE_KEY);
    

    For anyone interested in having TWO wordpress menus – one for logged in ( named logged-in ) and one for logged out ( named logged-out ) that switch when you are logged in or not PLUS having a Logout Link that behaves just like the WPDM logout links AND the ability to display login text messages to people not logged in, the three adds to your child theme functions.php is as follows:

    
    /*  LOGGED IN / LOGGED OUT MENU      */
    
    function my_wp_nav_menu_args( $args = '' ) {
     
    if( is_user_logged_in() ) { 
        $args['menu'] = 'logged-in';
    } else { 
        $args['menu'] = 'logged-out';
    } 
        return $args;
    }
    add_filter( 'wp_nav_menu_args', 'my_wp_nav_menu_args' );
    
    
    /*  ADD NONCE TO LOGOUT LINK  */
    
    function change_menu($items){
      foreach($items as $item){
        if( $item->title == "Logout"){
             $item->url = $item->url . "=" . wp_create_nonce(NONCE_KEY);
        }
      }
      return $items;
    	
    }
    add_filter('wp_nav_menu_objects', 'change_menu');
    
    
    /*  LOGGED OUT MESSAGE TO REGISTER OR LOGIN    */
    
    add_shortcode( 'visitor', 'visitor_check_shortcode' );
    
    function visitor_check_shortcode( $atts, $content = null ) {
    	 if ( ( !is_user_logged_in() && !is_null( $content ) ) || is_feed() )
    		return $content;
    	return '';
    }
    

    To use the visitor only text shortcode in a page or widget just do E.G.:

    [visitor]
    <div class=”card card-body bg-light”>
    You must register or login
    to download files from this site.
    </div>
    [/visitor]

    Thanks,
    Ben

    #138379

    Ben Schlaepfer
    Participant

    Sure. The logout links that are part of WPDM plugin work as expected – they log you out of WordPress and take you to the Login page. These links are on e.g. the Login page using [wpdm_login_form] when you are logged in as a susbscriber and the [wpdm_user_dashboard] on a dashboard page. I click the Logout link provided by your plugin and the user gets properly logged out, and presented with an empty login screen. Perfect.

    I have tried to replicate that function via a link in my main menu that uses the function posted before but with my login link I get sent to the homepage and I remain logged in to WordPress and can access the downloads / dashboard as a subscriber.

    The only difference I can see between the two Logout links (yours on the page via the plugin and mine in the menu are the none tokens).

    Can you advise how your plugin achieves this so I can implement similar in my menu.

    Thanks
    Ben


    midihead7
    Participant
    This reply has been marked as private.
    #138309

    Sarah Dameron
    Participant

    Home

    It’s on the left sidebar underneath Download White Papers. There should be a link there, but as you can see, there’s not.

    We’re also experiencing the same issue on this page as well: http://tipsweb.com/resource-library/

    We’re also not showing anything in our download history. Not sure why? I can’t even see the files.

    • This reply was modified 4 years, 9 months ago by Sarah Dameron.
    #138286

    Sidratul Sohrat
    Spectator

    Hello Carlos,

    Please check the link to know how our lock option works.

    Lock Options

    Hope you it will help you.

    #138259

    Piers Barber
    Member

    Hello,

    Back in June I asked, “Is it possible to have a PDF in the Library be only viewable?”. I do not think you fully understand what I meant to do. What I wish is to make a package and in our “Library” have the “DOWNLOAD” button be removed. The User clocks on the link and it takes it to the URL. Note that our “Library” shows all of the packages we have uploaded; so this is not for a single file on its unique URL page.

    Do let me know if this is a possibility or not. Thank you.

    #138251

    Joe Lichter
    Participant
    This reply has been marked as private.

    cbenson583
    Member

    believe I have figured out a workable solution with the lates release of Download Manager. I am able to use a direct link to a download manager category page and have the listing show the search and link template of my choice. However, the title of the category and breadcrumbs are missing. I have turned off all other plugins except download manager, the archive page, default values and tiny mce add-on and switched to the 2019 theme to verify that there are no conflicts with your plugin.

    Can you please tell me how to get my page to show the title and the breadcrumb as shown in your demo here – https://demo.wpdownloadmanager.com/wpdmpro/downloads/free-downloads/?

    https://hr.staging18.gsu.edu/downloads/benefits-health-wellness/ – The title should be Benefits Health & Wellness

    #138228

    Nayeem Riddhi
    Moderator

    please check, https://marketing.sswhitedental.com/downloads/advertising-design-files/, it is showing next-previous category now, you have also need to adjust same option for User link Template for the similar categories, I have adjusted download-manager/tpls/taxonomy-wpdmcategory.php file

    thanks

    • This reply was modified 4 years, 9 months ago by Nayeem Riddhi.
    #138194

    Shahjada
    Keymaster

    The download link was causing error due to the image button add-on, we have dropped the support for that add-on, we shall add the image button ooption with core soon.

    #138090

    Nayeem Riddhi
    Moderator

    You can check unmasking download link as I image attached,

    Image 2020-10-08 at 6.54.27 PM

    I hope it may help you,

    thanks

    #138088

    Hi,

    the download button is only showing a “#” even though there should be a pdf.

    What am I doing wrong??

    Link: https://www.atrify.com/download/success-story-nomoo-atrify/

    #138080

    Nayeem Riddhi
    Moderator

    so, the user should find the option in the main download button Permission Denied or Access Denied when you use Only Block Download Link in the settings, please elaborate more,

    thanks

    • This reply was modified 4 years, 10 months ago by Nayeem Riddhi.
    #138079

    Ertan Ljajic
    Participant

    Hello again,

    I did some research and I think that I finale have an idea of how to set up the system using your plugins. I have 2 questions for you:
    1) Can I have packages sell both as single products and via subscriptions? So for if the user has a subscription with 3 monthly downloads and spends those 3 monthly downloads can that user buy a new package separately? And can subscribers with the monthly free downloads download packages with the prices at all?

    2) On the WP Pro Membership page (https://www.wpdownloadmanager.com/download/wp-pro-membership/) there is a list of supported payment gateways:

    PayPal – Integrated
    Authorize.net – Integrated
    2Checkout – Add-on
    Stripe – Add-on
    Alipay – Add-on
    Paystack – Add-on

    There is no Coinbase payment gateway in a list, although you send me a link to it. So does this addon supports Coinbase or not?

    #138073

    Andrew Roper
    Participant

    I have a file that is set to use the video preview template – when I go to the page the preview never loads. I checked the source and opened the video source and it shows — Invalid download link — when going to the source. Please advise how to resolve?


    MOHAMMED ALFAHAAD
    Participant

    Hello,

    I have used ’email lock’. and When you click ‘download’ on the email that is sent, you get “Invalid download link”.

    and also before I get the message that saying ” this link leads to untrusted site ”

    thanks


    dpadureanu
    Participant

    When using packages hosted on Dropbox, integrated throudh WP Download Dropbox Plugin, the download count is not updated after downloading.
    Any solutions?

    #138026

    Nayeem Riddhi
    Moderator

    For link-template customization for the free version, you can customize the link-template-default.php file from download-manager>tpls>link-template directory,

    thanks

    #138016

    CHIJINDU EJIMOFOR
    Participant

    My website name is Booktree.Ng. When you try downloading different files, the lazy download plugin will only redirect to the first file downloaded. It’s like after the first download, the plug-in caches that file and serves other uses the same file irrespective of the download link they clicked on my website

Viewing 25 results - 3,176 through 3,200 (of 9,374 total)