Error – “(domain) refused to connect” when trying to view plugin details
-
Hello,
I am trying to figure out why I can’t view any plugin details in my admin section for any sites hosted on my server. Everything else works perfectly fine, I can download plugins & update them, but I just can’t connect to any of their details pages. I always get that error. Some details:I have a LAMP stack & root access to my server.
-CentOS 7.6.1810
-Apache 2.4.6
-MariaDB 5.5.60
-PHP 7.2.13
-Let’s Encrypt Cert
–Note: since I used certbot, my 443 vhost block is in a separate file from my 80 vhost block.
-80 vhost has Rewrite Engine on to force HTTP to HTTPS redirect
-All files on the DocRoot are set to 644, directories set to 755vhost block structure:
<VirtualHost *:80> ServerName www.gracecathedralsa.org ServerAlias gracecathedralsa.org DocumentRoot /var/www/gracecathedralsa.org/public_html ErrorLog /var/www/gracecathedralsa.org/error.log CustomLog /var/www/gracecathedralsa.org/requests.log combined <Directory /var/www/gracecathedralsa.org/public_html> Options Indexes FollowSymLinks AllowOverride All Order allow,deny Allow from all Require all granted </Directory> RewriteEngine on RewriteCond %{SERVER_NAME} =gracecathedralsa.org [OR] RewriteCond %{SERVER_NAME} =www.gracecathedralsa.org RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent] </VirtualHost> ------------------------------------- <IfModule mod_ssl.c> <VirtualHost *:443> ServerName www.gracecathedralsa.org ServerAlias gracecathedralsa.org DocumentRoot /var/www/gracecathedralsa.org/public_html ErrorLog /var/www/gracecathedralsa.org/error.log CustomLog /var/www/gracecathedralsa.org/requests.log combined <Directory /var/www/gracecathedralsa.org/public_html> Options Indexes FollowSymLinks AllowOverride All Order allow,deny Allow from all Require all granted </Directory> Include /etc/letsencrypt/options-ssl-apache.conf SSLCertificateFile /etc/letsencrypt/live/gracecathedralsa.org/cert.pem SSLCertificateKeyFile /etc/letsencrypt/live/gracecathedralsa.org/privkey.pem SSLCertificateChainFile /etc/letsencrypt/live/gracecathedralsa.org/chain.pem </VirtualHost> </IfModule>
If you need any other details let me know. I’m at a loss as to why it’s only the plugin details pages that my server is refusing to serve up.
Thanks in advance!
Z
- The topic ‘Error – “(domain) refused to connect” when trying to view plugin details’ is closed to new replies.