Questions
Als letztes aktiv
In CF10, my login was not working properly as it was in CF9. Session variables I set were 'unset' every time a new page was called, as well as the GetAuthUser.To troubleshoot the problem, I found some unexpected behavioral change from CF9.In case it's pertinent, I am using ORM.In my application.cfc, I had:this.sessionManagement = "true";this.sessionTimeout = CreateTimeSpan(0,0,30,0);this.loginStorage = "Session";this.setClientCookies = false;In the onSessionStart function, I had:<cfset Session.isLoggedIn= 0/><cfset Session.username = ""/><cfset Session.email = ""/><cfset Session.termsAccept= 0/>In the onRequestStart function, I had:<cfif Session.isLoggedIn eq 0><cfif FindNoCase("Login",requestedPage) eq 0 and FindNoCase("Index",requestedPage) eq 0><cfinclude template="userInterface/session/login/Login-V.cfm"></cfif></cfif>Even after a valid login, I always got the login page. Dumping the Session variables, they were always set to Ap
We recently setup a new server with CF10. We're experienncing severe performance problems at times. We had similar problems with CF9 but not nearly as severe. How do we go about diagnosing the problem and finding a solution? The logs don't seem to help. thanks
When I open CF Builder there are certain folders in the Navigator that are expanded and others that aren't. I have no idea how it got set up with those particular folders expanded. I'd like to change which folders are expanded when CF Builder is opened, but I cannot for the life of me figure out how. Any help would be appreciated.
I have been searching and searching here, there, and Google for some insight on what I am doing wrong here and can not find anything.My issue is this: I have an html format CFGrid that is using a query to populate, selectMode is set to edit, the query has 12 columns, 5 of which are bits (MS SQL), when I try to add a row then submit the grid to my action code the checkbox values are all empty strings, regardless of check status. If I use the applet verson all is well, I get proper values and can execute the code accrodingly. However since this must be accessible from an IPad the applet is out, as well as Flash. So my question is am I doing something wrong, how do I determine if the checkbox was checked on an Insert?Updates work fine, the check values come through perfectly, it is only when a new row is inserted that things go haywire.Thanks in advance.Message was edited by: Verc189 for grammatical errors
I'm currently running CF 9 Standard on a since server that runs as my web and db server. I use Rackspace Cloud btw.I've been thinking about changing my infrustructure around so it would look like this:- 1 Load Balancer- 2 Web Servers- 1 Database ServerMy question is about licensing on the 2 web servers.- Is it possible to use a single CF Standard license to cover both web servers (since they are just syncing each other, they are basically the same server but split into two separate virtual machines), or would I need to purchase 2 individual licenses to make this work? Any help or advice is appreciated. Thanks!
I have a text field, type=password that I would like to prevent autocomplete functionality for. Of course, this can be set in the browser, but do not see a property for input or cfinput to disable autocomplete for that field even if it allowed in the browser.
I have a remote server (Windows 2012 64 bit with CF10 and sp 11) and CFB 2.0.1 on windows 7 32 bit. In the CFB Servers Tab - I can open the server moniter and admin screens... I also can see the RDS DataView data sources and also under Services Browser I see my CFC and CFIDE etc objects... What I can't do is to in the Servers tab - right click on the server object and stop,restart etc the Servers... I can find instructions for installing on the CF server AdminServerComponents.zip and other files for versions cf7 > CF9 but nothing on CF 10. Do I need to install additional files or does CF 10 have these files included. TIA Jay Bietz
I have following select contorl on the form and it has a record set the code like following,<select id="MySelect"> <cfoutput query="spList"> <option value="#spList.MyID#" <cfif (isDefined("spList.MyID") AND spList.MyID EQ spList.MyID)>selected="selected"</cfif>>#spList.MyNUMBER# - #spList.<MyNAME#</option> </cfoutput> </select>The form show lasr record of the record set on the list.I would like to know are there any way to let the dropdown list show the first record when the form showup.Your help and information is great appreciated,Regards,Iccsi,
! THIS SEEMS TO BE WORKING NOW - PLEASE disregard.... i think it was slow to start a java applet - but now ok....Hi all,I am using CF 10 and looking at some old code from several years back. I was using some cfgrid tags to display data - this used to work ok - but now it simply shows a blank page - with no errors....Q: has something changed in the last few years that might need updating to make this show?example...<cfgrid name="list" height="400" width="950" align="middle" query="session.findstuff" appendkey="yes" griddataalign="left" gridlines="yes" rowheaderalign="left" colheaderalign="left" selectmode="edit" maxrows="20" enabled="yes" visible="yes" format="applet" autowidth="true"><cfgridcolumn name="id" headeralign="LEFT" dataalign="LEFT" bold="No" italic="No" select="No" display="Yes" headerbold="No" headeritalic="No" type="NUMERIC"><cfgridcolumn name="num" headeralign="LEFT" dataalign="LEFT" bold="yes" italic="No" select="yes" display="Yes" headerbold="Yes" headeri
I applied APSB13-13 per the instructions for 9.01 Section 2. The server started properly and sites are functions. The problem is I could not get into the CFAdmin.Entering the right password just kicked me back to the login screen as if nothing happened. I assumed it was some type of security/session problem.I disabled the admin password in neo-security.xml and reloaded the admin. This time the admin loaded but the inner frame page for everything in the menu throws the error:Variable GETCSRFTOKEN is undefinedI took a backup of /CFIDE before appying. I replaced the /CFIDE/administrator directory with the backup, restarted, and the admin works fine again.According to hackmycf.com all cummulative hot fixeses are installed up to 4 and security fixes up to APSB13-13 (APSB13-13 and APSB13-10 were not installed when I started. Section 2 were the instructions if -10 was not already installed.)I've done endless file compares between both the backup and updated /CFIDE/administrator directories an
Hello everyone,Two months back, in my project I had changed CF_SQL_INTEGER to CF_SQL_NUMERIC for entire application. Now I am noticing significant perfromance degradation. Page are taking more time to load than before.Any idea/information on this will really help me a lot.Thanks in advance !Sonu
Would the extension be .exe or .cfm?
I put a list on the form and have it link to dynamic recordset.I want to modify the width and height to smaller, but it seems that it does not change when I modify the value of the control.I can easily to modify width and height for text box, but it does not work for dropdown list.What property I can change to modify the width and height of the dropdown list?Your help and information is great appreciated,Regards,Iccsi,
I would like to have triggle JavaScript when user exit input text field.I just check ColdFusion document. it does not have on exit event, but it has OnValidate.I thought that onValidate should triggle when user exit the control, it seems the JavaScrip does not triggle.I would like to know any event triggle for CFINPUT text field when user exit the contorl.Your help and information is great appreciated,Regards,Iccsi,
Hi,Has anyone been able to successfully install ColdFusion 10 on Debian 7?I have been trying to get it to work, but when I try to load the CF administrator after the installation I get an apache/tomcat error.HTTP Status 500 -type Exception reportmessagedescription The server encountered an internal error () that prevented it from fulfilling this request.exceptionjavax.servlet.ServletException: java.lang.NullPointerException coldfusion.bootstrap.ClassloaderHelper.initServletClass(ClassloaderHelper.java:129) coldfusion.bootstrap.BootstrapServlet.init(BootstrapServlet.java:59) org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472) org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:98) &nb
I just install coldfusion 10. I can get to the CF admin , but as soon as I start going to the site I am getting 404 error message. When I type localhost:8500/ I am dgetting the directory listing , but when I type localhost:8500/demo getting 404 error.Please advice
Our charity has moved to a new address and our Coldfusion programer is on medical leave.How can I search our Coldfusion files to find the Old Address and than I can change the data to our new address?I tried using Windows XP Explorer to search our Local Host web site and no files have been found.Thank you
Hi all,i have a very old Cold Fusion applications running on 6.1 version, wich are on Windows 2003 Server.Database is MS Access database Only.Now i need upgrade the Windows server to 2008 and also migrate cold fusion application to new version of cold fusion server. Probably 9.0 or higher version.Does Cold Fusion server 6.1 works on windows 2008 server ?Can some one please tell me the steps to be considered for migration. Will there be any challanges.I am new to Cold Fusion and dont have any idea on this. My job is only to migrate and make it working. please suggest.Thanks,Raghav
We need to migrate an application to a new server, but do not want to upgrade the application to a newer version of Coldfusion at this time. What is the process to get a set of disks or download files to install ColdFusion 6.1.0.0. I have the product key from the server.
I have read a lot of posts about this but have not found a resolution. We have several CF apps that depend on knowing who was authenticated.With CF8 all we had to do was setup basic authentication in Apache and remote_user was populated.Out setup is this, Where running on RHEL 6.3, CF10 installed using the built in webserver and Tomcat.We are using Apache 2.2 to simply proxy requests to CF/Tomcat and using LDAP to authenticate. The LDAP part seems to be working. I get asked for userid/password and the app runs, but when I dump the cgi structure remote_user (and auth_user) are empy. Other cgi variables are filled in. Any clues?As usual thanks for your help.Mike
Hi,I have a problem with a new ColdFusion 8 server. (Debian 6, PostgreSQL 9 database). The server accept only five different ip's. The client will get the messag "JRun closed connection." in the browser after the fifth access.In the cfserver.log I can find these message:error: single ip limitation is active. The connection can only accepted by the local host or an single ip address.(original: error Einzel-IP-Lizenzbeschränkung ist in Kraft. Die Verbindung kann nur vom lokalen Host oder einer einzelnen IP-Adresse akzeptiert werden. )The old server is offline. (SuSE 10, PostgreSQL 8 database). All data are migrated to the new server. I added the license in the webinterface again with no errors. But the ip limitation is still active.What can I do?
I'm trying to figure out how to properly apply my custom border line formatting to my query values only on an automated report. Currently, I have it where it is hard coded, but long term it would not work since new values will be added to the database and the report query values would be generated without the border line formatting, unless I manually change the row numbers everytime.Here's the formatting I'm using: format4.topborder="thin"; format4.topbordercolor="grey_40_percent"; format4.bottomborder="thin"; format4.bottombordercolor="grey_40_percent"; format4.leftborder="thin"; format4.leftbordercolor="grey_40_percent"; format4.rightborder="thin"; format4.rightbordercolor="grey_40_percent"; SpreadsheetFormatCellRange(report,format4, 2,1,26,8);
Hi,When I click uninstall.app I got the screen like this.Please help.THANKS.
Hey guys, I have a CFGRID that's bound to some form fields:<tr><td align="right"><span class="srch_title">First Name 1</span>:</td><td align="left"><cfinput name="Data_FName1" type="text" class="inputs_nomargin" bind="{SearchResultsGrid.fname1}"></td><td align="right"><span class="srch_title">Last/Bus Name 1</span>:</td><td align="left"><cfinput name="Data_LNameBus1" type="text" class="inputs_nomargin" bind="{SearchResultsGrid.lname_busname1}"></td><td align="right"><span class="srch_title">DOB 1</span>:</td><td align="left"><cfinput name="Data_DOB1" type="text" class="inputs_med_nomargin" bind="{SearchResultsGrid.dob1}"></td><td align="right"><span class="srch_title">DL Number 1</span>:</td><td><cfinput name="Data_DLNum1" type="text" class="inputs_nomargin" bind="{SearchResultsGrid.dlnum1}"></td></tr>When, c
I'm moving from CF8 to CF10 and having some issues. My CF10 install is a clean install on brand new server running Windows Server 2008 R2 64bit IIS 7.5. I've upgraded to CF version 10,0,11,285437. Out of the 50 or so Apps on the server almost everything works, but there are a few pages that just don't render at all. No error, nothing. Viewing the source for the page just shows an empty HTML page. Coldfusion logs are empty and there's 500 null error in the IIS logs.While researching that issue I found many people recommending I rerun wsconfig after patching CF, so I tried that and it looks like my sites aren't configured correctly. During install I configured the sites individually (2 of them run in 32 bit while the cfadmin site runs in 64.) Now when I run the Web Server Configuration Tool as administrator I just get a Configured Web Servers box that is empty. When I click add the next window shows IIS, but the drop down for IIS Web Sites is disabled. Checking the Configure 32 bit we
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Sie haben bereits einen Account? Anmelden
Noch kein Konto? Konto erstellen
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.