Announcement

Collapse
No announcement yet.

CSS lost when displaying bounce page with split SSL

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    CSS lost when displaying bounce page with split SSL

    If you’re experiencing an issue where on the bounce page of your website it is no longer displaying the CSS of the page, for example: -

    ________________________________________________________



    ________________________________________________________


    This is caused by the server using the SSL port 80 and the ActinicPXML script determines it as being on port 443 so it no longer recognises the request as SSL.
    This is a bug (SD-5036) and is intended to be fixed in a future version, however the following workaround has been provided: -
    1. Go to your Site folder. (Default: C:\Users\USERNAME\Documents\SellerDeck 2014\Sites\Site1)
    2. Locate the ActinicPXML.pm and create a copy of this file.
    3. Open the file in notepad and press CTRL+F (Edit | Find)
    4. Search for ‘SERVER_PORT’
    5. REPLACE:

      if ($ENV
      {SERVER_PORT}
      == 443 &&
      $sReplace =~ /^http:/)
      { $sReplace =~ s/^http:/https:/; }

      WITH:

      my ($bSSL) = (defined $ENV
      {HTTPS} && $ENV{HTTPS}
      =~ /on/i) ? $::TRUE : $::FALSE;
      if ($bSSL &&
      $sReplace =~ /^http:/)
      {
      $sReplace = $$::g_pSetupBlob
      {'SSL_CATALOG_URL'}
      ;
      }
    6. File | Save and Exit Notepad
    7. Open SellerDeck and Web | Refresh Website.
    Attached Files
Working...
X