Title: Problems after Moving WordPress
Last modified: August 30, 2016

---

# Problems after Moving WordPress

 *  [Illustriousy](https://wordpress.org/support/users/illustriousy/)
 * (@illustriousy)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/problems-after-moving-wordpress/)
 * I recently tried to move my wordpress blog from [http://chess.geniusprophecy.com/beta/](http://chess.geniusprophecy.com/beta/)
   to [http://chess.geniusprophecy.com/](http://chess.geniusprophecy.com/) .
 * It is coming up with a number of errors. I have tried to fix these errors using
   the suggestions in [https://codex.wordpress.org/Moving_WordPress](https://codex.wordpress.org/Moving_WordPress),
   but it does not seem to be working. The errors are listed below:
 * Warning: include(/home4/qafaqw/public_html/chesssub/beta/wp-content/plugins/wp-
   super-cache/wp-cache-base.php) [function.include]: failed to open stream: No 
   such file or directory in /home4/qafaqw/public_html/chesssub/wp-content/plugins/
   wp-super-cache/wp-cache.php on line 65
 * Warning: include(/home4/qafaqw/public_html/chesssub/beta/wp-content/plugins/wp-
   super-cache/wp-cache-base.php) [function.include]: failed to open stream: No 
   such file or directory in /home4/qafaqw/public_html/chesssub/wp-content/plugins/
   wp-super-cache/wp-cache.php on line 65
 * Warning: include() [function.include]: Failed opening ‘/home4/qafaqw/public_html/
   chesssub/beta/wp-content/plugins/wp-super-cache/wp-cache-base.php’ for inclusion(
   include_path=’.:/opt/php52/lib/php’) in /home4/qafaqw/public_html/chesssub/wp-
   content/plugins/wp-super-cache/wp-cache.php on line 65
 * Warning: include_once(/home4/qafaqw/public_html/chesssub/beta/wp-content/plugins/
   wp-super-cache/ossdl-cdn.php) [function.include-once]: failed to open stream:
   No such file or directory in /home4/qafaqw/public_html/chesssub/wp-content/plugins/
   wp-super-cache/wp-cache.php on line 82
 * Warning: include_once() [function.include]: Failed opening ‘/home4/qafaqw/public_html/
   chesssub/beta/wp-content/plugins/wp-super-cache/ossdl-cdn.php’ for inclusion (
   include_path=’.:/opt/php52/lib/php’) in /home4/qafaqw/public_html/chesssub/wp-
   content/plugins/wp-super-cache/wp-cache.php on line 82
 * An additional five errors appear on the login page ( [http://chess.geniusprophecy.com/wp-login.php](http://chess.geniusprophecy.com/wp-login.php)),
   along with “ERROR: Cookies are blocked due to unexpected output. For help, please
   see this documentation or try the support forums.” I have never had a problem
   with cookies before, so I assume fixing the main issue will fix this one.
 * Warning: Cannot modify header information – headers already sent by (output started
   at /home4/qafaqw/public_html/chesssub/wp-content/plugins/wp-super-cache/wp-cache.
   php:65) in /home4/qafaqw/public_html/chesssub/wp-login.php on line 434
 * Warning: Cannot modify header information – headers already sent by (output started
   at /home4/qafaqw/public_html/chesssub/wp-content/plugins/wp-super-cache/wp-cache.
   php:65) in /home4/qafaqw/public_html/chesssub/wp-login.php on line 447
 * Warning: Cannot modify header information – headers already sent by (output started
   at /home4/qafaqw/public_html/chesssub/wp-content/plugins/wp-super-cache/wp-cache.
   php:65) in /home4/qafaqw/public_html/chesssub/wp-includes/pluggable.php on line
   935
 * Warning: Cannot modify header information – headers already sent by (output started
   at /home4/qafaqw/public_html/chesssub/wp-content/plugins/wp-super-cache/wp-cache.
   php:65) in /home4/qafaqw/public_html/chesssub/wp-includes/pluggable.php on line
   936
 * Warning: Cannot modify header information – headers already sent by (output started
   at /home4/qafaqw/public_html/chesssub/wp-content/plugins/wp-super-cache/wp-cache.
   php:65) in /home4/qafaqw/public_html/chesssub/wp-includes/pluggable.php on line
   937
 * Here’s the file that the errors always mention:
 *     ```
       <?php
       $known_headers = array("Last-Modified", "Expires", "Content-Type", "Content-type", "X-Pingback", "ETag", "Cache-Control", "Pragma");
   
       if (!class_exists('CacheMeta')) {
       	class CacheMeta {
       		var $dynamic = false;
       		var $headers = array();
       		var $uri = '';
       		var $post = 0;
       	}
       }
   
       $WPSC_HTTP_HOST = htmlentities( $_SERVER[ 'HTTP_HOST' ] );
   
       // We want to be able to identify each blog in a WordPress MU install
       $blogcacheid = '';
       if ( defined( 'VHOST' ) || ( defined( 'WP_ALLOW_MULTISITE' ) && constant( 'WP_ALLOW_MULTISITE' ) == true ) ) {
       	$blogcacheid = 'blog'; // main blog
       	if( defined( 'SUBDOMAIN_INSTALL' ) && constant( 'SUBDOMAIN_INSTALL' ) == true ) {
       		$blogcacheid = $WPSC_HTTP_HOST;
       	} else {
       		if ( isset( $base ) == false )
       			$base = '';
       		$request_uri = preg_replace('/[ <>\'\"\r\n\t\(\)]/', '', str_replace( '..', '', $_SERVER['REQUEST_URI'] ) );
       		if( strpos( $request_uri, '/', 1 ) ) {
       			if( $base == '/' ) {
       				$blogcacheid = substr( $request_uri, 1, strpos( $request_uri, '/', 1 ) - 1 );
       			} else {
       				$blogcacheid = str_replace( $base, '', $request_uri );
       				if ( $blogcacheid != '' )
       					$blogcacheid = substr( $blogcacheid, 0, strpos( $blogcacheid, '/', 1 ) );
       			}
       			if ( '/' == substr($blogcacheid, -1))
       				$blogcacheid = substr($blogcacheid, 0, -1);
       		}
       		$blogcacheid = str_replace( '/', '', $blogcacheid );
       	}
       }
   
       ?>
       ```
   

Viewing 4 replies - 1 through 4 (of 4 total)

 *  [leejosepho](https://wordpress.org/support/users/leejosepho/)
 * (@leejosepho)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/problems-after-moving-wordpress/#post-6454773)
 * You *might* have a situation where a plugin is needing “absolute server path”
   and will have to be uninstalled and then reinstalled so it can again find that
   from the new location. ‘/wp-super-cache/…failed to open stream’ would be my wild
   guess there, but that is nothing more than just a guess.
 *  Thread Starter [Illustriousy](https://wordpress.org/support/users/illustriousy/)
 * (@illustriousy)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/problems-after-moving-wordpress/#post-6454826)
 * That’s an idea, since the website seems to be working fine otherwise.
 * How would I go about trying to fix it?
 * I forgot to mention that I cannot actually log in. It just says “ERROR: Cookies
   are blocked due to unexpected output. For help, please see this documentation
   or try the support forums.”, but I have never had an issue with cookies previously.
 *  [leejosepho](https://wordpress.org/support/users/leejosepho/)
 * (@leejosepho)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/problems-after-moving-wordpress/#post-6454862)
 * > How would I go about trying to fix it?
   > I forgot to mention that I cannot actually log in.
 * Anything I might guess about that could cause trouble since you would be dealing
   with a cache plugin that likely writes htaccess along with whatever else. So,
   the usual method of simply renaming the folder for the problematic plugin might
   be a very bad idea in this situation. Each theme and plugin has its own sub-forum,
   and there is where you should ask about that:
    [https://wordpress.org/support/plugin/wp-super-cache](https://wordpress.org/support/plugin/wp-super-cache)
 *  Thread Starter [Illustriousy](https://wordpress.org/support/users/illustriousy/)
 * (@illustriousy)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/problems-after-moving-wordpress/#post-6454896)
 * Thanks, I’ll post my question there.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Problems after Moving WordPress’ is closed to new replies.

## Tags

 * [failed to open stream](https://wordpress.org/support/topic-tag/failed-to-open-stream/)
 * [Function.Include](https://wordpress.org/support/topic-tag/function-include/)
 * [moving-wordpress](https://wordpress.org/support/topic-tag/moving-wordpress/)
 * [No such file or directory](https://wordpress.org/support/topic-tag/no-such-file-or-directory/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 4 replies
 * 2 participants
 * Last reply from: [Illustriousy](https://wordpress.org/support/users/illustriousy/)
 * Last activity: [10 years, 9 months ago](https://wordpress.org/support/topic/problems-after-moving-wordpress/#post-6454896)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
