Title: Zapped's Replies | WordPress.org

---

# Zapped

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Travelify] Change copyright footer](https://wordpress.org/support/topic/change-copyright-footer/)
 *  [Zapped](https://wordpress.org/support/users/zapped/)
 * (@zapped)
 * [12 years ago](https://wordpress.org/support/topic/change-copyright-footer/#post-4709069)
 * Another way is to create a child theme and in the function php paste this code:
 *     ```
       <?php //Opening PHP tag
   
       // Remove old copyright text
       add_action( 'init' , 'mh_remove_copy' , 15 );
       function mh_remove_copy() {
               remove_action( 'travelify_footer', 'travelify_footer_info', 30 );
       }
   
       // Add my own copyright text
       add_action( 'travelify_footer' , 'mh_footer_info' , 30 );
       function mh_footer_info() {
          $output = '<div class="copyright">'.'Copyright [the-year] [site-link] Powered by: WordPress'.'</div><!-- .copyright -->';
          echo do_shortcode( $output );
       }
   
       //Closing PHP tag
       ?>
       ```
   
 *   Forum: [Localhost Installs](https://wordpress.org/support/forum/localhost-installs/)
   
   In reply to: [Cannot access admin page on localhost after WP upgrade](https://wordpress.org/support/topic/cannot-access-admin-page-on-localhost-after-wp-upgrade/)
 *  Thread Starter [Zapped](https://wordpress.org/support/users/zapped/)
 * (@zapped)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/cannot-access-admin-page-on-localhost-after-wp-upgrade/#post-3018717)
 * Maoski, thanks for link, but it did not help. I finally sorted it after a long
   night drink lots of coffee.
 * 1 – I did a manual install again.
    2 – Set define(‘WP_DEBUG’, true) on the wp_config
   file and worked through the fatal errors shown. 3 – Set time limit in the set_time_limit(
   0); in include/class-http.php as the functions were timing out.
 * Now, I have a new issue of the wp-admin being very slow. Working on that.
 * Cheers
 *   Forum: [Localhost Installs](https://wordpress.org/support/forum/localhost-installs/)
   
   In reply to: [Cannot access admin page on localhost after WP upgrade](https://wordpress.org/support/topic/cannot-access-admin-page-on-localhost-after-wp-upgrade/)
 *  Thread Starter [Zapped](https://wordpress.org/support/users/zapped/)
 * (@zapped)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/cannot-access-admin-page-on-localhost-after-wp-upgrade/#post-3018713)
 * Thanks, I had a look, however, I will need some assistance here with the Apache
   error logs.
 *   Forum: [Localhost Installs](https://wordpress.org/support/forum/localhost-installs/)
   
   In reply to: [Cannot access admin page on localhost after WP upgrade](https://wordpress.org/support/topic/cannot-access-admin-page-on-localhost-after-wp-upgrade/)
 *  Thread Starter [Zapped](https://wordpress.org/support/users/zapped/)
 * (@zapped)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/cannot-access-admin-page-on-localhost-after-wp-upgrade/#post-3018711)
 * Further update, I turn on the define(‘WP_DEBUG’, true) on the wp_config file 
   to view the errors on the wp_admin page
 * See below
 *     ```
       Notice: automatic_feed_links is deprecated since version 3.0! Use add_theme_support( 'automatic-feed-links' ) instead. in C:\websites\wordpress\wp-includes\functions.php on line 2628
   
       Notice: get_theme_data is deprecated since version 3.4! Use wp_get_theme() instead. in C:\websites\wordpress\wp-includes\functions.php on line 2628
   
       Warning: fopen(http://localhost/wordpress/wp-cron.php?doing_wp_cron=1346794514.8065500259399414062500) [function.fopen]: failed to open stream: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. in C:\websites\wordpress\wp-includes\class-http.php on line 923
   
       Warning: fopen(http://localhost/wordpress/wp-admin/upgrade.php?step=1) [function.fopen]: failed to open stream: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. in C:\websites\wordpress\wp-includes\class-http.php on line 923
   
       Fatal error: Maximum execution time of 30 seconds exceeded in C:\websites\wordpress\wp-includes\class-http.php on line 923
       ```
   
 *  – Removed themes used leaving the default WP themes – error below is:
 *     ```
       Warning: fopen(http://localhost/wordpress/wp-cron.php?doing_wp_cron=1346795282.7064650058746337890625) [function.fopen]: failed to open stream: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. in C:\websites\wordpress\wp-includes\class-http.php on line 923
   
       Warning: fopen(http://localhost/wordpress/wp-admin/upgrade.php?step=1) [function.fopen]: failed to open stream: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. in C:\websites\wordpress\wp-includes\class-http.php on line 923
   
       Fatal error: Maximum execution time of 30 seconds exceeded in C:\websites\wordpress\wp-includes\class-http.php on line 923
   
       Fatal error: Maximum execution time of 30 seconds exceeded in C:\websites\wordpress\wp-includes\wp-db.php on line 515
       ```
   
 * Would like some help here, still looking on the Net for solutions.
 * Zapped
 *   Forum: [Localhost Installs](https://wordpress.org/support/forum/localhost-installs/)
   
   In reply to: [Cannot access admin page on localhost after WP upgrade](https://wordpress.org/support/topic/cannot-access-admin-page-on-localhost-after-wp-upgrade/)
 *  Thread Starter [Zapped](https://wordpress.org/support/users/zapped/)
 * (@zapped)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/cannot-access-admin-page-on-localhost-after-wp-upgrade/#post-3018672)
 * I forgot to mention that my WP is configured for multisite use.
 * Thanks
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Can't get to my admin page](https://wordpress.org/support/topic/cant-get-to-my-admin-page/)
 *  [Zapped](https://wordpress.org/support/users/zapped/)
 * (@zapped)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/cant-get-to-my-admin-page/#post-3012284)
 * I have the same problem, but on my local computer which I have WP installed. 
   I upgraded to the latest WP version 3.4.1 and now I cannot access my admin page(
   show a blank page). I can see all my sites locally. I have tried renaming my 
   plugins folder to plugins-old, renaming my themes to themes-old, accessing the
   data ‘Phpmyadmin’ database and changing the wp_options tables active_plugins 
   to a:{}, but I am still see getting blank page.
 * Please help someone!!!!!

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