• Hello guys, I hope this is the right section.

    After updating the DNS on godaddy for my website menagesimple.com (I use the ones arvixe told me to use, and they work fine for my other website), accessing my website downloads a file:

    <?php
    /**
     * Front to the WordPress application. This file doesn't do anything, but loads
     * wp-blog-header.php which does and tells WordPress to load the theme.
     *
     * @package WordPress
     */
    
    /**
     * Tells WordPress to load the WordPress theme and output it.
     *
     * @var bool
     */
    define('WP_USE_THEMES', true);
    
    /** Loads the WordPress Environment and Template */
    require( dirname( __FILE__ ) . '/wp-blog-header.php' );

    I looks like I’m the only user with this problem since the website works from other connectiosn than mine

Viewing 1 replies (of 1 total)
  • Thread Starter MajeStyle

    (@majestyle)

    This is my wp-blog-header.php file referred in the first post

    <?php
    /**
     * Loads the WordPress environment and template.
     *
     * @package WordPress
     */
    
    if ( !isset($wp_did_header) ) {
    
    	$wp_did_header = true;
    
    	require_once( dirname(__FILE__) . '/wp-load.php' );
    
    	wp();
    
    	require_once( ABSPATH . WPINC . '/template-loader.php' );
    
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Problem loading site’ is closed to new replies.