• This plugin hardcodes http://, but I (and likely others) use HTTPS/SSL. This might cause the plugin not to function due to browser security policies.

    To fix…

    Go to line 236:
    $pageurl=”http://” . $_SERVER[‘HTTP_HOST’] . $_SERVER[‘REQUEST_URI’];

    And replace it with this:
    $pageurl = (isset($_SERVER[‘HTTPS’]) || $_SERVER[‘PORT’] == 443 ? ‘https’ : ‘http’).”://” . $_SERVER[‘HTTP_HOST’] . $_SERVER[‘REQUEST_URI’];

    http://wordpress.org/extend/plugins/wordpress-post-tabs/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thank you for posting! I was having the same problem.

    Thanks for the workaround.

    Will you be including this fix in the next update of the plug-in, so we don’t accidentally overwrite the change?

    Rick

    petarc

    (@petarc)

    legend – thank you

    tabbervilla

    (@tabbervilla)

    We have released the PRO version with this fix and the next update of Free version will come with the fix as well. The next update is scheduled to release in next few days.

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

The topic ‘[Plugin: WordPress Post Tabs] http vs https, plugin breaks — a fix’ is closed to new replies.