Title: rachaely's Replies | WordPress.org

---

# rachaely

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 33 total)

1 [2](https://wordpress.org/support/users/rachaely/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/rachaely/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/rachaely/replies/page/2/?output_format=md)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Changed Site Name now I can't get into Account](https://wordpress.org/support/topic/changed-site-name-now-i-cant-get-into-account/)
 *  [rachaely](https://wordpress.org/support/users/rachaely/)
 * (@rachaely)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/changed-site-name-now-i-cant-get-into-account/#post-1961364)
 * Glad it’s sorted now! 😀
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [About to wipe out WP and reinstall *but*…](https://wordpress.org/support/topic/about-to-wipe-out-wp-and-reinstall-but/)
 *  [rachaely](https://wordpress.org/support/users/rachaely/)
 * (@rachaely)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/about-to-wipe-out-wp-and-reinstall-but/#post-1960810)
 * Good luck!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Top page margin bug with the latest WordPress 3.1 with Firefox!](https://wordpress.org/support/topic/top-page-margin-bug-with-the-latest-wordpress-31-with-firefox/)
 *  [rachaely](https://wordpress.org/support/users/rachaely/)
 * (@rachaely)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/top-page-margin-bug-with-the-latest-wordpress-31-with-firefox/#post-1961357)
 * The new version comes with the admin bar – that’s set to appear at the top of
   the page. Could be causing the issue?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [trouble with navigation](https://wordpress.org/support/topic/trouble-with-navigation/)
 *  [rachaely](https://wordpress.org/support/users/rachaely/)
 * (@rachaely)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/trouble-with-navigation/#post-1958290)
 * Can we see any code that you’re using for your navigation? The more information
   you can provide about a problem, the easier and faster it will be to diagnose
   the problem and offer a solution. So far all you’ve done is mention that you’re
   getting an error – that’s too vague.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Changed Site Name now I can't get into Account](https://wordpress.org/support/topic/changed-site-name-now-i-cant-get-into-account/)
 *  [rachaely](https://wordpress.org/support/users/rachaely/)
 * (@rachaely)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/changed-site-name-now-i-cant-get-into-account/#post-1961355)
 * [http://s115877.gridserver.com/](http://s115877.gridserver.com/) and [http://www.pediatricinnovation.org/](http://www.pediatricinnovation.org/)
   are different website.
 * To which URL are you taken when you log in at [http://s115877.gridserver.com/wp-login.php](http://s115877.gridserver.com/wp-login.php)?
 * Can you log in at [http://s115877.gridserver.com/wp-admin/](http://s115877.gridserver.com/wp-admin/)?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Show category content on single page](https://wordpress.org/support/topic/show-category-content-on-single-page/)
 *  [rachaely](https://wordpress.org/support/users/rachaely/)
 * (@rachaely)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/show-category-content-on-single-page/#post-1961354)
 * For part two, have a look at the query_posts() function ( [http://codex.wordpress.org/Function_Reference/query_posts](http://codex.wordpress.org/Function_Reference/query_posts))
   as that lets you put together various different lists of WordPress posts. You
   can limit them to a certain category. 😉
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Page permalink with -2](https://wordpress.org/support/topic/page-permalink-with-2/)
 *  [rachaely](https://wordpress.org/support/users/rachaely/)
 * (@rachaely)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/page-permalink-with-2/#post-1961353)
 * Your assumption is correct.
 * A page will exist somewhere (possibly in the trash!) with a slug of ‘about’. 
   This will need to change before you can use the slug on another page.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Hide Sidebar on certain pages](https://wordpress.org/support/topic/hide-sidebar-on-certain-pages-2/)
 *  [rachaely](https://wordpress.org/support/users/rachaely/)
 * (@rachaely)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/hide-sidebar-on-certain-pages-2/#post-1961352)
 * Your sidebar will likely be called with <?php get_sidebar(); ?>
 * Here: [http://codex.wordpress.org/Conditional_Tags](http://codex.wordpress.org/Conditional_Tags)
   there are instructions for how you can limit this call.
 * Eg:
 *     ```
       <?php if ( is_page(2) ) {
       get_sidebar();
       }
       ?>
       ```
   
 * This will just call the sidebar on page 2.
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [About to wipe out WP and reinstall *but*…](https://wordpress.org/support/topic/about-to-wipe-out-wp-and-reinstall-but/)
 *  [rachaely](https://wordpress.org/support/users/rachaely/)
 * (@rachaely)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/about-to-wipe-out-wp-and-reinstall-but/#post-1960804)
 * You can export all of WordPress’ posts and pages through the admin panel, without
   needing database access:
 * [http://codex.wordpress.org/Tools_Export_SubPanel](http://codex.wordpress.org/Tools_Export_SubPanel)
 * Try this. 🙂
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [I don't have the login box at all. I can't login to my admin area](https://wordpress.org/support/topic/i-dont-have-the-login-box-at-all-i-cant-login-to-my-admin-area/)
 *  [rachaely](https://wordpress.org/support/users/rachaely/)
 * (@rachaely)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/i-dont-have-the-login-box-at-all-i-cant-login-to-my-admin-area/#post-1802025)
 * Glad you got it sorted in the end!
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [3.0.2 install Error](https://wordpress.org/support/topic/302-install-error/)
 *  [rachaely](https://wordpress.org/support/users/rachaely/)
 * (@rachaely)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/302-install-error/#post-1801483)
 * How are you trying to install 3.0.2? Are you upgrading an existing install via
   the admin panel? Are you uploading files via FTP? Where are you seeing the above
   errors?
 * The more information you can provide about the problems you are having, the easier
   it will be to diagnose the problem.
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [I removed word press from my cPanel](https://wordpress.org/support/topic/i-removed-word-press-from-my-cpanel/)
 *  [rachaely](https://wordpress.org/support/users/rachaely/)
 * (@rachaely)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/i-removed-word-press-from-my-cpanel/#post-1802022)
 * You haven’t removed your old WordPress installation completely.
 * In your file manager section of cPanel, you need to delete the wp-admin, wp-content
   and wp-includes folders. Also, remove any files in your public_html folder which
   start with wp- and end in .php as these will be part of the same installation.
 * Then, try the new installation again. 🙂
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Why can't I upgrade anything automatically ?](https://wordpress.org/support/topic/why-cant-i-upgrade-anything-automatically/)
 *  [rachaely](https://wordpress.org/support/users/rachaely/)
 * (@rachaely)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/why-cant-i-upgrade-anything-automatically/#post-1802020)
 * Please define “can’t use”… Do you get any error messages at all?
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [Can't access login link](https://wordpress.org/support/topic/cant-access-login-link/)
 *  [rachaely](https://wordpress.org/support/users/rachaely/)
 * (@rachaely)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/cant-access-login-link/#post-1802019)
 * What’s the URL to your domain?
 * That’ll help us diagnose and offer a solution to your problem.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Bad Gateway](https://wordpress.org/support/topic/bad-gateway-2/)
 *  [rachaely](https://wordpress.org/support/users/rachaely/)
 * (@rachaely)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/bad-gateway-2/#post-1802016)
 * What’s the URL to your site? That would be a big help in diagnosing the problem
   and offering possible solutions.

Viewing 15 replies - 1 through 15 (of 33 total)

1 [2](https://wordpress.org/support/users/rachaely/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/rachaely/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/rachaely/replies/page/2/?output_format=md)