How can we save Ram usages using some wordpress theme tricks

How can we save Ram usages using some wordpress theme tricks

We mostly use the get_permalink(), get_the_title() methods in our wordpress theme. Do not pass the post ID as parameter. if you’re doing a get_permalink or get_title() call with Post id, 8 out of 10 times you’ll need to more of … Continue reading

Solved issue: Can’t connect to local MySQL server through socket ‘/var/lib/mysql/mysql.sock

Solved issue- Can-t connect to local MySQL server through socket

One day I faced issue with mysql.sock file. I solved the issue with following commands. [root@localhost ~]# mysqladmin -u root shutdown mysqladmin: connect to server at ‘localhost’ failed error: ‘Can’t connect to local MySQL server through socket ‘/var/lib/mysql/mysql.sock’ (2)’ Check … Continue reading

How to create mysql user and grant all permission

How to create mysql user and grant all permission

When we do the fresh installation of Mysql we got the root user without any password. Keeping and using the root user for application is not safe. For creating new user use the following commands. Incoming search terms:create user permissions … Continue reading

Solved issue: Can’t connect to local MySQL server through socket ‘/var/lib/mysql/mysql.sock

Solved issue-Can-t connect to local MySQL server through socket

[root@localhost ~]# mysqladmin -u root shutdown mysqladmin: connect to server at ‘localhost’ failed error: ‘Can’t connect to local MySQL server through socket ‘/var/lib/mysql/mysql.sock’ (2)’ Check that mysqld is running and that the socket: ‘/var/lib/mysql/mysql.sock’ exists! Using following command I checked … Continue reading

How optimize the all tables using php script

How optimize the all tables using php script

Optimizing tables is very necessary for database. That will improve the your website performance.  Optimize command is helpful to manage database files in right manner. This command will optimize the size of file size of database files. If you want … Continue reading

How to install Mongodb on linux

Before installing the Mongodb on linux box you need to install following packages on box. For 32bit user use following command For 64bit use following command Mongo stores database in data/db folder. so we need to create those folder using … Continue reading

How to install the Mysql workbench on Fedora

You can use following commands for installing the Mysql workbench on Linux system. Mysql workbench is very nice tool for creating the ER diagram on mysql database. I personaly like that tool so much. [root@sonyk-pc sony]# rpm -Uvh remi-release-11.rpm warning: … Continue reading