Hi Gerroald, thanks for responding.
I would like to hire a pro when I can afford it. In the meantime I’m on my own.
I had tried disabling and reactivating plugins. It worked for one or two sites but not the others.
Now i figured it out:
The Wordfence Plugin -> TMP folder -> HTACCESS file had been changed to “Deny All”
I put back this code and now it connects ??
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} \.php$
RewriteRule .* – [F,L,NC]
</IfModule>
<IfModule !mod_rewrite.c>
<FilesMatch “\.php$”>
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
<IfModule !mod_authz_core.c>
Order deny,allow
Deny from all
</IfModule>
</FilesMatch>
</IfModule>