If you are getting the error as ERR_CONTENT_DECODING_FAILED
while accessing the domain then add the below extension in php.ini
zlib.output_compression
= On
+++++++++++++++++
Then restart the httpd. This should resolve the issue.
This blog will be helpful in solving the most basic issues that occur in the websites.
mysql>
show processlist;SHOW
STATUS WHERE variable_name = 'Threads_connected';To
find current conection status you can use the following command :
#mysqladmin extended-status | grep -wi 'threads_connected\|threads_running'
| awk '{ print $2,$4}'
This
will show you:If you are getting the error as ERR_CONTENT_DECODING_FAILED while accessing the domain then add the below extension in php.ini ++++++++...