Tuesday, 1 October 2013

How to repair wordpress database of a particular website?

To allow use of repair page to automatically repair database problems, please add the following line to your wp-config.php file. 
define('WP_ALLOW_REPAIR', true);
Once this line is added to your config, open the following URL...
http://localhost/sofee/wp-admin/maint/repair.php

When repairs complete. Please remove the following line from wp-config.php to prevent this page from being used by unauthorized users.
define('WP_ALLOW_REPAIR', true);

How calulation total value for HTML input text?

<script> $j(document).ready(function(){ $j(":text").keyup(function(){ if (isNaN($j(this).val())) { alert(...