cfloginuser
Since cfloginuser is to login web server,I would like to know do I need create user ID and password at CF10 server or just use my table to check if user ID, and password are correct then assign user...
View ArticleDataSource
I can use Application.Datasource to assign a datasource for the application.I would like to know the web site can only has one datasource.If my web site has more than one database on the different...
View ArticleRe: CF 10 - Remote service error
Thank you Peter. It runs under the Local Service account though. Is there some configuration in CF10 admin that needs to be set up? I'm coming from CFMX. I can't seem to find anything in the...
View ArticleRe: DataSource
You can have multiple datasources in your application. Create each one in your CF Admin > Datasources. Then in onApplicationStart in your application.cfc, just create each one, e.g. <cfset...
View ArticleRe: cfloginuser
No, you do not need to create a user id/password on the ColdFusion server. And, yes, you can and should use your own table to check if the user/password is correct. See the documentation here for a...
View ArticleRe: Migrated from MX7 to CF9 and now site not working on Internet Explorer
Did you get this resolved? My guess would be that there is nothing wrong on the ColdFusion side but rather an "issue" with how IE is behaving. I have noticed in some situations that I need to include...
View ArticleRe: CFStoredProc Timing Out on CF9
Cross reference to the same question on StackOverflow: CFStoredProc Timing Out It appears that using <cfsetting requesttimeout = "{numberOfSeconds}"> to extend the timeout has resolved the issue.
View ArticlesetClientCookies to false does not appear to work?
Currently CFID and CFTOKEN appear in the URL of certain pages, such as 404.cfm. I do not wish for those parameters and values to appear in my URLs. I thought by setting setClientCookies to false that...
View ArticleRe: setClientCookies to false does not appear to work?
setClientCookies = false tells coldfusion not to create cookies for the session tokens (CFID and CFToken). CFID and CFToken still exist and when they are int eh URL they are not in a cookie. What you...
View ArticleRe: setClientCookies to false does not appear to work?
Excellent. Thank you for the explanation.
View ArticleConfusing collection issue - CF9/*nix
Hello, everyone. Production environment is *nix running CF 9.0.0, with both Verity and Solr collections. Trying to list collections is breaking - one collection in particular is breaking the...
View ArticleRe: ColdFusion 10 / SQL Server windows authentication
Anit, This is exactly what I did once it didnt work with just ColdFusion Application Server. I will try this again . Regards,Prem
View ArticleCert problem
I have an app on a CF 8.01 server that uses CFHTTP to call the Google AdWords SOAP API via SSL. It recently started throwing errors on the CFHTTP calls, apaprently due to a bad cert for the adwords...
View ArticleRe: Migrated from MX7 to CF9 and now site not working on Internet Explorer
Hey Miguel- I'm still working on it. After trying some more stuff I have to agree with you, I believe the CF is ok and it is the IE browser behavior. I didn't think about needing to include the domain....
View ArticleRe: Cert problem
Make sure that you are working with the correct cacerts file. If you have ever upgraded the JVM then it is likely in another directory. You can verify by looking at the jvm.config file on the...
View ArticleRe: Migrated from MX7 to CF9 and now site not working on Internet Explorer
Can you tell me if you are using IIS for the challenge/response or are you using your own custom login form?
View Article