Forum Replies Created
-
AuthorPosts
-
adminKeymaster
Looks like a MailChimp account issue with that particular email. Can you test with an email that you haven’t deleted or blocked from your MailChimp account before?
If you are testing with one email address again and again, then MailChimp may think it is spam and block that particular email from being able to subscribe. This is something you need to fix in your MailChimp account (not our addon).
adminKeymaster1) Enable the debug logging feature and then do a test submission so you can see if the MailChimp add is working successfully.
2) The squeeze form submissions will go to the “Squeeze form” addons menu since the submissions are handled by that addon. So check the submissions under the addon’s menu.
3) The download event is the success trigger here. You can’t trigger a download and show a message. Think of the behavior you see when you click on a standard download link (which just starts the download of the file).
You can enable the “Deliver the Download via Email” option from the squeeze form addon’s settings and that will show a message to check the email (instead of triggering the download).
adminKeymasterWhat is the User agent value of it?
adminKeymasterThe 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.
adminKeymasterThe 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.
adminKeymasterThe 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?
adminKeymasterThank you for the update. Glad to hear that.
adminKeymasterDid you add the shortcode that is explained on the following page?
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.
adminKeymasterFor 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.
adminKeymasterThe 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.
adminKeymasterLooks 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
adminKeymasterIt doesn’t have a MailerLite integration at this stage. We will look at adding an option for it in the future.
adminKeymasterYou can download it from the following page:
Also, I sent you a copy just now to your email address (the address that you used to register for this forum)
adminKeymasterMaybe 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.
adminKeymasterLets 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.
-
AuthorPosts