binayashahi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: website content absent after wordpress update to 4.6.1Hello Binaya,
The MySQL hostname you are using is correct.
Please make sure all details are correct (database name, username, password).
This is the problem I got from hostinger.co.uk:If you still get any problems, please let us know.
Regards,
Catalin R.Customer Success team
http://www.hostinger.co.ukP.S. In case you need help or tips, check out our Tutorials at http://www.hostinger.com/tutorials/
Forum: Fixing WordPress
In reply to: website content absent after wordpress update to 4.6.1Forum: Fixing WordPress
In reply to: website content absent after wordpress update to 4.6.1Forum: Fixing WordPress
In reply to: website content absent after wordpress update to 4.6.1Forum: Fixing WordPress
In reply to: website content absent after wordpress update to 4.6.1this is what knowledge base in hostinger says:
“What MySQL host name to use?
Enter the control panel and click on the ‘MySQL’ icon. Your MySQL hostname will be listed there.
Important! Never use ‘localhost’ as your MySQL hostname as you will get access denied errors.”here is the snapshot of MySQL database is my cpanel in hostinger.co.uk
by the way I couldn’t find out how to upload the snapshotbut I have also messeged them.
by the way can I know how to find out that the host name I am using i.e. “MySQL.hostinger.co.uk” exist or not?
Forum: Fixing WordPress
In reply to: website content absent after wordpress update to 4.6.1I have fould out the host name.
I fould it in my cpanel MySQL
it MySQL.hostinger.co.uk
I tried the host name but it didn’t work
my website takes me to wordpress installation pageForum: Fixing WordPress
In reply to: website content absent after wordpress update to 4.6.1I am using hostinger.co.uk as host
Forum: Fixing WordPress
In reply to: website content absent after wordpress update to 4.6.1as I am usimng the freehosting right now, I’m not sure will they promptly reply or not?
Is there any other way I can find out what to replace MySQL with.what is it called host name of something else?
Forum: Fixing WordPress
In reply to: website content absent after wordpress update to 4.6.1/** MySQL hostname */
define(‘DB_HOST’, ‘mysql’);so you mean I should replace MySQL with something else?
I don’t know where to find that?
can you please tell me where can I find that?Forum: Fixing WordPress
In reply to: website content absent after wordpress update to 4.6.1should I go to my host site to find that out?
how to find that out?
Forum: Fixing WordPress
In reply to: website content absent after wordpress update to 4.6.1I changed following things:
define(‘DB_USER’, ‘redacted’);
define(‘DB_PASSWORD’, ‘redacted’);
$table_prefix = ‘q97u_’;so my table prefix will be Izom_ or Izom?
I changed the table prefix to Izom_
and uploaded the wp-config file
and then I entered my website in web browser but same result, took me to wprdpress installation pagewith following content:
Welcome
Welcome to the famous five-minute WordPress installation process! Just fill in the information below and you’ll be on your way to using the most extendable and powerful personal publishing platform in the world.Forum: Fixing WordPress
In reply to: website content absent after wordpress update to 4.6.1should I replace q97u_ with izom
Forum: Fixing WordPress
In reply to: website content absent after wordpress update to 4.6.1* WordPress Database Table prefix.
*
* You can have multiple installations in one database if you give each
* a unique prefix. Only numbers, letters, and underscores please!
*/
$table_prefix = ‘q97u_’;so th table prefix in wp-config.php is q97u_
I guess. am I rightForum: Fixing WordPress
In reply to: website content absent after wordpress update to 4.6.1this is my wp-config.php file content. what are the things that I need to change?
<?php
/**
* The base configuration for WordPress
*
* The wp-config.php creation script uses this file during the
* installation. You don’t have to use the web site, you can
* copy this file to “wp-config.php” and fill in the values.
*
* This file contains the following configurations:
*
* * MySQL settings
* * Secret keys
* * Database table prefix
* * ABSPATH
*
* @link https://codex.wordpress.org/Editing_wp-config.php
*
* @package WordPress
*/// ** MySQL settings – You can get this info from your web host ** //
/** The name of the database for WordPress */
define(‘DB_NAME’, ‘redacted’);/** MySQL database username */
define(‘DB_USER’, ‘redacted’);/** MySQL database password */
define(‘DB_PASSWORD’, ‘redacted’);/** MySQL hostname */
define(‘DB_HOST’, ‘mysql’);/** Database Charset to use in creating database tables. */
define(‘DB_CHARSET’, ‘utf8’);/** The Database Collate type. Don’t change this if in doubt. */
define(‘DB_COLLATE’, ”);/**#@+
* Authentication Unique Keys and Salts.
*
* Change these to different unique phrases!
* You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
* You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again.
*
* @since 2.6.0
*/
define(‘AUTH_KEY’, ‘redacted’);
define(‘SECURE_AUTH_KEY’, ‘redacted’);
define(‘LOGGED_IN_KEY’, ‘redacted’);
define(‘NONCE_KEY’, ‘redacted’);
define(‘AUTH_SALT’, ‘redacted’);
define(‘SECURE_AUTH_SALT’, ‘redacted’);
define(‘LOGGED_IN_SALT’, ‘redacted’);
define(‘NONCE_SALT’, ‘redacted’);/**
* Other customizations.
*/
define(‘FS_METHOD’,’direct’);define(‘FS_CHMOD_DIR’,0755);define(‘FS_CHMOD_FILE’,0644);
define(‘WP_TEMP_DIR’,dirname(__FILE__).’/wp-content/uploads’);/**
* Turn off automatic updates since these are managed upstream.
*/
define(‘AUTOMATIC_UPDATER_DISABLED’, true);/**#@-*/
/**
* WordPress Database Table prefix.
*
* You can have multiple installations in one database if you give each
* a unique prefix. Only numbers, letters, and underscores please!
*/
$table_prefix = ‘q97u_’;/**
* For developers: WordPress debugging mode.
*
* Change this to true to enable the display of notices during development.
* It is strongly recommended that plugin and theme developers use WP_DEBUG
* in their development environments.
*
* For information on other constants that can be used for debugging,
* visit the Codex.
*
* @link https://codex.wordpress.org/Debugging_in_WordPress
*/
define(‘WP_DEBUG’, false);/* That’s all, stop editing! Happy blogging. */
/** Absolute path to the WordPress directory. */
if ( !defined(‘ABSPATH’) )
define(‘ABSPATH’, dirname(__FILE__) . ‘/’);/** Sets up WordPress vars and included files. */
require_once(ABSPATH . ‘wp-settings.php’);- This reply was modified 9 years, 4 months ago by Steven Stern (sterndata). Reason: redacted passwords, etc
Forum: Fixing WordPress
In reply to: website content absent after wordpress update to 4.6.1As I don’t know how to find out the password of database, I simply changed the password of the database via cpanel.
and in wp-config.php
I changed db_name, db_username, db_password
but I didn’t changed the table prefix as I didn’t know where to find it and how to change it.And then I entered my website in web browser. but it showed a kind of wordwress installation page I have never seen before.
- This reply was modified 9 years, 4 months ago by binayashahi.