Unable to remote desktop to Server 2012 after adding user to Remote Desktop Users Group

Are you having trouble accessing your Windows Server 2012 machine using remote desktop, even after adding the user to the Remote Desktop Users group? Remote Desktop appears to accept the login credentials but then you receive the following error message: “To sign in remotely, you need the right to sign in through Remote Desktop Services. … Read more

Plesk Web Statistics not Updating for SSL Site

In checking Plesk Stats, the traffic is much lower that the actual traffic. Plesk Web Stats button only links to now SSL traffic. See: https://support.plesk.com/hc/en-us/articles/213951505-Different-statistics-values-for-SSL-and-non-SSL-traffic As a workaround, SSL traffic statistics can be accessed using the following link: https://example.com/plesk-stat/webstat-ssl FTP statistics can be accessed using the following link: https://example.com/plesk-stat/ftpstat https://example.co/plesk-stat/anon_ftpstat

Set up vswitch in Hyper V

In order to do private networking, ideally you would use Hyper-V virtual switches to bind an interface in each of the guest VM’s to the same logical switch. You can do so with any locally routed convention. You can configure each VM to make use of an IP in the 192.168.0.x range such as: VM1 … Read more

Moving WordPress Site with Wordfence Plugin

I recently moved a wordpress site to a different host and after all the files and database were updated kept getting the following error: After reviewing the KB files here: https://docs.wordfence.com/en/After_moving_a_site_or_deleting_some_files,_I_see:_PHP_Fatal_error:_Unknown:_Failed_opening_required_/var/www/html/wordfence-waf.php https://docs.wordfence.com/en/Web_Application_Firewall_FAQ#How_can_I_remove_the_firewall_setup_manually.3F I was able to modify the .user.ini file and the wordfence-waf.php file to set the correct path and all is well.

How do you calculate mysql max_connections variable

The basic formulas are: Available RAM = Global Buffers + (Thread Buffers x max_connections) max_connections = (Available RAM – Global Buffers) / Thread Buffers To get the list of buffers and their values: Here’s a list of the buffers and whether they’re Global or Thread: Global Buffers: key_buffer_size, innodb_buffer_pool_size, innodb_log_buffer_size, innodb_additional_mem_pool_size, net_buffer_size, query_cache_size Thread Buffers: … Read more