• When using SSL with WordPress, TubePress causes an error by defining the JS src links absolutely using https://

    Working on a fix now, will update when complete.

    Relevant to eCommerce plugin users.

Viewing 1 replies (of 1 total)
  • Thread Starter Chris Everson

    (@chriseverson)

    SOLUTION:

    in tubepress.php add the following after $tubepress_base_url = get_option('siteurl') . "/wp-content/plugins/$baseName";

    // Modification to Allow SSL by Chris Everson (https://chriseverson.net)
        if($_SERVER['HTTPS']) {
        	$tubepress_base_url = str_replace("http:","https:",$tubepress_base_url);
        }
Viewing 1 replies (of 1 total)
  • The topic ‘SOLVED: TubePress SSL Conflict’ is closed to new replies.