Question : Using Coldfusion Jquery & rating

Big trouble with me

i am trying to follow this example:

http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/Cold_Fusion_Markup_Language/Q_26239231.html?sfQueryTermInfo=1+10+30+cf8+jqueri+rate

but the trouble what i am having is

i cam acroos an old cf site which is using Application.cfm file and using dsn as:

<cfset variables.dsn = "database">

now i am using the component, and i am getting the variables.dsn error, like DSN is underfined in variables, while i check the URL, it get passed to the cfwindow

Here is what i am using:

Few Changes troubling me! cfml
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
<!--- create array of ratings values --->
<cfdump var="#variables#">
<cfset arrRatings = ['Very poor', 'Not that bad', 'Average', 'Good', 'Perfect']>
<!--- get initial votes numbers and avg rating --->
<cfset initRatings = createobject('component', 'tools').getRatings(user=url.uID,merchant=url.merchantID)>
<div class="rating-L">
<strong>Average rating</strong>
<span>(<span id="all_votes"><cfoutput>#initRatings.votes#</cfoutput></span> votes; <span id="all_avg"><cfoutput>#initRatings.avg#</cfoutput></span>)</span>
<cfoutput>
  <form id="avg" style="width: 200px">
    <cfloop from="1" to="#arraylen(arrRatings)#" index="x">
      <input type="radio" name="rate_avg" value="#x#" title="#arrRatings[x]#" disabled="disabled"<cfif initRatings.avg EQ x> checked="checked"</cfif>>
    </cfloop>
  </form>
</cfoutput>
</div>

Answer : Using Coldfusion Jquery & rating

Hi,
Firstly since Site B is a workgroup - in order to be able to access the file Storage on a file server in the domain- Make sure you have a user account created on the domain fileserver and the same user account on any workgroup machine that is going to use the fileserver.
PS: The password for the user has to be same on all the computers

After this is taken care of you can Map a drive to the shares on the fileserver

Regards,
TG82
Random Solutions  
 
programming4us programming4us