Questions tagged [ssl]
The ssl tag has no summary.
337 questions
0
votes
0
answers
48
views
Proper way to host WordPress behind a load balancer with TLS offloading and the PROXY protocol
There's a lot of information on how to make WordPress 'work' behind a reverse proxy or load balancer when using TLS offloading at the edge. A lot of these workarounds involve hacking up the wp-config....
1
vote
1
answer
352
views
WP Mail SMTP Plugin Fails Certificate Verification [closed]
I am using WordPress v6.7 with the WP Mail SMTP plugin v4.20 on a Windows 10 v23H2 development computer. The WP Mail SMTP fails to send a test message using WP Mail SMTP's test email function. I get ...
0
votes
2
answers
472
views
Is it safe to update wp-includes/certificates/ca-bundle.crt manually?
I see that wp-includes/certificates/ca-bundle.crt was last updated in 2020.
https://curl.se/docs/caextract.html has implemented numerous updates since then.
Can I overwrite WP's ca-bundle.crt?
0
votes
0
answers
36
views
Site1 wordpress website redirect to other site2 in my same server
I am using Alibaba Cloud Server Ubuntu 18.04 and control panel is VestaCP.
I have got a WordPress website www.site1.com . However, after I install SSL via really simple ssl plugin.
Now, I cannot ...
0
votes
1
answer
1k
views
Https Website: CSS and JS files load in http and admin page does not load too
After enabling SSL the website loads in HTML. CSS and JS files load only in HTTP(view source) and the admin page does not load either.
Tried implementing all solutions like rewrite condition to force ...
0
votes
1
answer
743
views
How to force HTTP and stop SSL completey on Wordpress website
We have a Wordpress website wich uses Video files from a local sever without SSL. If we use SSL on the main website url, it can't play Videos because of CORS policies so we need to completely disable ...
-1
votes
1
answer
88
views
How to properly configure SSL connection to remote azure database for running queries within a WordPress environment
We have a BlueHost WordPress install that we would like to enable a secure remote connection to our secondary database in Azure. We do not want to replace our existing db, just run queries through SSL ...
0
votes
0
answers
540
views
ERR_CONNECTION_REFUSED
After forcing SSL manually using the following code in wp-config.php file :
define('FORCE_SSL_ADMIN', true);
// in some setups HTTP_X_FORWARDED_PROTO might contain
// a comma-separated list e.g. http,...
0
votes
2
answers
2k
views
"Error: cURL error 60: SSL certificate problem: certificate has expired" when create product in WooCommerce via REST API
Everything worked fine a week ago. Lets Encrypt certificate on the site is valid. I am currently getting the following error while creating a product:
{"code":"...
1
vote
0
answers
581
views
wp-cli command throws error : "SSL routines:tls_process_server_certificate:certificate verify failed" while querying https website
I use wp-cli with wp restful plugin installed.
Running wp cli command wp rest user list --http=https://[url] throws below error:
Error: Failed to get url '[url]': stream_socket_client(): SSL operation ...
0
votes
0
answers
158
views
Is the default value of FORCE_SSL_ADMIN documented?
(Update. I rephrased the title since I understood better meanwhile what was going on.)
Dealing with an attempt to understand HTTPS redirection, I ended up seeing with a massive grep -r '...
0
votes
0
answers
139
views
HSTS header not being added correctly
I've added the following code to my child theme's functions.php in order to add a HSTS header to my website:
function tg_enable_strict_transport_security_hsts_header_wordpress() {
header( 'Strict-...
1
vote
1
answer
529
views
SSL and www to non-www redirection works only on homepage - Wordpress
I've enabled SSL on my Wordpress website and set redirection from www to non-WWW via the following code placed in .htaccess:
# REDIRECT WWW TO NON-WWW
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\....
0
votes
1
answer
863
views
Media library links broken WordPress Multisite after SSL update
We updated (not added) SSL to the site
The media on the network admin media library works fine, but the media library for the sub-sites displays a grey box
for example: Image url looks like this: (...
1
vote
1
answer
51
views
How to set up HTTPS Wordpress from Install Step?
I've set up many Wordpress sites over the years but I am trying to go out of my comfort zone now and install one in AWS with some AWS features I'm learning for the first time. The initial installation ...
1
vote
0
answers
978
views
Htaccess file isn't redirecting http sub-pages to https––they display 404 error instead, tried many solutions and none work
I installed SSL on my Google Compute Engine hosted WordPress Multisite installation, and have been having a hard time getting it working fully. Right now, the main domains for each site redirect ...
0
votes
1
answer
132
views
customizer not working when ever i activate ssl
when ever i activate my free ssl from cloudflare my websites customizer not working it is showing me blank page. please help.
screen shot
Console Screen shot:
0
votes
1
answer
173
views
Mixed content error after adding SSL certificate
I'm having problems on a website after adding an SSL certificate. These are the WhyNoPadlock results: https://www.whynopadlock.com/results/7193cea2-78e7-4bc7-9581-2af7f90bd15d
What I’ve done so far:
...
0
votes
0
answers
41
views
Images over HTTPS endless issues - mixed content
I've installed a SSL certificate on my site : https://whiskas.co.za and now I'm getting the mixed content issues, I've tried most of the stuff found on the www but no go :-(
Any help would be ...
1
vote
0
answers
50
views
Can't login to Wordpress without hitting the Remember Me checkbox. Potential SSL implementation bi-product
Having trouble logging on to a site we have recently launched.
php 7.35
WP 5.41
Everytime you go to login, the URL changes from https://example.com/wp-login.php to https://example.com/wp-login.php?...
0
votes
0
answers
59
views
Find the source file causing a Mixed Content warning
Google Chrome has flagged a client's Wordpress site as Not Secure. So we are trying to remove a Mixed Content warning that we get using the Inspect feature of the browser.
Mixed Content: The page at ...
0
votes
1
answer
698
views
Wordpress site shown as Not Secure on Chrome when SSL certificate is valid
Our client's Wordpress site is shown as Not Secure on Chrome. This is when the SSL certificate is valid according to Chrome itself.
When I go to the SSL settings in Wordpress, I notice the following ...
0
votes
2
answers
4k
views
Self signed certificate issue with WooCommerce rest api connection
I’ve got a simple php script which is connecting to my wordpress to create a product. Using the woocommerce rest api library.
$woocommerce = new Client(
'https://dev.example.co.uk',
'123456789',
...
0
votes
0
answers
2k
views
ERR_SSL_PROTOCOL_ERROR
My problem : MAMP does not navigate to local WordPress login page after installation of SSL plugin
Before exporting the contents of my WordPress site to a rental server, I mistakenly activated the ...
3
votes
1
answer
3k
views
How disable SSL redirect for specific URL?
I have a specific URL that has to be accessible without SSL, so that some old devices can access it. The reason is those old devices have the URL hardcoded.
The URL is http://domain.com/server
My ....