How to Downgrade WordPress Version
Be careful to downgrade WordPress unless you can also restore a pre-upgrade database backup. The database was changed for WordPress…
Be careful to downgrade WordPress unless you can also restore a pre-upgrade database backup. The database was changed for WordPress…
It may possible after rebuilding the sitemap using Google XML Sitemaps plugin for your wordpress blog when you try to…
To install a package using yum use following command # yum install # yum install mysql To uninstall a package…
To change your own password, use following command: $ passwd To change other users password, your login must be as…
Boolean isDark = false; var bgtheme = Application.Current.Resources.ToString(); if (bgtheme == “#FF000000”) isDark = true; else isDark = false; if…
If you upload your android application and google play deny by saying package already exist. Don’t worry it’s easy to…
First of all you need to supply external font to your application generally it’s kruti ttf or vigyapti-hindi ttf files.…
First solutionc can be regenerate R.java file. Try following : Eclipse -> Project -> Clean Sometimes during building, the R.java…
If you want to add background image to any activity then use following code. and to apply background to whole…
You can use following regular expressions to validate email function validateEmail(email) { var re = /^((\\.,;:\s@\”]+(\.\\.,;:\s@\”]+)*)|(\ “.+\”))@((\{1,3}\.{1,3}\.{1,3}\.{1,3}\])|((+\.)+{2,}))$/; return re.test(email); }