Ciao Jedi,
non posso che ringraziarti ho visionato il tuo link e ho risolto per due domini che mi davano lo stesso problema nel primo caso attuando precisamente quanto scritto su GitHub, nel secondo ho dovuto sostituire temporaneamente il file .htacces del dominio con quello di un altro dominio.
In effetti visionando i file .htaccess in questione ho notato le seguenti righe:
###########################################
#Start Custom rules
###########################################
#--------------------------------
#Deny access to all CGI, Perl, Python and text files
#--------------------------------
<FilesMatch "\.(cgi|pl|py|txt)">
Deny from all
</FilesMatch>
##Allow only robots.txt file, if not allowed add sign # at the start of following 3 lines
<FilesMatch robots.txt>
Allow from all
</FilesMatch>
#--------------------------------
#Deny perl and other bots from accessing your site
#--------------------------------
########## start block bad bots
SetEnvIfNoCase User-Agent "^EmailSiphon" bad_bot
SetEnvIfNoCase User-Agent "^.*psycheclone" bad_bot
SetEnvIfNoCase User-Agent "^EmailWolf" bad_bot
SetEnvIfNoCase User-Agent "^ExtractorPro" bad_bot
SetEnvIfNoCase User-Agent "^CherryPicker" bad_bot
SetEnvIfNoCase User-Agent "^NICErsPRO" bad_bot
SetEnvIfNoCase User-Agent "^Teleport" bad_bot
SetEnvIfNoCase User-Agent "^EmailCollector" bad_bot
SetEnvIfNoCase User-Agent "^LinkWalker" bad_bot
SetEnvIfNoCase User-Agent "^Zeus" bad_bot
SetEnvIfNoCase User-Agent "^Mozilla.*NEWT" bad_bot
SetEnvIfNoCase User-Agent "^Crescent" bad_bot
SetEnvIfNoCase User-Agent "^[Ww]eb[Bb]andit" bad_bot
SetEnvIfNoCase User-Agent "^NICErsPRO" bad_bot
SetEnvIfNoCase User-Agent "^WebEMailExtrac.*" bad_bot
SetEnvIfNoCase User-Agent "^Microsoft.URL" bad_bot
SetEnvIfNoCase User-Agent "^Wget" bad_bot
SetEnvIfNoCase User-Agent "^DIIbot" bad_bot
SetEnvIfNoCase User-Agent "^sitecheck.internetseer.com" bad_bot
SetEnvIfNoCase User-Agent "^psbot" bad_bot
SetEnvIfNoCase User-Agent "^libwww-perl" bad_bot
<Limit GET POST>
Order Allow,Deny
Allow from all
Deny from env=bad_bot
</Limit>
########## end block bad bots
#--------------------------------
# Block direct access to critical files
#--------------------------------
<Files .htaccess>
order allow,deny
deny from all
</Files>
<FilesMatch "configuration.php">
Order allow,deny
Deny from all
</FilesMatch>
#--------------------------------
# Block all attempts to access files with names starting with, "phpMyAdmin" will be redirected to index.php
#--------------------------------
RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
RewriteRule ^/phpMyAdmin.*$ /index.php
###########################################
#End Custom rules
###########################################
Debbo solo, con calma, capire quali di queste ostacolano l’aggiornamento ed eliminarle, probabilmente le avevo inserite io a suo tempo, ma la memoria latita
L’eccesso di zelo sovente risulta essere un boomerang