decentris
Forum Replies Created
-
Yep, I completely agree.
Issue hereby solved.
Thank you very much, Edward.
Best Wishes,
HannesAh, yes. That was the error-message-causing thing.
Just deactivated PWE-Plugin and the problem is solved now.
The Pay-with-Ether – Plugin doesn’t fit my needs anyway, because it just uses the same Metamask-Button-API, but generates no QR or Copy-Fields like your wonderful plugin does. 🙂
Just out of my personal curiosity: Could that be the cause of the problem, that Pay-With-Ether Plugin uses the same MetaMask-API?
Best Wishes,
HannesHi Marius,
I corrected the capitalizations (also Require was in small letters):
AuthUserFile “/home/blackstone/.htpasswds/public_html/passwd”
AuthName “blackstone”
AuthType Basic
Require valid-user
Order allow,deny
Allow from 127.0.0.1
Allow from blackstone.sale
Satisfy anyBut it doesn’t change anything. It only works, when I deactivate the .htaccess-Authentication.
Maybe the Health Check doesn’t like access-auths. 😉
But never mind, I now know the reason for the Healt Check – Errormessage, which actually is no error.
Hi Marius,
you were completely right. The basic authentication has been the problem.
I deactivated it and, boom, above error-message disappeared.
Nevertheless, when I reactivated the basic authentication and inserted your proposed code, the error messages come back again.
Is there another workaround in the .htaccess or somewhere else, which I can try, as long as the basic authentication is on?
Best Wishes,
Johannes
Hi Marius,
this is the .htaccess – file:
# 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 AuthUserFile "/home/blackstone/.htpasswds/public_html/passwd" AuthType Basic AuthName "blackstone" require valid-user # php -- BEGIN cPanel-generated handler, do not edit # NOTE this account's php is controlled via FPM and the vhost, this is a place holder. # Do not edit. This next line is to support the cPanel php wrapper (php_cli). # AddType application/x-httpd-ea-php72 .php .phtml # php -- END cPanel-generated handler, do not edit # BEGIN cPanel-generated php ini directives, do not edit # Manual editing of this file may result in unexpected behavior. # To make changes to this file, use the cPanel MultiPHP INI Editor (Home >> Software >> MultiPHP INI Editor) # For more information, read our documentation (https://go.cpanel.net/EA4ModifyINI) <IfModule php7_module> php_flag display_errors Off php_value max_execution_time 600 php_value max_input_time 600 php_value max_input_vars 1000 php_value memory_limit 256M php_value post_max_size 128M php_value session.gc_maxlifetime 1440 php_value session.save_path "/var/cpanel/php/sessions/ea-php56" php_value upload_max_filesize 64M php_flag zlib.output_compression Off </IfModule> # END cPanel-generated php ini directives, do not edit