-
AuthorSearch Results
-
Dec 28, 2020 at 4:02 pm #143744
Dibix SRLMemberThis reply has been marked as private.Dec 28, 2020 at 9:50 am #143708
Pierre GergiParticipantHello again Nayeem,
This is a shortcode:
[wpdm_all_packages items_per_page=20 jstable=1 order="ASC" cols="page_link,download_count|Writer|categories|package_size|download_link" colheads="Title::260px|Writer::20%|Categories::10%|size::10%|Download::10%"]
I hope we can add the categories on top of the page.
Thank you for your help.
Regards
PierreDec 27, 2020 at 7:50 am #143646In reply to: CSV import error (500 error)
nonaka yasushiParticipantThank you for your help.
But, I could not import csv file.However, The import in the sample column is complete.
title,description,link_label,password,quota,show_quota,show_counter,access,template,category,icon,preview,files,file_titles,file_passwords,file_prices,package_dir,individual_file_download,cache_zip,download_count,page_template,uid,create_date,update_date,password_lock,terms_lock,linkedin_lock,tweet_lock,gplusone_lock,facebooklike_lock,email_lock,custom_form_field,email_lock_idl,base_price,sales_price,tags,acf_MoreInfo_source,acf_MoreInfo_excerpt
But, It fails in my output column.(Create Export CSV File)
ID,post_title,post_status,comment_status,post_name,post_type,post_author,ping_status,post_parent,post_date,post_modified,comment_count,files,fileinfo,file_titles,file_passwords,file_prices,package_dir,link_label,download_count,view_count,version,stock,package_size,package_size_b,access,individual_file_download,cache_zip,template,page_template,password_lock,facebook_lock,gplusone_lock,linkedin_lock,linkedin_message,linkedin_url,tweet_lock,tweet_message,email_lock,email_lock_title,email_lock_idl,email_lock_msg,terms_title,terms_conditions,terms_check_label,icon,import_id,password_usage_limit,gc_scopes_contacts,twitter_handle,facebook_like,base_price,sales_price,sales_price_expire,pay_as_you_want,download_limit_per_user,discount
Best regards.
Dec 25, 2020 at 11:56 am #143606In reply to: Questions about the Pro Version
Nayeem RiddhiModeratorYes, you have to use
[file_list]template tag in your link template, like here for shortcode, https://www.wpdownloadmanager.com/doc/short-codes/wpdm_packages-wp_query-in-a-shortcode-for-download-manager-packages/, sample demo is here, https://wpdmpro.w3eden.com/file-cart-for-shortcode/thanks
Dec 25, 2020 at 9:35 am #143604In reply to: Automatically redirecting on download link
Nayeem RiddhiModeratorby default, you are using
link-template-default.phpfor link template andpage-template-default.phpfor the page template. you can follow this doc, https://www.wpdownloadmanager.com/doc/template-files/ for back-up your files, As documentation, you have to copy the file in the theme directory naming a folder called download-manager, then paste it intpls>page-templatesfor page template ortpls>link-templatesfor link template.For opening in new windows, please add this code replacing
[download_link]in page/link templates PHP file as i described above,<a href="[download_url]" onclick="window.open('[download_url]','newwindow','width=1200,height=800'); return false;" class="btn btn-primary" target="_blank">[link_label]</a>thanks
Dec 25, 2020 at 5:50 am #143594In reply to: Premium Package – Payment – Currency Config
Nayeem RiddhiModeratorHow to Fix 403 Forbidden Error on WordPress
To help you fix the 403 Forbidden Error on your WordPress site io am describing it in detail:- ►File permissions
- ► .htaccess file
- ► Hotlink protection
1. File Permissions
Each folder and file on your WordPress site’s server has its own unique file permissions that control who can:Read – see the data in the file/view the contents of a folder.
Write – modify the file/add or delete files inside a folder
Execute – run the file and/or execute it as a script/access a folder and perform functions and commands.
These permissions are indicated by a 3-digit number, with each digit indicating the level of permission for each of the 3 categories above.Normally, these permissions just “work” for your WordPress site. However, if something gets messed up with the file permissions at your WordPress site, it can cause the 403 Forbidden error.
To view and modify your site’s file permissions, you’ll need to connect via FTP/SFTP.
Find all of the tools you need to manage your website (errors and all) in one convenient location.
For the screenshots in the tutorial below, we’ll be using the free FileZilla FTP program. The basic principles will apply to any FTP program, though – you’ll just need to apply them to a different interface.
Once you’re connected to your server, you can view a file or folder’s permissions by right-clicking on it:
Of course, manually checking the permissions for each file or folder isn’t really an option. Instead, you can automatically apply file permissions to all the files or folders inside of a folder.
According to the WordPress Codex, the ideal file permissions for WordPress are:
Files – 644 or 640
Directories – 755 or 750
One exception is that your wp-config.php file should be 440 or 400To set these permissions, right-click on the folder that contains your WordPress site. Then, choose File Attributes:
Enter 755 or 750 in the Numeric value box. Then, choose Recurse into subdirectories and Apply to directories only:
Once you’ve applied the correct permissions for directories, you’ll repeat the process for files. Only this time:
Enter 644 or 640 in the Numeric value box
Choose Recurse into subdirectories
Choose Apply to files onlyTo finish the process, you just need to manually adjust the permissions for your wp-config.php file to make them 440 or 400:
If file permissions issues were causing the 403 Forbidden Error, your site should now start working again.
2. .htaccess File
if you’re hosting uses the Apache web server, one common cause of the 403 Forbidden error is a problem in your site’s
.htaccessfile.The
.htaccessfile is a basic configuration file used by the Apache webserver. You can use it to set up redirects, restrict access to all or some of your site, etc.Because it’s so powerful, even if a little mistake can cause a big issue, like the 403 Forbidden error.
Rather than trying to troubleshoot the
.htaccessfile itself, a simpler solution is to just force WordPress to generate a new, clean.htaccessfile.To do that:
Connect to your server via FTP
Find the.htaccessfile in your root folder
Download a copy of the file to your computer (it’s always a good idea to have a backup just in case)
Delete the.htaccessfile from your server after you have a safe backup copy on your local computerNow, you should be able to access your WordPress site if your
.htaccessfile was the issue.To force WordPress to generate a new, clean
.htaccessfile:Go to
Settings → Permalinksin your WordPress dashboard
Click Save Changes at the bottom of the page (you do not need to make any changes – just click the button)And that’s it – WordPress will now generate a new
.htaccessfile for you.3. Check to See If Hotlink Protection Is Misconfigured
Hotlinking is when someone adds an image to their site, but the hosted link is still pointed to someone else’s site. To prevent this, some will set up what is called “hotlink protection” with their WordPress host or CDN provider.When hotlink protection is enabled, it will typically return a 403 forbidden error. This is normal. However, if you’re seeing a 403 forbidden error on something you shouldn’t be, check to make sure hotlink protection is configured properly.
Still Having Issues? Reach Out to Your Hosting Provider
The 403 Forbidden error means that your server is working, but you no longer have permission to view all or some of your site for some reason.
The two most likely causes of this error are issues with your WordPress site’s file permissions or .htaccess file. Beyond that, some plugin issues might also cause the 403 Forbidden error. Or it could be that something is misconfigured with hotlink protection or your CDN.
By following the troubleshooting steps in this guide, you should be able to get your site back to working in no time.
thanks
-
This reply was modified 5 years, 2 months ago by
Nayeem Riddhi.
Dec 24, 2020 at 9:03 pm #143581
Pierre GergiParticipantThank you Nayeem.
The first link is an example (by Download manager) that does not have categories on top of the page :
The second example that has categories on top of the page:
https://ebooks.qenshrin.com/It is very important to allow visitors to choose the appropriate category by Combo Box (Second example).
My question is how can I use categories in top of the page in Download manager plugins?I couldn’t attach an image to explain that!
Thank you
PierreDec 24, 2020 at 3:39 pm #143570
James KennedyParticipantThank you for the update. Is there a plan for if/when this will be addressed? We’ve been using the File-Cart on a site maintained separately with the same information (e.g. files were uploaded into Download Manager), so I can continue maintaining it, but we wanted to consolidate and reduce the footprint/cost of maintenance. Linking to the files in the media gallery is an ideal solution moving forward, but I need to notify my constituents how long it will be before the media gallery solution is possible.
Dec 24, 2020 at 12:56 pm #143555
Nayeem RiddhiModeratorI have didn’t changed yet, but if you get invalid download anytime you can adjust the settings from Basic > Private Download Link Usage Limit or Private Download Link Expiration Period, BTW, glad to hear that your problem has been resolved
thanks
Dec 19, 2020 at 5:25 am #143284
Wolfgang FurmanskiParticipantHello, no download possible despite correct password entry.
— Invalid download link — – by this message: https://lippe-air.de/download/letzter-tag-im-august-i?wpdmdl=270361&_wpdmkey=5fdd8e1fc7467
Dec 18, 2020 at 7:55 pm #143271Topic: another mistake
in forum Download Manager Pro
Wolfgang FurmanskiParticipantDespite entering the correct password I got the message – Invalid download link –
Dec 18, 2020 at 4:14 pm #143261
Nayeem RiddhiModeratorIf you are using the free version you can edit the tpls called page template PHP file or link template PHP file, and for upload or creating package/file you may use this frontend upload feature, https://www.wpdownloadmanager.com/doc/short-codes/wpdm_frontend-front-end-uploader-ui/, though it is available in the PRO version
thanks
Dec 17, 2020 at 5:12 pm #143204
Dean ChalkParticipantWell, it works on no-ones browser but yours
Please go to https://governance4fe.co.uk/knowledge-bank/financial-sustainability/
You will see a download link called ‘Statement of non-compliance with the CUC Remuneration Code‘.
This will not download in Chrome – it will in Edge or Firefox.The error we get in google developer tools is:
Mixed Content: The site at ‘https://governance4fe.co.uk/’ was loaded over a secure connection, but the file at ‘https://governance4fe.co.uk/wp-content/uploads/2020/02/Remuneration-Code-Statement-on-the-non-adoption-of-the-CUC-code.docx’ was redirected through an insecure connection. This file should be served over HTTPS. This download has been blocked. See https://blog.chromium.org/2020/02/protecting-users-from-insecure.html for more details.
Dec 17, 2020 at 3:33 pm #143192
James KennedyParticipantI see. That would significantly increase the size of our site given the number of files and the size of the files.
Can you explain why it behaves differently if the package is downloaded from the file cart instead of being sent by email from the file cart?
Can you explain why it behaves differently if the package is emailed from the admin panel package instead of being sent by email from the file cart?
It seems to me that the creation of the link when sending the email from the file cart is faulty – that it is grabbing different information than is being grabbed when the package is sent other ways.
Dec 17, 2020 at 11:53 am #143169In reply to: Site credit Lock
WPTestParticipantThis reply has been marked as private.Dec 15, 2020 at 5:40 pm #143059
James KennedyParticipantIs there a different permission that needs to be applied to our UPLOAD folder in order for the emailed link from the site to work? Here is what I’ve found:
- If the file is uploaded instead of selected from the Media Gallery, the file is able to be downloaded via the emailed link.
Uploading all the files is unacceptable because we are sharing the same files with users in multiple ways. The other plug-ins are already consuming the files from the media gallery.
- If the admin sends an email link for a package from the Download Manager UI (e.g. clicks on the paper airplane), the recipient of the email is able to successfully download the files that were selected from the Media Gallery.
The link created for the package is somewhat different from the link created by File Cart, but there should be a relationship and this could hold the key to fixing the issue with the File Cart email of files that were added to a package via the selection from the Media Gallery.
- The document link for the item in the package behaves differently depending on whether the file was uploaded or selected from the Media Gallery.
If the file was uploaded, using the document link results in a download. If the file was selected from the media gallery, the document link results in the file being displayed in the browser.
Dec 15, 2020 at 4:42 pm #143051In reply to: Archive page broken after update
Rudi SamynParticipantI have used Download Manager to generate code like this example:
[wpdm-archive category=”412″ cat_view=”compact” button_style=”primary” link_template=”link-template-default.php” order_by=”post_title” order=”desc” items_per_page=”10″]But it is not rendered. I reverted back to 3.1.1. (There are more problems with Archive pages (category and sort order are ignored) which I will address in a different post)
Dec 15, 2020 at 2:13 pm #143035
Lucy SestakParticipantHello, the plugin version is 1.2.6, which is according to the information from the provider of the latest version. The plugin does not even report that there is a newer version. I do not assume that this problem is in the older version. Please write me what the code should look like, which after clicking on the link or button will display the PDF in a pop-up window, as you state on your page. I tried the code:
<a href="[file_list]"> View PDF </a>, unfortunately this one only downloads the PDF again. I think this is the primary problem for all users of this plugin, because the Download manager does not offer document viewing by default.-
This reply was modified 5 years, 3 months ago by
Lucy Sestak.
Dec 15, 2020 at 12:55 pm #143022In reply to: Download when item bought
Espen NorengParticipantokei. I need the customer to be sendt the download link mail. Is there a shortcode for the downlod-link, to the product the costumer bought?
Dec 15, 2020 at 9:45 am #143000In reply to: Issue with Crypton Theme
kiddo worksheetsParticipantThis reply has been marked as private.Dec 14, 2020 at 5:32 pm #142974
James KennedyParticipantThis reply has been marked as private.Dec 14, 2020 at 10:25 am #142933In reply to: Issue with Crypton Theme
kiddo worksheetsParticipantThis reply has been marked as private.Dec 14, 2020 at 9:43 am #142923In reply to: Custom Taxonomy in Templates [wpdm Pro + Pods]
Nayeem RiddhiModeratorHi,
You can use package shortcode in your table and you can also use it in your other requirements customizing the link template used in the shortcode, for getting more knowledge about the template you can see this doc, https://www.wpdownloadmanager.com/doc/templates/
thanks
Dec 14, 2020 at 6:38 am #142913In reply to: Issue with Crypton Theme
Nayeem RiddhiModeratorCan you elaborate on this link please, https://www.wpdownloadmanager.com/support/search/crypton/, I think you are trying to show a demo with this
thanks
Dec 14, 2020 at 6:09 am #142907In reply to: Issue with Crypton Theme
kiddo worksheetsParticipantThis reply has been marked as private. -
AuthorSearch Results
Search Results for 'download link'
-
Search Results
-
Topic: another mistake
Despite entering the correct password I got the message – Invalid download link –





