anujchauhan
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: How do I open an existing website without passwordIn Wp-config there are constants:
define(‘DB_NAME’, ‘your_database_name’);
/** MySQL database username */
define(‘DB_USER’, ‘db_user’);
/** MySQL database password */
define(‘DB_PASSWORD’, ‘db_pass’);
/** MySQL hostname */
define(‘DB_HOST’, ‘localhost’);1. From here you can get your DB info.
2. Now from godaddy cpanel go to databases created. login to site database from phpmyadmin.
3. In table wp-user change password for admin. Normally it is with user id 1. change password field “$P$Brm2mf9HgClG/QkP/hRA3hZDH7X2dF/” this is encrypted form of “admin”.
4. Now go to your site url and login with your username and password(admin).
I think this way you get your admin details without losing any data of your site.Forum: Everything else WordPress
In reply to: New user registrations – Spam?use captha in registration form , if you are not using.
read https://www.ads-software.com/extend/plugins/simple-captcha/Forum: Everything else WordPress
In reply to: blog hacked : rdirects to other islamic sitecheck your file permissions and also from site inputs(forms) validate all inputs for meta or html tags before inserting in database.
Forum: Themes and Templates
In reply to: How do I change pic from theme?in html if you want to change header image just change from css
#header {
background:transparent url(images/bgr_header.png) no-repeat scroll 0;
height:157px;
overflow:hidden;
width:100%;
}
change background image from other image.Forum: Themes and Templates
In reply to: Theme Switched, WordPress Dashboard not showingenable ini_set(‘display_errors’, ‘On’); from wp-config.php and tell what errors are displaying.
Forum: Themes and Templates
In reply to: WP_SITEURL, WP_HOME confusionuse <?php include bloginfo(‘siteurl’). ‘/feeds/feeds.php’; ?>
Forum: Plugins
In reply to: Text Widget help with photo linkswill you give a bit more idea where is this widget in your site. also check image names(case sensitive). jiggyjobslogo.jpg and Jiggyjobslogo.jpg are different.