Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • 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
    ?>

    Thread Starter Zapped

    (@zapped)

    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

    Thread Starter Zapped

    (@zapped)

    Thanks, I had a look, however, I will need some assistance here with the Apache error logs.

    Thread Starter Zapped

    (@zapped)

    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(https://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(https://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(https://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(https://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

    Thread Starter Zapped

    (@zapped)

    I forgot to mention that my WP is configured for multisite use.

    Thanks

    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)