No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
11 Posted Topics
Re: You need to put an end if after the cfabort. Your pop up should work after that. | |
I am trying to access a web service on a server that requires windows authentification. These are the steps I'm trying to take. 1. Use script below to do window auth. [CODE] <cfscript> objNTAuth = createObject("java", "jrun.security.NTAuth"); objNTAuth.init("Name_of_Domain"); objNTAuth.authenticateUser("userid","password"); </cfscript> [/CODE] 2. Then invoke my call to the web service. … | |
Re: Weird. That's for sure. Try this. (CF8 or better) Add the following: [CODE] <cfthread action="sleep" duration="#(1 * 1000)#" /> [/CODE] as the first line in the checklogin.cfm file. It should work then. | |
Re: Try using utf-16. | |
Re: I'm unsure as to how you are referring to dynamic list. I do understand your temporary list is residing in a file. Which means this solution may work for you. [CODE] <cffile action="read" file="#ExpandPath('/temp.cfm')#" variable="myList" > <cfoutput>#ListSort("#myList#", "TextNoCase", "ASC")#</cfoutput> [/CODE] | |
Re: Hi axgold472, Did you get this one figured out? Here is an example of what you are trying to do: [CODE] <cfset putme = " <cfelseif ##GetFiles.Name## contains 'AB'> <cfset ##Property## = 'ABC'> <cffile action='rename' source='D:/home/catalinasecurity.com/wwwroot/technet/Uploads/##GetFiles.Name##' destination='D:/home/catalinasecurity.com/wwwroot/technet/property/##property##/temp/01 12, 2011 ##Name##'> " > <cffile action="write" file="#ExpandPath('/abc.cfm')#" output="#putme#" > [/CODE] | |
Re: Can you post the code for the insert-user.cfm page? Or catch the sql query that is being used and post that for inspection? | |
Re: Hi Andy: I have posted some css changes you could make. I hope this is what you were looking for. [CODE] #page { width:1160px; overflow:hidden; } .logo { position:relative; float:left; width:415px; margin:165px 0 0 125px; } .signup { float:left; margin:130px 0 0 160px; width:450px; height:390px; font-weight:bold; font-family:Verdana, Geneva, sans-serif; border: … | |
Re: In the Coldfusion Administrator under SERVER SETTINGS >> SETTINGS >> MISSING TEMPLATE HANDLER you can "Specify the relative path to the template to execute when ColdFusion cannot find a requested template." This is the best way to handle 404 errors. [QUOTE=pirula;1369433]I want to create a custom search engine(SE) friendly 404 … | |
Re: [QUOTE=ckkiran;1376424]Hi Can anyone help me how to point two cold fusion application to the same datasource. Is it possible to have two differnet applications pointing to the same database? If so how to distinguish them? Also if a same user access both the applications there should not be any conflicts. … | |
Re: 1. Does the .cfm file display in other browsers. 2. I have tested the page that you have posted and did not get an error "FROM" as you have mentioned. Are you sure it is not a error on "FORM"? I have a strange feeling that the issues you are … |
The End.