May 17, 2012


Make Your WordPress Blog Secure


1.Try to use SSH instead of FTP connection to your server.If someone has got your FTP information,he can do anything with your site,add unwanted item,scam your site and use it for his purpose even though you are not aware of it.But,in SSH ,all are encrypted during the transfer of the files and hence connection is much more secure than the latter one.

2.add

code]
if(preg_match(’#’ . basename(__FILE__) . ‘#’, $_SERVER[’PHP_SELF’])){
header($_SERVER[’HTTP_HOST’]);
exit();
}
[/code]

to the top of any plugins for additional security.

3.Always create a strong password for security,or else it will be open to hackers on internet  to explore them easily.

4.update your plugins and wordpress whenever update is found since older versions can have security leaks which are been removed in newer ones.

5.have you ever noticed that some of the wordpress files have been indexed by google,which is very much dangerous?..Yes it is possible..so disallow all these files to be indexed by google,which can be done by adding in robots.txt file at root of site.

Run PHP Scripts Inside WordPress Posts

We always in need of executing php scripts inside wordpress posts….here is the ultimate solution..There are many versions in other sites which have much bugs in them,causing them to fail…Download EXEC-PHP plugin for word press from here and enjoy running php scripts….

What u need to do..

1.Download the latest Exec-PHP plugin archive from the link below and extract the files

2.Now,Copy the extracted resulting Exec-php folder into /wp-content/plugins/

3.Now go to plugins options in the admin panel and activate the plugin through the ‘Plugins’ menu of WordPress.

[ad]

4. A warning is produced on the ‘Write’ dialog or ‘Widgets’ menu respectively if user settings are not appropriate to write PHP code,

so the warning will be highlighted at top…In admin panel, u should take user and then your profile options.Then,The WYSIWYG Conversion Warning can be turned off,to removing the warning…

DOWNLOAD LINK