Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 2 of 2

Thread: MS9.3 error on SimpleProduct xmlpackage imported from 9.2

  1. #1
    fsantos is offline Senior Member
    Join Date
    Feb 2007
    Posts
    244

    Question MS9.3 error on SimpleProduct xmlpackage imported from 9.2

    I just upgrades my soon to be released store to 9.3. Everything when nice and easy from 9.2 to 9.3 however, I'm having a problem when displaying any product page.

    I'm using the SimpleProduct xmlpackage from version 9.2 that was working great. However, this file on 9.3 does not work (even thought the original that ships with 9.2 works fine).

    I used the debug flag on the xmlpackage and all I can see is that the product.simpleproduct.xml.config_store.xfrm.xml is not being created for some reason.

    I checked permissions and everything looks fine. Anyone knows a reason for this to be failing?

    Thanks for your help!

    fsantos

  2. #2
    fsantos is offline Senior Member
    Join Date
    Feb 2007
    Posts
    244

    Default

    Here is some information I was able to find out during my debug process.

    The problem is related to the folowing code

    Code:
    <xsl:value-of select="aspdnsf:LookupImage('Product', ProductID,'','','medium', $AltText)" disable-output-escaping="yes" />
    I really don't understand why this was working perfectly with 9.2 and it is not working anymore with 9.3. I will have to look at source code to understand what may have changed.

    Removing that line gets everything back to work. I had to use a different alternative to get to the product image:

    Code:
    <img src="{concat('/images/product/medium/', ProductID, '.jpg')}" />
    In my case, this works but it will fail if images are not JPG's and in case their name is not the product id#.