- open windows login
- Shif + menu Restart
- computer login safe mode
- click Troubleshoot Reset your PC or see advanced options
- click Advanced options
- click Command Prompt Use the Command Prompt for advanced troubleshooting
- copy C:\Windows\System32\Utilman.exe c:\Windows\System32\Utilman.exebak
- copy c:\Windows\system32\cmd.exe c:\Windows\system32\Utilman.exe /y
- exit reboot
Monthly Archives: February 2024
WordPress Blocking Access to xmlrpc.php
If you don’t require XML-RPC functionality on your WordPress site, one approach to enhance security is to block access to the xmlrpc.php
file. This can be achieved by adding the following code to your site’s .htaccess
file:
<Files xmlrpc.php>
Order Deny,Allow
Deny from all
</Files>