Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Paul

    (@paultgoodchild)

    There is nothing in this plugin which would cause your site to start requesting random scripts.

    Thread Starter blog2k15

    (@blog2k15)

    Yes, I asked in support for cloudflare also, They are not random scripts. they are scripts from the same themes and plugins .
    Thanks

    Plugin Author Paul

    (@paultgoodchild)

    They appear random since if your site is functional on HTTP with those scripts you showed, then why does it need other scripts on HTTPS? What exactly is adding those extra scripts?

    You could also create a SSL force without a plug-in. You have only creat a .htaccess file in your website.

    Install a SSL certificate at your server. I think you have this done already.
    Create a .htaccess in your root file of WordPress (like domain.com/.htacces).
    Put the next code into it:

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

    Change your url in the general settings from https://(www).domain.com to https(www).domain.com

    Plugin Author Paul

    (@paultgoodchild)

    This isn’t the same – your comment is completely incorrect, and is for another use case altogether. Less sabotage and more helpful comments would benefit us all.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Adding more requests after switching to https’ is closed to new replies.