How to make my site to work faster than it is.
Which plugins I need to use for to make my site faster.
Thank you I was looking after that 2-3 days to get good plugin
Bro, have some tips for you on how to speed up your site this is based on my personal experience.
Minimize the size of image, limit the use of external scripts, put the java scripts on footer, Use an effective caching plugin, Choose a good host, Optimize your homepage to load quickly, Optimize your WordPress database, and Replace PHP with static HTML, when necessary. :)
However, when you are unable to connect to the database using persistent connection (mysql_pconnect), you can open phpMyAdmin and execute the following SQL:
Code:
set global max_connections = 500;
For the someone who need explanation about this:
mysql_connect is like connecting to a new customer for each new product launch. While mysql_pconnect is like connecting to an existing customer. So the earlier is more costly than the later.
Yet, if your market consist only 151 customers (which is the default value for max_connections in MySQL) you could not make any more sale. And then your sales team (wordpress) will shout, "Error establishing a database connection". That's why you will need to expand the market to 500 customers in order to make your sales team work properly.