Glad it works now.  It has been broken for a long time.

On Mon, Nov 21, 2011 at 6:43 AM, Christian Geisert
<[email protected]> wrote:
> Mike schrieb:
>>
>> I was trying to test the behavior of my test platform against 9.04, so
>> I went to ofbiz.apache.org, went to 'stable' frontend, added a product
>> to cart, went to checkout and the theme changed to what appears to be
>> 11.04, and an empty cart.
>>
>> When clicking checkout on 9.04, the system redirects to:
>>
>> https://demo-old.ofbiz.apache.org:8443/ecommerce/control/checkoutoptions
>>
>> Which Is somehow re-directed to 11.04/trunk, and not 9.04.
>>
>> If you take out the 8443 out of the 9.04 url:
>>
>> https://demo-old.ofbiz.apache.org/ecommerce/control/checkoutoptions
>>
>> It works.  At the end of the checkout process where it asks "Continue
>> Shopping", it redirects to 8080, which is trunk/1104.
>>
>> I believe the problem is probably
>> framework/webapp/config/url.properties.  It is needlessly tacking on
>> the 8443 and 8080 to the 9.04 URLs.
>
> Yes, this was the problem, I've made the following changes:
>
> -------------------------------------------------------------------
> Index: framework/webapp/config/url.properties
> ===================================================================
> --- framework/webapp/config/url.properties      (revision 1203499)
> +++ framework/webapp/config/url.properties      (working copy)
> @@ -22,11 +22,11 @@
>
>  # HTTPS Port (Secure port)
>  port.https.enabled=Y
> -port.https=8443
> +port.https=443
>  force.https.host=
>
>  # HTTP Port (Not Secure port)
> -port.http=8080
> +port.http=80
>  force.http.host=
> -------------------------------------------------------------------
>
> Thanks for reporting
>
> Christian
>

Reply via email to