Forum Replies Created

Viewing 1 replies (of 1 total)
  • Hi folks, we ran into this as well, and want to share the solution for everyone else.

    The problem seems to lie in the jsConnect Vanilla Plugin. In class.jsconnect.plugin.php, around line 93, there is a result url. That’s what builds the broken VFRequest url.

    We fixed it by changing to this:

    if (strpos($Url,'/?VFRequest=connect') !== false) {
    	 $Result = $Url.'&'.http_build_query($Query);
    } else {
    	 $Result = $Url.'?'.http_build_query($Query);
    }

    And everything started to work great.

    Good luck!

Viewing 1 replies (of 1 total)