Changeset 2403057
- Timestamp:
- 10/20/2020 09:59:10 AM (5 years ago)
- Location:
- whmcs-bridge/trunk
- Files:
-
- 4 edited
-
bridge.init.php (modified) (2 diffs)
-
bridge.php (modified) (1 diff)
-
includes/http.class.php (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
whmcs-bridge/trunk/bridge.init.php
r2395447 r2403057 4 4 if (!defined('WHMCS_BRIDGE_PAGE')) define('WHMCS_BRIDGE_PAGE','WHMCS'); 5 5 6 define("CC_WHMCS_BRIDGE_VERSION","6.0b 2");6 define("CC_WHMCS_BRIDGE_VERSION","6.0b3"); 7 7 8 8 if (!defined('PHP_VERSION_ID')) { … … 970 970 cc_whmcsbridge_sso_session(); 971 971 972 if (session_status() == PHP_SESSION_NONE )972 if (session_status() == PHP_SESSION_NONE && !headers_sent()) 973 973 session_start(); 974 974 -
whmcs-bridge/trunk/bridge.php
r2395447 r2403057 5 5 Description: WHMCS Bridge is a plugin that integrates the powerful WHMCS support and billing software with WordPress. 6 6 Author: globalprogramming 7 Version: 6.0b 27 Version: 6.0b3 8 8 Author URI: http://i-plugins.com/ 9 9 */ -
whmcs-bridge/trunk/includes/http.class.php
r2395447 r2403057 302 302 if (function_exists('cc_whmcsbridge_sso_session')) 303 303 cc_whmcsbridge_sso_session(); 304 if (session_status() == PHP_SESSION_NONE )304 if (session_status() == PHP_SESSION_NONE && !headers_sent()) 305 305 session_start(); 306 306 … … 505 505 if (empty($cookies)) 506 506 $cookies = $_SESSION['cookieCache']; 507 508 507 } else { 509 508 $headers = array(); … … 610 609 && strstr($redir, 'store/') === false 611 610 && strstr($redir, 'clientarea.php') === false 611 && strstr($redir, 'rp=/login') === false 612 612 && stristr($redir, '://') === false 613 613 ) { … … 616 616 } else if (stristr($redir, ':208') !== false) { 617 617 $bounce = true; 618 $this->debug(0, 'S4: '.$redir); 619 // } else if (stristr($redir, 'clientarea.php') !== false && !empty($rawPost)) { 620 // $bounce = true; 621 // $redir = $this->_protocol . '://' .$this->_host .$this->_path. $redir; 622 // $this->debug(0, 'S4.1: '.$redir); 618 $this->debug(0, 'S4: ' . $redir); 619 // } else if (stristr($redir, 'clientarea.php') !== false && !empty($rawPost)) { 620 // $bounce = true; 621 // $redir = $this->_protocol . '://' .$this->_host .$this->_path. $redir; 622 // $this->debug(0, 'S4.1: '.$redir); 623 } else if ($redir == '/clientarea.php') { 624 $bounce = true; 625 $redir = $this->_protocol . '://' .$this->_host .$this->_path. $redir; 626 $this->debug(0, 'S4.1: '.$redir); 623 627 } else { 624 628 $redir = $this->_host . $redir; -
whmcs-bridge/trunk/readme.txt
r2395447 r2403057 5 5 Requires at least: 5.0 6 6 Tested up to: 5.5.1 7 Stable tag: 6.0b 27 Stable tag: 6.0b3 8 8 License: GPLv3 9 9 … … 77 77 78 78 == Changelog == 79 80 = 6.0b3 = 81 * More Bug fixes for WHMCS 8.x 79 82 80 83 = 6.0b2 =
Note: See TracChangeset
for help on using the changeset viewer.