[jira] [Created] (OFBIZ-4428) trunk: Catalog -> Stores -> ANYSTORE -> Web Sites -> Create New Web Site = ERROR

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
9 messages Options
Reply | Threaded
Open this post in threaded view
|

[jira] [Created] (OFBIZ-4428) trunk: Catalog -> Stores -> ANYSTORE -> Web Sites -> Create New Web Site = ERROR

Nicolas Malin (Jira)
trunk: Catalog -> Stores -> ANYSTORE -> Web Sites -> Create New Web Site = ERROR
--------------------------------------------------------------------------------

                 Key: OFBIZ-4428
                 URL: https://issues.apache.org/jira/browse/OFBIZ-4428
             Project: OFBiz
          Issue Type: Bug
          Components: specialpurpose/ecommerce
    Affects Versions: SVN trunk
         Environment: Ubuntu
            Reporter: mz4wheeler


Using trunk, you are unable to create a new web site.  The result is:

Bad Request

Your browser sent a request that this server could not understand.
Apache/2.2.14 (Ubuntu) Server at demo-trunk.ofbiz.apache.org Port 443


--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

       
Reply | Threaded
Open this post in threaded view
|

[jira] [Commented] (OFBIZ-4428) trunk: Catalog -> Stores -> ANYSTORE -> Web Sites -> Create New Web Site = ERROR

Nicolas Malin (Jira)

    [ https://issues.apache.org/jira/browse/OFBIZ-4428?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13109052#comment-13109052 ]

mz4wheeler commented on OFBIZ-4428:
-----------------------------------

This seems to fix it:

applications/product/webapp/catalog/store/EditProductStoreWebSites.ftl

Change:

"productStoreId=${productStoreId}"
--to--
"productStoreId=${parameters.productStoreId}"


> trunk: Catalog -> Stores -> ANYSTORE -> Web Sites -> Create New Web Site = ERROR
> --------------------------------------------------------------------------------
>
>                 Key: OFBIZ-4428
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4428
>             Project: OFBiz
>          Issue Type: Bug
>          Components: specialpurpose/ecommerce
>    Affects Versions: SVN trunk
>         Environment: Ubuntu
>            Reporter: mz4wheeler
>
> Using trunk, you are unable to create a new web site.  The result is:
> Bad Request
> Your browser sent a request that this server could not understand.
> Apache/2.2.14 (Ubuntu) Server at demo-trunk.ofbiz.apache.org Port 443

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

       
Reply | Threaded
Open this post in threaded view
|

[jira] [Commented] (OFBIZ-4428) trunk: Catalog -> Stores -> ANYSTORE -> Web Sites -> Create New Web Site = ERROR

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

    [ https://issues.apache.org/jira/browse/OFBIZ-4428?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13109064#comment-13109064 ]

mz4wheeler commented on OFBIZ-4428:
-----------------------------------

Correction:  Change all:

${productStoreId}
--to--
${parameters.productStoreId}

I noticed that this isn't required on 9.04/10.04 so there may another issue causing this.


> trunk: Catalog -> Stores -> ANYSTORE -> Web Sites -> Create New Web Site = ERROR
> --------------------------------------------------------------------------------
>
>                 Key: OFBIZ-4428
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4428
>             Project: OFBiz
>          Issue Type: Bug
>          Components: specialpurpose/ecommerce
>    Affects Versions: SVN trunk
>         Environment: Ubuntu
>            Reporter: mz4wheeler
>
> Using trunk, you are unable to create a new web site.  The result is:
> Bad Request
> Your browser sent a request that this server could not understand.
> Apache/2.2.14 (Ubuntu) Server at demo-trunk.ofbiz.apache.org Port 443

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

       
Reply | Threaded
Open this post in threaded view
|

[jira] [Assigned] (OFBIZ-4428) trunk: Catalog -> Stores -> ANYSTORE -> Web Sites -> Create New Web Site = ERROR

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

     [ https://issues.apache.org/jira/browse/OFBIZ-4428?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sascha Rodekamp reassigned OFBIZ-4428:
--------------------------------------

    Assignee: Sascha Rodekamp

> trunk: Catalog -> Stores -> ANYSTORE -> Web Sites -> Create New Web Site = ERROR
> --------------------------------------------------------------------------------
>
>                 Key: OFBIZ-4428
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4428
>             Project: OFBiz
>          Issue Type: Bug
>          Components: specialpurpose/ecommerce
>    Affects Versions: SVN trunk
>         Environment: Ubuntu
>            Reporter: mz4wheeler
>            Assignee: Sascha Rodekamp
>
> Using trunk, you are unable to create a new web site.  The result is:
> Bad Request
> Your browser sent a request that this server could not understand.
> Apache/2.2.14 (Ubuntu) Server at demo-trunk.ofbiz.apache.org Port 443

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

       
Reply | Threaded
Open this post in threaded view
|

[jira] [Commented] (OFBIZ-4428) trunk: Catalog -> Stores -> ANYSTORE -> Web Sites -> Create New Web Site = ERROR

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

    [ https://issues.apache.org/jira/browse/OFBIZ-4428?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13112425#comment-13112425 ]

Sascha Rodekamp commented on OFBIZ-4428:
----------------------------------------

Hi mz4wheeler,

a simple explanation:
Before the last update 1130415 we have the following line in the screen definition

{code}
<set field="productStoreId" from-field="parameters.viewProductStoreId"/>
<set field="productStoreId" from-field="parameters.productStoreId" default-value="${productStoreId}"/>
{code}

Hans removed both lines. The result is, the FTL don't know ${productStoreId}. I'm not sure why Hans remove both lines, if he did this on purpose or accidentally. Maybe he could give a short answer.

So we have to alternatives, the one you suggested and reintegrate
{code}
<set field="productStoreId" from-field="parameters.productStoreId" default-value="${productStoreId}"/>
{code}


                 



> trunk: Catalog -> Stores -> ANYSTORE -> Web Sites -> Create New Web Site = ERROR
> --------------------------------------------------------------------------------
>
>                 Key: OFBIZ-4428
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4428
>             Project: OFBiz
>          Issue Type: Bug
>          Components: specialpurpose/ecommerce
>    Affects Versions: SVN trunk
>         Environment: Ubuntu
>            Reporter: mz4wheeler
>            Assignee: Sascha Rodekamp
>
> Using trunk, you are unable to create a new web site.  The result is:
> Bad Request
> Your browser sent a request that this server could not understand.
> Apache/2.2.14 (Ubuntu) Server at demo-trunk.ofbiz.apache.org Port 443

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

       
Reply | Threaded
Open this post in threaded view
|

[jira] [Issue Comment Edited] (OFBIZ-4428) trunk: Catalog -> Stores -> ANYSTORE -> Web Sites -> Create New Web Site = ERROR

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

    [ https://issues.apache.org/jira/browse/OFBIZ-4428?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13112425#comment-13112425 ]

Sascha Rodekamp edited comment on OFBIZ-4428 at 9/22/11 9:06 AM:
-----------------------------------------------------------------

Hi mz4wheeler,

a simple explanation:
Before the last update 1130415 we have the following line in the screen definition

{code}
<set field="productStoreId" from-field="parameters.viewProductStoreId"/>
<set field="productStoreId" from-field="parameters.productStoreId" default-value="${productStoreId}"/>
{code}

Hans removed both lines. The result is, the FTL don't know ${productStoreId}. I'm not sure why Hans remove both lines, if he did this on purpose or accidentally. Maybe he could give a short answer.

So we have to alternatives, the one you suggested and reintegrate

{code}
<set field="productStoreId" from-field="parameters.productStoreId" default-value="${productStoreId}"/>
{code}


                 



      was (Author: sascha):
    Hi mz4wheeler,

a simple explanation:
Before the last update 1130415 we have the following line in the screen definition

{code}
<set field="productStoreId" from-field="parameters.viewProductStoreId"/>
<set field="productStoreId" from-field="parameters.productStoreId" default-value="${productStoreId}"/>
{code}

Hans removed both lines. The result is, the FTL don't know ${productStoreId}. I'm not sure why Hans remove both lines, if he did this on purpose or accidentally. Maybe he could give a short answer.

So we have to alternatives, the one you suggested and reintegrate
{code}
<set field="productStoreId" from-field="parameters.productStoreId" default-value="${productStoreId}"/>
{code}


                 


 

> trunk: Catalog -> Stores -> ANYSTORE -> Web Sites -> Create New Web Site = ERROR
> --------------------------------------------------------------------------------
>
>                 Key: OFBIZ-4428
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4428
>             Project: OFBiz
>          Issue Type: Bug
>          Components: specialpurpose/ecommerce
>    Affects Versions: SVN trunk
>         Environment: Ubuntu
>            Reporter: mz4wheeler
>            Assignee: Sascha Rodekamp
>
> Using trunk, you are unable to create a new web site.  The result is:
> Bad Request
> Your browser sent a request that this server could not understand.
> Apache/2.2.14 (Ubuntu) Server at demo-trunk.ofbiz.apache.org Port 443

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

       
Reply | Threaded
Open this post in threaded view
|

[jira] [Resolved] (OFBIZ-4428) trunk: Catalog -> Stores -> ANYSTORE -> Web Sites -> Create New Web Site = ERROR

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

     [ https://issues.apache.org/jira/browse/OFBIZ-4428?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Hans Bakker resolved OFBIZ-4428.
--------------------------------

    Resolution: Fixed

problem fixed in revision 1174036

thank you for the report,
Hans

> trunk: Catalog -> Stores -> ANYSTORE -> Web Sites -> Create New Web Site = ERROR
> --------------------------------------------------------------------------------
>
>                 Key: OFBIZ-4428
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4428
>             Project: OFBiz
>          Issue Type: Bug
>          Components: specialpurpose/ecommerce
>    Affects Versions: SVN trunk
>         Environment: Ubuntu
>            Reporter: mz4wheeler
>            Assignee: Sascha Rodekamp
>
> Using trunk, you are unable to create a new web site.  The result is:
> Bad Request
> Your browser sent a request that this server could not understand.
> Apache/2.2.14 (Ubuntu) Server at demo-trunk.ofbiz.apache.org Port 443

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

       
Reply | Threaded
Open this post in threaded view
|

[jira] [Commented] (OFBIZ-4428) trunk: Catalog -> Stores -> ANYSTORE -> Web Sites -> Create New Web Site = ERROR

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

    [ https://issues.apache.org/jira/browse/OFBIZ-4428?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13112457#comment-13112457 ]

Sascha Rodekamp commented on OFBIZ-4428:
----------------------------------------

Thanks Hans

> trunk: Catalog -> Stores -> ANYSTORE -> Web Sites -> Create New Web Site = ERROR
> --------------------------------------------------------------------------------
>
>                 Key: OFBIZ-4428
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4428
>             Project: OFBiz
>          Issue Type: Bug
>          Components: specialpurpose/ecommerce
>    Affects Versions: SVN trunk
>         Environment: Ubuntu
>            Reporter: mz4wheeler
>            Assignee: Sascha Rodekamp
>
> Using trunk, you are unable to create a new web site.  The result is:
> Bad Request
> Your browser sent a request that this server could not understand.
> Apache/2.2.14 (Ubuntu) Server at demo-trunk.ofbiz.apache.org Port 443

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

       
Reply | Threaded
Open this post in threaded view
|

[jira] [Closed] (OFBIZ-4428) trunk: Catalog -> Stores -> ANYSTORE -> Web Sites -> Create New Web Site = ERROR

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

     [ https://issues.apache.org/jira/browse/OFBIZ-4428?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jacques Le Roux closed OFBIZ-4428.
----------------------------------


> trunk: Catalog -> Stores -> ANYSTORE -> Web Sites -> Create New Web Site = ERROR
> --------------------------------------------------------------------------------
>
>                 Key: OFBIZ-4428
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4428
>             Project: OFBiz
>          Issue Type: Bug
>          Components: specialpurpose/ecommerce
>    Affects Versions: SVN trunk
>         Environment: Ubuntu
>            Reporter: mz4wheeler
>            Assignee: Sascha Rodekamp
>
> Using trunk, you are unable to create a new web site.  The result is:
> Bad Request
> Your browser sent a request that this server could not understand.
> Apache/2.2.14 (Ubuntu) Server at demo-trunk.ofbiz.apache.org Port 443

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira