• Resolved purplenaartjie

    (@purplenaartjie)


    I got the following error whilst updating to 3.6.1… Help!!!

    Fatal error: Call to undefined function wp_validate_redirect() in /home/fleursfl/public_html/wp-includes/functions.php on line 1305

    Sophie

Viewing 8 replies - 16 through 23 (of 23 total)
  • Thanks

    @quad_cities – this thread is not a good place to get help – it’s marked resolved. Please start your own per the forum rules:

    http://codex.wordpress.org/Forum_Welcome#Where_To_Post

    Same to anyone else who still needs help – this thread is marked resolved.

    The Solution is :

    By FTP change some codes .

    1. Go to wp-includes/functions.php
    search for :
    return wp_validate_redirect( $ref, false );
    replace with :
    return wp_unslash( $ref );

    2. Go to wp-includes/functions.php
    search for :
    return wp_validate_redirect( wp_unslash( $_REQUEST['_wp_original_http_referer'] ), false );
    replace with :
    return wp_unslash( $_REQUEST['_wp_original_http_referer'] );

    3. Go to wp-includes/pluggable.php
    search for :
    $location = trim( $location );
    remove this code :
    $location = trim( $location );

    Save your changes .

    Make Refresh you will see the problem was solved .

    @wesamredsea Thanks! Save my life.

    Just in case there are others who encounter this problem, it seems worth saying that wesamredsea’s “fix” isn’t a fix at all – it modifies core files (and reverses a commit) which is never a good idea since that reversion will be overwritten with the next update.

    There is usually another reason why you are seeing the error, probably a plugin which calls a function such as wp_get_referer() before it’s available. The plugin should be changed so that it does not do that. See:
    http://core.trac.wordpress.org/ticket/25294

    Thread Starter purplenaartjie

    (@purplenaartjie)

    This topic is marked resolved – it was a conflict with Woothemes’ plugin for Gravity Forms. Woothemes have since issued an update to the plugin to correct the conflict.

    I don’t understand most of what you are saying. I have the same problem.

    Hi wesamredsea!

    I dont have those lines u mentioned under ur paragraphs 1. and 2. in my functions.php file 🙁

Viewing 8 replies - 16 through 23 (of 23 total)
  • The topic ‘3.6.1 update error’ is closed to new replies.