Uploaded image for project: 'eZ Publish / Platform'
  1. eZ Publish / Platform
  2. EZP-17062

eZSSLZone switch is inconsistent

    XMLWordPrintable

Details

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: Medium Medium
    • None
    • 4.3.0
    • None
    • Operating System: CentOS Linux 5.4
      PHP Version: (please be specific, like '4.4.3' or '5.1.5') PHP 5.2.11
      Database and version:
      Browser (and version):

    Description

      When eZPublish switches to/from SSL through the SSL Zone functionality it is inconsistent on how it builds the redirection URL.

      When switching to SSL eZPublish uses the HTTP_HOST variable to generate the redirection URL as seen below:

      // switch to HTTPS
      $host = eZSys::serverVariable( 'HTTP_HOST' );
      $host = preg_replace( '/:\d+$/', '', $host );
       
      $ini = eZINI::instance();
      $sslPort = $ini->variable( 'SiteSettings', 'SSLPort' );
      $sslPortString = ( $sslPort == eZSSLZone::DEFAULT_SSL_PORT ) ? '' : ":$sslPort";
      $sslZoneRedirectionURL = "https://" . $host  . $sslPortString . $indexDir . $requestURI;
      

      When switching from SSL eZPublish uses the SiteURL ini directive to generate the redirection URL as seen below:

      // switch to plain HTTP
      $ini = eZINI::instance();
      $host = $ini->variable( 'SiteSettings', 'SiteURL' );
      $sslZoneRedirectionURL = "http://" . $host . $indexDir . $requestURI;
      

      All code mentioned above is found in the kernel ezsslzone.php file. (http://pubsvn.ez.no/doxygen/trunk/html/ezsslzone_8php_source.html) around line #241

      I don't think this is necessarily a "bug", but it seems like this is something that should be made consistent to prevent confusion.

      Steps to reproduce

      To reproduce, you'll want to enable SSLZones in your site.ini file and set your site URL to a different URL then what you're actually using.

      Something similar to the following in your site.ini should suffice

      [SSLZoneSettings]
      SSLZones=enabled
      SSLSubtrees[]
      SSLSubtrees[]=/subtree-name

      Attachments

        Activity

          People

            unknown unknown
            conraddecker conraddecker
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: