• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar

Download Monitor & Manager Plugin

Simple Download Monitor & Manager for WordPress

  • Home
  • Documentation
  • Addons/Extensions
  • Login
    • Sign In
    • Edit Profile
    • My Downloads
  • Support
    • Tutorials
    • Forum
    • Forum Search
    • Forum Login
    • Forum Registration
  • Contact Us
You are here: Home

admin

  • Profile
  • Topics Started
  • Replies Created
  • Engagements
  • Favorites

Forum Replies Created

Viewing 15 posts - 106 through 120 (of 264 total)
← 1 2 3 … 7 8 9 … 16 17 18 →
  • Author
    Posts
  • May 21, 2020 at 1:19 am in reply to: Filtering bots #1572
    admin
    Keymaster

    The following one looks a little bit weird which is why I asked that question:

    Sidetrade indexer bot

    Normally, the value should look something like the other one you posted.

    okay I have added these two to the Bot filtering function. So it won’t make it to the log from the next version of the plugin.

    May 20, 2020 at 12:19 am in reply to: Filtering bots #1570
    admin
    Keymaster

    The bot one is a continuous process since new ones keep coming over time. Do you know the full user agent value of the them so I can check it out?

    If you enable the capture user agent data option, then it will show that full user agent value in the logs.

    May 19, 2020 at 1:25 am in reply to: squeeze info sent to admin via email… #1568
    admin
    Keymaster

    The following “email notification on download” addon is the one that deals with admin notification:

    Email Notification on Download Addon for the Simple Download Monitor Plugin

    Perhaps I can add an option in that addon so some download items can be “excluded” from the email notification. Will that be helpful for you?

    May 19, 2020 at 1:21 am in reply to: Error update and duplicate download posts #1567
    admin
    Keymaster

    Thank you for the update. Glad to hear that.

    May 16, 2020 at 12:26 am in reply to: Squeeze Form Addon Download #1563
    admin
    Keymaster

    Did you add the shortcode that is explained on the following page?

    Squeeze Form Addon for Simple Download Monitor

    Please copy and paste the shortcode that you are using so I can check it to see if there is any typo. Also, post the URL of the page where you have it so I can inspect it.

    May 15, 2020 at 1:37 am in reply to: squeeze info sent to admin via email… #1561
    admin
    Keymaster

    For the user or for site admin? The site admin can view all all the data with the squeeze form submissions in the “Squeeze Form Submissions” interface of your admin dashboard.

    The squeeze form is an open form that any visitor can fill out. So it can be abused a little bit sometimes. Sending an email to admin for every submission can generate excessive amount of emails which can then trigger the server to start to block emails from that site and so on.

    May 11, 2020 at 2:12 am in reply to: Error update and duplicate download posts #1556
    admin
    Keymaster

    The count comes from the logs. It is likely the log entries are messed up on this site. Try resetting the logs from the “Logs” menu. Then check to see how the count works after that.

    May 11, 2020 at 2:10 am in reply to: Terms and Conditions Tick Box #1554
    admin
    Keymaster

    Looks to be a CSS issue with the theme or another contact form plugin you have. This other source is apply a global width to checkboxes which is causing the issue on your site. You can do the following test to see what I mean:

    Test for Plugin and Theme Conflict Before Posting an Issue or a Bug

    May 7, 2020 at 1:41 am in reply to: MailerLite Integration #1545
    admin
    Keymaster

    It doesn’t have a MailerLite integration at this stage. We will look at adding an option for it in the future.

    April 29, 2020 at 11:41 pm in reply to: Squeeze Form Addon Download #1542
    admin
    Keymaster

    You can download it from the following page:

    My Downloads

    Also, I sent you a copy just now to your email address (the address that you used to register for this forum)

    April 21, 2020 at 7:03 am in reply to: Hidden download plugin problem #1538
    admin
    Keymaster

    Maybe hardcode the name like the following (so it always appends .zip to the file name).

    
    $file_name = basename($file_path);
    $file_name = $file_name . '.zip';
    

    Does that make any difference?

    Regarding the 502 error, you need to look at the server’s error log to see what exactly is triggering that. The error log will have clue as to what specific function call is failing on this site.

    April 20, 2020 at 1:43 am in reply to: Hidden download plugin problem #1535
    admin
    Keymaster

    Lets try a little test with some PHP code tweaks to see if it works. We can then add a filter in the addon so it can be customized without modifying the core addon’s code in the future.

    1) Open the following file of this addon:

    sdm-hidden-downloads/sdm-hd-download-handler.php

    2) Find the following line of code in that file:

    
    $file_name = basename($file_path);
    

    3) Replace it with something like the following:

    
    $file_name = basename($file_path);
    
    $file_parts = pathinfo($file_path);
    if (empty($file_parts['extension'])){
        //Missing extension. Manually force it to have .zip extension
        $file_name = $file_name . '.zip';
    }
    

    Please note that I have written this code from the top of my head. It hasn’t been tested. So make sure to change this code via FTP so you can revert the changes (by replacing with the original file) easily if something goes wrong.

    April 20, 2020 at 1:17 am in reply to: Hidden download plugin problem #1532
    admin
    Keymaster

    It tries to read the filename by using the PHP basename() function. So it needs a direct link to the static file (not to another script which will manage the file):
    https://www.php.net/manual/en/function.basename.php

    It is likely that function is failing to read the file name. The setup you explained is not a standard one for handling download via PHP system so I am not 100% sure if it will work but it is worth trying the different download method settings offered in the hidden downloads addon. Go to the “Hidden Download” menu in your WP Admin interface. Then try the different URL conversion and download method options to see if it can handle the download better.

    April 18, 2020 at 12:37 am in reply to: How to change Squeeze Form background color? #1530
    admin
    Keymaster

    At least the CSS is showing there now (in the HTML code) so the caching issue is gone. Now, the CSS you entered has an error which needs to be corrected.

    You have the “!important” tag AFTER the semi-colon which is wrong. The correct syntax is the following. So update your CSS code with the following.

    .sdm_sf_tpl_0_form {
    background-color: #b2b2b2 !important;
    border-color: #b2b2b2 !important;
    }

    April 16, 2020 at 12:57 am in reply to: Error update and duplicate download posts #1527
    admin
    Keymaster

    Do you have any offset count set for that download? Edit that download item and check the offset count value to see if you have a number entered in there (which will offset the total count).

  • Author
    Posts
Viewing 15 posts - 106 through 120 (of 264 total)
← 1 2 3 … 7 8 9 … 16 17 18 →

Primary Sidebar

Featured Addons

  • Squeeze Form Addon
  • Hidden Downloads Addon
  • Amazon S3 Integration

Support Links

  • Support Forum

Search

Featured Plugin

WP Express Checkout Plugin

Start managing and tracking your file downloads with the simple download monitor plugin. Download Now

Copyright © 2025 | Simple Download Monitor | A member of the Tips and Tricks HQ family.