Fixed. SESconverter.cfm has something in it that cf7 and IIS6 together don't 
like (The code runs fine on CF7 on IIS5 and CF6 on IIS5). I replaced the file 
with this bit of code at the top of the index.cfm file and it works now.

        <cfscript>
        // note that you might have to manipulate the string first before you 
can use it as an array
        // note also that cgi.path_info might not be the right key on your 
version of CF server
        SESquerystring = cgi.path_info;
        arQuerystring = ListToArray(SESquerystring,'/');
        for ( qs = 1 ; qs lte ArrayLen(arQuerystring) ; qs = qs + 2 ) {
            if ( qs lt ArrayLen(arQuerystring)-1 ) {
                url[arQuerystring[qs]] = arQuerystring[qs+1];
            }
        }
        </cfscript>

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:273475
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to