Title: timothywisdom's Replies | WordPress.org

---

# timothywisdom

  [  ](https://wordpress.org/support/users/timothywisdom/)

 *   [Profile](https://wordpress.org/support/users/timothywisdom/)
 *   [Topics Started](https://wordpress.org/support/users/timothywisdom/topics/)
 *   [Replies Created](https://wordpress.org/support/users/timothywisdom/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/timothywisdom/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/timothywisdom/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/timothywisdom/engagements/)
 *   [Favorites](https://wordpress.org/support/users/timothywisdom/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Blank pages after moving site from test to root folder](https://wordpress.org/support/topic/blank-pages-after-moving-site-from-test-to-root-folder/)
 *  [timothywisdom](https://wordpress.org/support/users/timothywisdom/)
 * (@timothywisdom)
 * [19 years, 2 months ago](https://wordpress.org/support/topic/blank-pages-after-moving-site-from-test-to-root-folder/#post-487836)
 * I had the same problem. Thanks for the solution. I’m running WordPress 2.1 on
   a windows server. I wonder if that’s the issue.
 * I had to alter your solution a little (to accommodate GET variables being tagged
   onto the URL). Here’s what my index.php file looks like in my root folder:
 *     ```
       <?php
       $varString = "";
       foreach ($_GET as $key => $value) {
          if ($varString == "") {
             $varString = "?";
          } else {
             $varString .= "&";
          }
          $varString .= $key . "=" . $value;
       }
       include 'http://PATH_TO_WORDPRESS/index.php' . $varString;
       ?>
       ```
   

Viewing 1 replies (of 1 total)