How to protect from wordpress spam comments words and increase the SEO

How to protect from wordpress spam comments words and increase the SEO

Spam comments is really major issue with wordpress. Spam comments will effect your site SEO. You should delete the spam word comments from wordpress site. For SEO of your site deleting spam word comments is good. Here are some steps … Continue reading

code snippets which is most useful in functions.php, wordpress

code snippets which is most useful in functions.php, wordpress

In wordpress theming is very important. Developers know the importance of functions.php file. I always written some very nice code snippets in functions.php file. I found very useful codes which is very helpful for very wordpress designer and developers. Here … Continue reading

domain search through Linux command

linux-domain-search

Searching the domain information through command line. You can search the domain using the Linux command. #whois google.com using the following command you can find the all domain information. If you want check when domain created then use following command. … Continue reading

Checking directory and deleting the all one day old files from folder through php

linux-files

If you want to find the old files from your system or server then you can use the following code. I used the following code for deleting the old files form system. For deleting the old files from system I … Continue reading

how to create virtual host in wamp server

how to create virtual host in wamp server

Many PHP developers use the wamp server for development. For creating the virtual host just open the httpd.conf file from following location. C:\wamp\bin\apache\Apache2.2.11 Then uncomment the following line # Virtual hosts Include conf/extra/httpd-vhosts.conf Than open the httpd-vhosts.conf file from following … 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

Post message to another server through fopen and fsockopen in php

When this comes to sending data to server to server we need to post the data using web services. Many people want to use the curl php method but there are serious issues with that. So I recomond to use … Continue reading