• wppatrick

    (@wppatrick)


    After upgrading from 2.0.3 to 2.0.4 URLs with a querystring parameter no longer work.

    E.g.:

    http://www.test.com/instapage/page
    http://www.test.com/instapage/page?a=b

    The first URL works, the second doesn’t.
    Downgrading back to 2.0.3 solved the problem.

    https://ww.wp.xz.cn/plugins/instapage/

Viewing 5 replies - 1 through 5 (of 5 total)
  • ferolv

    (@ferolv)

    I’m having this problem too, HUGE issue. Please fix asap.

    Jake Bohall

    (@jblifestyles)

    I believe I found a tweak that will address this issue.

    Caveat… I do not know why this code was removed in the latest version… or if it impacts other functionality.

    In the file /plugins/instapage/includes/page.php you can browse to line 36 where you should see

    if ( array_key_exists( $part, $posts ) )

    simple add the following above that line.

    // Adding code to address url parameters causing 404's
    // Essentially replaces the URL with everything before the ?
    $noparam = explode( '?', $part);
    $part = $noparam[ 0 ];
    MaryanneElizabeth

    (@maryanneelizabeth)

    Thank you @jblifestyles! You literally just saved my life and business!!! I did exactly what you said and it worked!

    You never know how important sales funnels/redirects are during a launch until they don’t work and you don’t make any money for 3 days!! Thank you thank you thank you!

    Jake Bohall

    (@jblifestyles)

    @maryanneelizabeth I’m just glad it worked out for you!

    Cheers,

    Jake

    Thread Starter wppatrick

    (@wppatrick)

    I can confirm that the latest version 2.0.5 fixes the bug.
    Thanks for fixing!

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

The topic ‘2.0.4 breaks URLs with querystring parameters’ is closed to new replies.