Nayeem Riddhi

Forum Replies Created

Viewing 25 posts - 12,701 through 12,725 (of 19,343 total)
in reply to: Column selection not translating to actual page #143629

Nayeem Riddhi
Moderator

I have adjusted it from Downloads > User Interface > Bootstrap CSS, thus it is working

thanks

in reply to: Login not redirecting to custom url #143627

Nayeem Riddhi
Moderator

Sorry for some late, it is working now, I have commented out in line number 134 from download-manager\libs\class.Shortcodes.php file,
if (isset($up['host']) && $up['host'] != $_SERVER['SERVER_NAME']) $log_redirect = $_SERVER['REQUEST_URI'];

I have tested here, https://mystagingdomain.com/UnderProgress/rair/test-download/

thanks

in reply to: Questions about the Pro Version #143625

Nayeem Riddhi
Moderator

When attaching a file from the media library, it is added as URL, for URL ( local or remote ), only single file download will work, I think you would better use uploading file from select files option, it is working fine for file-cart option

thanks

in reply to: DM pro + pdf viewer Invalid PDF structure. #143621

Nayeem Riddhi
Moderator

Can you please check it, https://guiasyscoutsdechile.org/download/wpdm-test/, it is working fine from my side

thanks

in reply to: Column selection not translating to actual page #143620

Nayeem Riddhi
Moderator

Please check now, is it Ok or not, https://georgiansforthearts.org/research/

thanks

in reply to: Limit download per customer – Coupons #143609

Nayeem Riddhi
Moderator

Sorry for some late, can you please elaborate on download the coupon issue, please let me know then

thanks

in reply to: Questions about the Pro Version #143608

Nayeem Riddhi
Moderator

Yes, you got the right

thanks

in reply to: Questions about the Pro Version #143606

Nayeem Riddhi
Moderator

Yes, 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

in reply to: CSV import error (500 error) #143605

Nayeem Riddhi
Moderator

please share your CSV file in private reply and if possible, please, give your temporary wp-admin login details in a private reply for checking the issue.

Thanks

in reply to: Automatically redirecting on download link #143604

Nayeem Riddhi
Moderator

by default, you are using link-template-default.php for link template and page-template-default.php for 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 in tpls>page-templates for page template or tpls>link-templates for 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

in reply to: CSV import error (500 error) #143602

Nayeem Riddhi
Moderator

Which PHP version and WPDM version you are using? let me know

thanks


Nayeem Riddhi
Moderator

Now, has the problem been resolved on your side? please let me know

thanks


Nayeem Riddhi
Moderator

Which shortcode you are using there, please let me know

thanks

in reply to: DM pro + pdf viewer Invalid PDF structure. #143596

Nayeem Riddhi
Moderator

Which version of WPDM PRO and PDF viewer you are using, please let me know, if possible, please, give your temporary wp-admin login details in a private reply for checking the issue

Thanks

in reply to: Premium Package – Payment – Currency Config #143594

Nayeem Riddhi
Moderator

How 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:

    view-file-permissions-01

    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 400

    To set these permissions, right-click on the folder that contains your WordPress site. Then, choose File Attributes:

    fix-403-forbidden-error-wordpress-file-permissions-2

    Enter 755 or 750 in the Numeric value box. Then, choose Recurse into subdirectories and Apply to directories only:

    fix-403-forbidden-error-wordpress-file-permissions-3

    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 only

    fix-403-forbidden-error-wordpress-file-permissions-5

    To finish the process, you just need to manually adjust the permissions for your wp-config.php file to make them 440 or 400:

    fix-403-forbidden-error-wordpress-file-permissions-4

    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 .htaccess file.

    The .htaccess file 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 .htaccess file itself, a simpler solution is to just force WordPress to generate a new, clean .htaccess file.

    To do that:

    Connect to your server via FTP
    Find the .htaccess file 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 .htaccess file from your server after you have a safe backup copy on your local computer

    fix-403-forbidden-error-wordpress-htaccess

    Now, you should be able to access your WordPress site if your .htaccess file was the issue.

    To force WordPress to generate a new, clean .htaccess file:

    Go to Settings → Permalinks in 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 .htaccess file 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 4 years, 6 months ago by Nayeem Riddhi.
    in reply to: Column selection not translating to actual page #143593

    Nayeem Riddhi
    Moderator

    please share your related URL please, if possible, please, give your temporary wp-admin login details in a private reply for checking the issue.

    Thanks

    in reply to: Tag Page #143575

    Nayeem Riddhi
    Moderator

    It will need to customize the tag related file for your requirements

    thanks


    Nayeem Riddhi
    Moderator

    Ok, we shall try to work on it, if it possible from the remote server too

    thanks

    in reply to: Questions about the Pro Version #143564

    Nayeem Riddhi
    Moderator

    Yes, I have understood your issue, can you please check the demo page here, https://demo.wpdownloadmanager.com/addons/download/try-file-cart-add-on/, you can check the attached files tab option for cart adding option, please then let me know

    thanks


    Nayeem Riddhi
    Moderator

    Sorry for some late, I have informed from our senior developer that, When attaching a file from the media library, it is added as URL, for URL ( local or remote ), only single file download will work, I think you would better use uploading file from select files option, it is working fine for file-cart option

    thanks

    in reply to: Translation Email Lock #143562

    Nayeem Riddhi
    Moderator

    Hi,

    you can use plugins/download-manager/languages/download-manager.po or download-manager.pot file as your requirements for translation

    thanks


    Nayeem Riddhi
    Moderator

    I have found the issue, soon you shall get an update regarding the issue

    thanks


    Nayeem Riddhi
    Moderator

    I 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


    Nayeem Riddhi
    Moderator

    please use this shortcode, https://www.wpdownloadmanager.com/doc/short-codes/wpdm_packages-wp_query-in-a-shortcode-for-download-manager-packages/, you will get the same and more extended feature with this shortcode

    thanks


    Nayeem Riddhi
    Moderator

    please check now, it is working from my side, please check my attached video,

    thanks

    Viewing 25 posts - 12,701 through 12,725 (of 19,343 total)