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

Add second hard drive to linux

Here is how to add a second disk to linux. In this article, the OS is CentOS 7. Check to see how many drives are installed: You can do this using the df and fdisk command: The above information show the primary disk as sda. Use fdisk to identify the second drive: The sdb drive … Read more

Add Gzip to Plesk Server

Instructions Login to your Plesk server. Select the domain you wish to enable gzip for from the left hand side. Click in Apache and nginx settings: Down the bottom, add the following to the “Additional nginx directives” field: Click OK to save. Verify with GTMetrix.com Another way is to set up deflate. First you need … Read more