• Resolved opopop

    (@opopop)


    I just fresh install WordPress and there is no Plugin installed and i am facing problem access my Home Page is blank

    whereas my post link works fine

    below is error on Dashoard

    Warning: Cannot modify header information – headers already sent by (output started at /home/xxx/public_html/wp-config.php:2) in /home/xxx/public_html/wp-includes/option.php on line 829

    The page I need help with: [log in to see the link]

Viewing 11 replies - 1 through 11 (of 11 total)
  • Hi ,

    Please re upload the wordpress core files(Wp-includes,wp-admin). If its not working try to activate any of the wordpress default theme and check again. ?

    (If you did any changes in the files please take a backup of files and database.)

    Regards
    Sumith

    • This reply was modified 7 years, 5 months ago by sumithsuku11.
    Thread Starter opopop

    (@opopop)

    I reinstall WordPress using default theme error still same problem

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Ask your hosting providers about your website’s error logs. When you have access to them, search for “error” and then copy all of those errors and paste it here.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    If you look at the source code of your Homepage, you’ll see that the code is entirely different from the theme code. Somehow a custom page is being displayed as your Homepage and not the theme.

    view-source:https://www.rathore.org/

    • This reply was modified 7 years, 5 months ago by Andrew Nevins.
    Thread Starter opopop

    (@opopop)

    below is error

    [01-Jun-2017 06:15:19 UTC] PHP Warning: Cannot modify header information – headers already sent by (output started at /home/xxx/public_html/wp-config.php:2) in /home/xxx/public_html/wp-includes/load.php on line 154
    [01-Jun-2017 06:15:22 UTC] PHP Warning: Cannot modify header information – headers already sent by (output started at /home/xxx/public_html/wp-config.php:2) in /home/xxx/public_html/wp-includes/load.php on line 154
    [01-Jun-2017 06:15:44 UTC] PHP Warning: Cannot modify header information – headers already sent by (output started at /home/xxx/public_html/wp-config.php:3) in /home/xxx/public_html/wp-includes/load.php on line 154
    [01-Jun-2017 06:15:52 UTC] PHP Warning: Cannot modify header information – headers already sent by (output started at /home/xxx/public_html/wp-config.php:3) in /home/xxx/public_html/wp-includes/load.php on line 154
    [01-Jun-2017 06:15:58 UTC] PHP Warning: Cannot modify header information – headers already sent by (output started at /home/xxx/public_html/wp-config.php:3) in /home/xxx/public_html/wp-includes/load.php on line 154
    [01-Jun-2017 06:16:06 UTC] PHP Warning: Cannot modify header information – headers already sent by (output started at /home/xxx/public_html/wp-config.php:3) in /home/xxx/public_html/wp-includes/load.php on line 154

    using default theme

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    I think those errors are a red herring. The real issue is why your Homepage is using a page outside of the theme. Can you liaise with your hosting providers and ask them if they’ve got a holding page for your homepage?

    Thread Starter opopop

    (@opopop)

    below all domain on my same hosting works fine except rathore.org wherea

    Have you add any codes inside the wp-config.php file or any extra space ? Please check it also.

    • This reply was modified 7 years, 5 months ago by sumithsuku11.
    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    @opopop, I’m sorry but checking that your other websites are working fine doesn’t help us at all. Did you manage to talk to your hosting providers about the potential holding page?

    Thread Starter opopop

    (@opopop)

    I made a ticket there

    and see below wp-config

    <?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.www.ads-software.com/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’, ‘xxxx’);

    /** MySQL database username */
    define(‘DB_USER’, ‘xxxx’);

    /** MySQL database password */
    define(‘DB_PASSWORD’, ‘xxxx’);

    /** MySQL hostname */
    define(‘DB_HOST’, ‘localhost’);

    /** Database Charset to use in creating database tables. */
    define(‘DB_CHARSET’, ‘utf8mb4’);

    /** 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.www.ads-software.com/secret-key/1.1/salt/ www.ads-software.com 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’, ‘xxxx’);
    define(‘SECURE_AUTH_KEY’, ‘xxxx’);
    define(‘LOGGED_IN_KEY’, ‘xxxx’);
    define(‘NONCE_KEY’, ‘xxxx’);
    define(‘AUTH_SALT’, ‘xxxx’);
    define(‘SECURE_AUTH_SALT’, ‘xxxx’);
    define(‘LOGGED_IN_SALT’, ‘xxxx’);
    define(‘NONCE_SALT’, ‘xxxx’);

    /**#@-*/

    /**
    * 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 = ‘xxx’;

    /**
    * 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.www.ads-software.com/Debugging_in_WordPress
    */
    define(‘WP_DEBUG’, false);
    define(‘WP_CACHE’, true);

    /* 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’);

    Thread Starter opopop

    (@opopop)

    I had a “index.htm” file in “public_html” folder which I renamed to “index_back.htm”.

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Fresh Wp Installed Home Page Blank’ is closed to new replies.