Viewing 2 replies - 1 through 2 (of 2 total)
  • You could…

    Add the https protocol to upload_url_path in: /wp-admin/options.php

    or

    Update all links from http to https using a MYSQL query.
    (Backups first, follow a confirmed tutorial if you’ve never done it.)

    And then add this to your htaccess file:

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{HTTPS} !=on
    RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L]
    </IfModule>
    
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress

    This sends all traffic to https on your site. If you have SSL you should make use of it, the search engines like it and it’s safer for everyone, inluding yourself.

    If you go down this road, add this to your wp-config.php file:
    define(‘FORCE_SSL_ADMIN’, true);
    (Right above the “That’s all…” part)

    Hope that helps.

    Plugin Contributor Barry Kooij

    (@barrykooij)

    Hey tallinn007,

    This is due the files are linked in your database to http. You can try to search and replace the entries in your database with a plugin like https://nl.wordpress.org/plugins/search-and-replace/

    I’m marking this as resolved as it’s not directly related to Download Monitor. Good luck with finishing moving to https.

    Kind Regards,

    Barry Kooij

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘https problem’ is closed to new replies.