Update CF9.01

I'm moving from 9.0 to 9.01 to use Mura. (Our hosting never Center did the upgrade).

I ran the patch on the Adobe page, but do not upgrade the server. He said 9.0. Is there an 'upgrade' file that must run first? That is to say not only a fix

I do not see here: https://helpx.adobe.com/coldfusion/kb/hot-fixes-coldfusion-9.html

I think CF9 support ended in 2014, but I can at least upgrade to 9.01?

Dodd

Hello

Adobe CF stopped accession CF9 of accommodation. You may like:

http://www.gpickin.com/cfrepo/

HTH, Carl.

Tags: ColdFusion

Similar Questions

  • Update apache POI on CF9

    Hi all

    I found this link for CF10.

    Disgruntled boffin

    I try the same thing in CF9, but it does not work. I'm using poi v 3.11 Beta 3.

    Anyone updated to the new poi on CF9?

    Thanks in advance

    I was able to do, I've updated the CF 9 with the latest patches and also use java SDK 1.7.

  • CF9.0.1 - updating JRE 32-bit on Windows 64-bit

    Hi all

    Based on this security alert (http://kb2.adobe.com/cps/894/cpsid_89440.html), I'm looking to upgrade my CF 9.0.1 install default JRE 1.6_17 to 1.6_24.

    On my Windows 7 64 / 64 CF9.0.1 development system I simply downloaded 64-bit JRE installed and pointed at CF the JRE newly installed (via the CF admin). Everything worked flawlessly.

    My test server (Windows Server 2008 Standard 64-bit SP1) is running CF 9.0.1 32 bits. I downloaded the JRE 32 bit (jre-6u24-windows-i586) and moved to C:\Java\jre6. In addition, based on the note found here: http://www.oracle.com/technetwork/java/javase/install-windows-64-142952.html

  • The public JRE installed with the 32-bit JRE is not registered. You must set the PATH environment variable for pointing to JAVA_HOME \bin to register the JRE.
  • I added a C:\Java\jre6\bin\ on my WAY through the control panel.

    Go to the command line (to c:\ >) and type "java-version" provides:

    Java version "1.6.0_24".

    Java (TM) SE Runtime Environment (build 1.6.0_24 - b07)

    The Client Java VM (build 19.1 - b02, mixed mode, sharing)

    So now, I'm going to the CF Admin-> Java and JVM and reset the Machine path

    The server stops and then fails to restart. The Windows Application log indicates: "the ColdFusion 9 application server service could not be started.  Check the log files from the server 'coldfusion' for more information. »

    If I go back to the JVM in C:\Coldfusion9\runtime\jre the server restarts normally.

    Any ideas?

    Hi Billy,

    Download the SDK Java from Oracle (not the runtime):

    http://www.Oracle.com/technetwork/Java/javase/downloads/index.html

    Install via run the EXE download - default installation will be fine.

    Stop the CF - stop SERVICES.msc "ColdFusion 9 application server.

    Take a copy of CF\runtime\bin\jvm.config - so you have a backup.

    Change the line CF\runtime\bin\jvm.config find "java.home =" and comment it for example:

    #java.home=C:/ColdFusion9/runtime/jre

    Add the new line like and save next:

    Java.Home = C: / Program Files/Java/jdk1.6.0_24/jre

    Note he slashes and the location of the JRE (runtime): you must point to that of JDK, because the other JRE in C:\Program Files\Java\jre6 will be missing a DLL.

    Start CF via SERVICES.msc.

    HTH, Carl.

  • Arrayset CF9 CF11 questions

    Hello

    On CF9, I'm having no problem. Currently, I'm testing on a new webserver with CF11 update 10. The error I get is:

    0 is not equal to 0 or greater than zero or less the range passed to ArraySet must start with a number greater than zero and less than or equal number of second.

    Here is a snippet of my code (do not know if you will need more than that). The code in bold is where there is say it is any mistake on and I think that's where I need to make a change. I'm more or less looking for other ideas on what to check or if something has changed since CF9 that I have not read on. I tried referencing Re: crosstab - error table to my question but still can't find a good solution. I was told to create a new thread.

    ---

    < cfset Battambang = ValueList (crosstabcolumns2.ts_desc) >

    < cfset bucketheaders = ListToArray (list) >

    < cfset b = ArrayLen (bucketheaders) >

    < cfset bucketarray = ArrayNew (1) >

    < cfset bucketTotal = ArrayNew (1) >

    < cfset temp = arrayset(bucketTotal,1,b,"0") >

    < cfoutput query is group of 'summedresultsNewOld' is "classcode" >

    < table border = "1" cellpadding = "5" >

    < tr > < th '225' = width > CAMPUS MAIN < /th >

    < cfloop index "i" = From = "1" to = "#b #" >

    < th > #bucketheaders [i] # < /th >

    < / cfloop >

    < width th = "125" > TOTALS < /th >

    < /tr >

    < cfoutput group = "ts_type" >

    < tr > < th > #ts_type # < /th >

    < cfset temp = arrayset(bucketarray,1,b,"0") >

    < cfoutput >

    < cfset i = listfind (Battambang, trim (summedresultsNewOld.ts_desc)) >

    < cfset temp = ArraySet (bucketarray, I, I, summedresultsNewOld.headcount) >

    < cfset temp = ArraySet (BucketTotal, i, i, (BucketTotal [i] + summedresultsNewOld.headcount)) >

    < / cfoutput >

    < cfset rowtotal = 0 >

    < cfloop index = 'j' from = "1" to = "#b #" >

    < cfset rowtotal = #rowtotal # + #bucketarray [j] # >

    < td width = "125" > #bucketarray [j] # < table >

    < / cfloop >

    < td > #rowtotal # < table >

    < /tr >

    < / cfoutput >

    < b >

    < th bgcolor = "# 999999" > TOTALS < /th >

    < cfloop index = 'j' from = "1" to = "#b #" >

    < td bgcolor = "# 999999" > #BucketTotal [j] # < table >

    < / cfloop >

    < td bgcolor = "# 999999" > #ArraySum (BucketTotal) # < table >

    < /tr >

    < /table >

    < / cfoutput >

    ---

    This is the result of what she should look like (currently in CF9). Any help is appreciated!

    arrayset.png

    On the top of my head, you set i of ListFind(), which returns 0 when the element is not found in the list.

    If you are SURE that the element is in the list, try to use ListFindNoCase() - it could be a sensitive issue.

    HTH,

    ^_^

    PS: Check to make sure everything is balanced () would have, and that list items do not have white spaces.  Which can also cause an element can't find not.

  • CF9 upgrade to CF11 w/IIS is unable to get to the stage of migration/configuration

    I'll finally approval to my update not as a stand alone, side-by-side upgrade which was make me do a significant Gash was not working because of our funky twists coding and security, we have implemented in the code.

    Unfortunately, when I do the upgrade and installation it installs, but I can't move to the phase of migration/configuration of the facility.  I see nothing in the error logs.  Sometimes I get the message of 500.19 error when I try to connect to the administrator myself, other times nothing.  When I get the error HTTP 500.19-Internal Server Error it designates the file ApplicationHost.config or web.config that contains the malformed xml element.  When I look at the web.config file it contains about 9 event handlers use jrun_iis6_wildcard.dll or jrun_iis6.dll.  I do not have the IIS6, IIS7 configuration selected in the new installation of CF11, but I can't go forward.  I want to just copy these 2 files to my installation of CF9, but I don't know where to put them.  I even renamed the web.config file so that IIS would recreate it so he wouldn't refer to the Web.config CF9 old and stuck there, what a time error message referred to in these lines in the file web.config CF9.  I understand that this issue blurs the borders of category of ColdFusion/IIS.  I don't know where my error lies with IIS or CF11.  I want to just manually enter these managers in IIS 7, but my boss seems to think that we must have wsconfig do that for us in case it puts code somewhere else and we lose configuration changes that really puts us in a spiral.  Any ideas/suggestions?  I hope that I was clear enough.

    Another thing is that we have our CFIDE to CF9 file located in a directory other than for security reasons I suppose, but I can't understand how CF is aware that he must go to run.  In the CF administrator, it refers to another for CFIDE folder that does not exist.  I saw a reference to the correct location, and it is in the registry while I was sure CF11 references have been removed. CF9 he had there. I guess I wonder if there is a setting somewhere that I need to change if CF11 will look in the right place and then run and go ahead with the part of the migration/configuration of the instalation.  I can't find it in any of my research looking for the foldername in the files.

    I inherited this project and there is very little documented regarding configuration changes that have been made.

    Thanks in advance!

    Jennifer

    OK, my installation works, although I always try to get the apps to work (I think that the problems of permissions).  Since I continued to have problems of migration we created a CAR first with CF9.  We were then just do an upgrade directly on our development server.  I performed the installation with the server configuration and selected configure my server Web ColdFusion 11, IIS. When you launch the browser to connect to CF11 administrator if you get 500 error may be because the SSL for the CFIDE > folder in IIS administrator is selected.  Deselect it and this error messge should disappear (if it is).  We continue receiving a message from 404.7 error refuse to file extension.  I thought it had to do with my cfm extensions because I was trying to open a cfm, but it wasn't the case.  The error mentioned isapi.redirect.dlls.  I finally found an error message under my FailedRequestLogs IIS that mentioned something about request filtering.  It turns out that .dll is not in his list of my virtual folder from Jakarta.  Once I added this and restarted IIS, I could enter my CF Administrator 11 and installed the file of the CAR.

    Now I'm getting unauthorized errors and need to understand this. The permissions are similar to the cause of this.

    Things I learned (you know already that):

    • CF9 may have placed everywhere CFIDE, but CF11 must keep where it is installed.
    • Cf11 didn't need metabase IIS 6 installed, unlike CF9 compatibility (at least we did)
    • We continue get a MIME Type error message also overlap for .air.  Which has been added to the server level and inherited at the Web site level.  I deleted at the server level and he added to the Web site level.

    I hope this helps someone.

  • Element not defined in URL CF11 worked in CF9

    We have recently upgraded to CF9 to CF11.  I'm having a problem where CF throws undefined in URL element when the variable is clearly defined in the URL. Here is the flow...

    The user clicks on an icon to update an element.  A new window opens and the variables are passed in the URL.  User makes changes, present presses, CF makes updates, then the window closes.  It worked well in CF9.  Since the update when the user presses submit the window is never closed and CF throws the error.  Nothing has changed in the code.

    Thanks in advance for any help!

    Gary

    I solved the problem.

    Seems CF11 that the tag #CurrentPage # does not pass the data to the URL, but he did it in CF9.

  • Where is a list of all the updates of Coldfusion security and fixes for all versions of Coldfusion?

    Hello

    Does anyone know if there is a page that lists all the updates and security fixes for all versions of Coldfusion? I find their update/patch pages of description to be very frustrating to also manage/announce/make available their updates/corrections. I use CF9.0.2.

    Thanks in advance!

    Joe

    You can find the list here: http://helpx.adobe.com/security/products/coldfusion.html

    As a side note, my company has a service called HackMyCF that helps you stay on top of what updates to install: http://hackmycf.com/ it is a free scanner and a paid subscription that gives you more in-depth reports like this one: https://foundeo.com/hack-my-cf/example-report.cfm

  • Cf11 - Type is not supported by this SQL driver based ORM Update

    We test on one of our web applications in CF11.

    We have a feature of updated base of entity ORM that retrieves an object individually called several setters and then registers the entity inside a transaction in cfscript. We are working with Microsoft SQL Standard 2012 edition. It worked under CF9 and CF10.

    Under CF11, we get the following error:

    Error: An exception occurred when the validation of the transaction. The main cause of this exception is: coldfusion.orm.hibernate.HibernateSessionException: type [macromedia] [SQLServer JDBC Driver] specified SQL is not supported by this driver...


    The line of code is throwing the error, it's what is the last line in the transaction {} block.


    Follows the SQL running. This is a great Basic. What happens here?



    Journal of hibernation:


    05/07 17:21:04 [ajp-bio-8014-exec-1] HIBERNATE DEBUG - update dbo.registrations set childID=?, registered=?, dropped=?, droppedBy=?, droppedDate=?, neverPlayed=?, WL=?, WLRemoveDate=?, WLRemoveBy=?, sexdiv=?, age_calc=?, Scholarship=?, VIP=?, PlayerSchool=?, Grade=?, PlayerHeight=?, PlayerWeight=?, PlayerEmail=?, PlayerCellPhone=?, LBrother=?, RecentlyMoved=?, submitterID=?, submitType=?, comments=?, RegistrationComments=?, CommentsDivDir=?, DroppedComments=?, RegistrarOnly=?, MedicalInsCarrier=?, MedCond=?, Mediprobs=?, PhysicianName=?, DoctorFull=?, EmergencyContact=?, EmergencyPhone=?, seasonID=?, moveUp=?, moveUpStatus=?, moveUpAsked=?, MoveUpOldDiv=?, PlayedLastYear=?, MethodOfPayment=?, Fee=?, RefundAmount=?, RefundDate=?, AmountPaid=?, InvoiceNo=?, Div=?, batchNum=?, sexdivNextYear=?, email_other=? , dateCreated =?, dateModified =?, lastModifiedBy =?, playerNum =?, refund =?, refundBy =?, Don =?, isAYSOExtra =?, yearbooksGiven =?, yearbooksOrdered =?, noPracticeDay =?, coed =?, clientID =?, seasonUID =? where registrationID =?

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - parameter binding [1] as [VARCHAR] - 37F22B1B-066D-45CB-BBDA-677D8059159D

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [2] boolean - true

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [3] as [BOOLEAN] - false

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - connection parameter [4] like [VARCHAR] - < null >

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - parameter binding [5] as [TIMESTAMP] - < null >

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [6] as [BOOLEAN] - false

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [7] as [BOOLEAN] - false

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - parameter binding [8] like [TIMESTAMP] - < null >

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - parameter binding [9] as [VARCHAR] - < null >

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - parameter binding [10] like [VARCHAR] - B19

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [11] as [INTEGER] - 6

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [12] as [BOOLEAN] - false

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [13] as [BOOLEAN] - false

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - parameter binding [14] as [VARCHAR] - Test

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [15] as [VARCHAR] - 3

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [16] as [VARCHAR] - 23

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [17] as [VARCHAR] - 44

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [18] as [VARCHAR]-

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [19] as [VARCHAR]-

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [20] as [VARCHAR]-

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [21] as [BOOLEAN] - false

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - parameter binding [22] as [VARCHAR] - 75F5114C-B32A-4BDA-A125-93FAB7EB3834

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - parameter binding [23] as [VARCHAR] - father

    05/07 17:21:04 [ajp-bio-8014-exec-1] test TRACE HIBERNATE - parameter binding [24] as [VARCHAR].

    05/07 17:21:04 [ajp-bio-8014-exec-1] test TRACE HIBERNATE - parameter binding [25] as [VARCHAR].

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - parameter binding [26] as [VARCHAR] - < null >

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - parameter binding [27] as [VARCHAR] - < null >

    05/07 17:21:04 [ajp-bio-8014-exec-1] test TRACE HIBERNATE - parameter binding [28] as [VARCHAR].

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - parameter binding [29] as [VARCHAR] - BCS

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [30] as [BOOLEAN] - false

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [31] as [VARCHAR]-

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [32] as [VARCHAR]-

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [33] as [VARCHAR]-

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - parameter binding [34] as [VARCHAR] - LK

    05/07 17:21:04 [ajp-bio-8014-exec-1] HIBERNATE TRACE - setting binding [35] as [VARCHAR] - 302-555-1212

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [36] as [INTEGER] - 9

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [37] as [SMALLINT] - 1

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [38] as [INTEGER] - 0

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [39] as [BOOLEAN] - false

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - parameter binding [40] as [VARCHAR] - < null >

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - parameter binding [41] as [BOOLEAN] - < null >

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - parameter binding [42] as [VARCHAR] - credit card - automated

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [43] as [DOUBLE] - 100.0

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - parameter binding [44] did [DOUBLE] - < null >

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - parameter binding [45] as [TIMESTAMP] - < null >

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - parameter binding [46] as [DOUBLE] - < null >

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - connection parameter [47] as [VARCHAR] - 7176

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [48] as [SMALLINT] - 8

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - parameter binding [49] as [VARCHAR] - < null >

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - parameter binding [50] as [VARCHAR] - B8

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [51] as [VARCHAR]-

    05/07 17:21:04 [ajp-bio-8014-exec-1] HIBERNATE TRACE - setting binding [52] as [TIMESTAMP] - 2013-07-19 12:29:50.0

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [53] as [TIMESTAMP] - {ts ' 2014-05-07 19:21:04 '}

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - parameter binding [54] as [VARCHAR] - 75F5114C-B32A-4BDA-A125-93FAB7EB3834

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [55] as [INTEGER] - 18973

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [56] as [BOOLEAN] - false

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - parameter binding [57] as [VARCHAR] - < null >

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - parameter binding [58] as [DOUBLE] - < null >

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [59] as [BOOLEAN] - false

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [60] as [SMALLINT] - 0

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [61] as [SMALLINT] - 0

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - connection parameter [62] as [VARCHAR] - Wednesday

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - related parameter [63] as [BOOLEAN] - false

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - parameter binding [64] as [VARCHAR] - 2BDE1C40-A442-46D0-AD11-2E9E9F078069

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - parameter binding [65] like [VARCHAR] - 8FD74B93-990E-4DFE-8D0A-352EA5461180

    05/07 17:21:04 [ajp-bio-8014-exec-1] TRACE HIBERNATE - parameter binding [66] as [VARCHAR] - 42E5F844-1310-41CE-BDD6-BB4E6FB8D847

    05/07 17:21:04 [ajp-bio-8014-exec-1] HIBERNATE ERROR - [macromedia] [SQLServer JDBC Driver] the specified SQL type is not supported by this driver.

    The problem is that CF11 uses a version of hibernation in the Boolean fields that contain a null values are tapped in MS SQL. It is in the release notes and Adobe has shown no indication that they plan to update Hibernate in CF11 to fix. I added a vote for the bug:

    Bug #3518916 - the attempt to insert Null into primitive Boolean type throws error for SQLServer

    The solution is to replace the ormtype = "boolean" with ormtype = "numeric_boolean". I have not tried that we had held off the coast in the hope they would patch to a later version of Hibernate, but no luck so far.

  • CF9 web server &amp; integrated: change default documents?

    Hello, everyone.

    I'm just curious to know if there is a way to change the default documents in the built-in web server in CF9?

    I know that in IIS, the default documents are default.htm, default.html, index.htm, index.html, http://www.sigling.is/IMO/imofishing/home.htm, etc..  You can change their priority, remove them, add to them.

    Can even be done in the built-in web server in CF9?  I tried Google-ing for it, but I'm not finding anything on the subject.

    UPDATE:  Op!  I have found the answer.  I'll let you know if it works.

    Thank you

    I edited two .xml files, and it works.

    I wanted to add 'frameset.cfm' and push it upward.

    [drv]\ColdFusion10\cfusion\runtime\conf\web.xml

    [drv]\ColdFusion10\cfusion\wwwroot\WEB-INF\web.xml

    MAKE A BACKUP OF ANY FILE (S) YOU ARE EDITING, FIRST!

    Locate (in/close to the bottom of each file) of the section that looks like:

    index.html

    ...

    Add "YourFilenameHere.ext" to everyone that you want to add.  Specify the first condition you want selected at the top of the list, etc.

    Restart the server see here.

  • CF10 and spreadsheets past CF9!

    Hi all

    10 changed how Coldufsion work interopablity between Coldfusion and ms office?

    I got a code that worked perfectly in CF9.

    He read an xls or xlsx file and deleted some leaves that, if not necessary, and then saved the xls or xlsx

    But now, CF10 with all the xlsx files, I get a null pointer error.

    It seems that when using SpreadSheetRead it always opens the file in xls mode.

    I tried many variations to find a solution.

    I also tried to create a new worksheet with SpreadsheetNew that was created in xlsx mode.

    While I could update the cells and save as xlsx I couldn't read a map of an existing file and add it to this one.

    Is there anyone from Adobe that can shed some light on this?

    Concerning

    Ken Caldwell

    Hi Ken,

    I checked the code on CF10 and it works on my end. The level of update is /C:/ColdFusion10/cfusion/lib/updates/chf10000011.jar

    Kind regards

    Anit Kumar

  • CF9.0.1 + CHF4 and IIS 6 32-bit application pools: question of versions of wsconfig.jar?

    I made an update of the test CF9.0.1 + CHF4 installation and then updated on web servers remote IIS 6, running 32-bit wsconfig.jar application pools. IIS connections to servers remote backend ColdFusion failed; I stepped back to old wsconfig.jar


    Wsconfig.jar that is updated with ColdFusion 9 Update 1 does not work with our IIS6 web 32-bit application pools; older wsconfig.jar [JRun 4.0 (Build 108795) JRun ISAPI Extension - August 29, 2009 11:51:27] work with the 32-bit application pools.

    Question: can I I safely old wsconfig.jar on 32-bit IIS 6 application pools run [JRun 4.0 (Build 108795) JRun ISAPI Extension - August 29, 2009 11:51:27] CF 9.0.1 + CHF4?

    We are running in distributed mode.

    Thank you

    Scott

    Hi Scott,.

    Thanks for posting your request.

    What is your ColdFusion installed as 64 bit or 32 bit?

    Yes, you are right that there is difference of Wsconfig utility 9.0.0 CF and CF 9.0.1. However, you can still use ColdFusion 9.0.1 with 32-bit AppPool. You must make some changes manually to make it work.

    When you create the connector with this utility, and if you're running 64 bit CF 9, you will need to replace the 32-bit dll in the wsconfig folder to your workinig app that uses 32-bit AppPool.

    Article to configure the connector in the distributed environment:

    http://helpx.Adobe.com/ColdFusion/KB/manually-configure-Web-server-connector.html

    Here is an article to create the manual connector with IIS 6.

    icrosoft_IIS_6 http://helpx.adobe.com/ColdFusion/KB/Manually-Configure-Web-Server-Connector-1.html#main_M

    IIS 7 http://www.adobe.com/devnet/coldfusion/articles/iis-configuration.html

    Also, if you are facing issue or doubt please send your query to [email protected]

    Thank you

    Priyank

  • Update from version 9.0.1 to 9.0.2 version

    What I have to go through the procedures of fix or can I run the complete set of ColdFusion 9.0.2 update to version 9.0.1 to 9.0.2? Thanks, Jeff

    Hello sitedev,

    I'm not sure if I understand this clearly. But if you ask, you can upgrade to CF9.0.2 CF8 on an another server-Yes, you can. We recommend that you use the Code http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSc3ff6d0ea77859461172e0811cbec0d04c-7fee.html parser before migrating the server, to solve any kind of problem of compatibility.

    sitedev wrote:

    On another server may 9.02 version upgrade of the package 8 without problems?

    Kind regards

    Anit Kumar

  • How do I restore an update partial version 9?

    Last week, I started to install the fix APSB 12-26. I downloaded the file, unzipped and followed the instructions on this page. I had to enter the console by clicking on the 'i', adding the hf900 - 00009.jar file and clicking on the submit changes"" button.

    I restarted all services.

    For various reasons, which I won't bore you here, I could not go any further with the installation of the patch, so I don't change anything else on our installation of CF9.

    Since, we've had some weird problems with our Web sites, which may have been caused by this partial installation of the hotfix. I would like to uninstall whatever it is only to add the .jar file, but I can't find information on how do it.

    I checked our backups from the day before, I tried the update and the folder now contains the hf900 - 00009.jar file and a file named empty.txt has just the file empty.txt in it. Should I simply delete the .jar file and then click on the "Submit changes" button, or is it more than that?

    As you can tell, I'm a complete newbie when it comes to the administration of ColdFusion, so I appreciate any help you can give me.

    Hi Lewis,

    There are 2 sections and that you mentioned that you have not completed the process of update, then you can simply replace the CFIDE folder and delete the update file .jar file and restart the service to the ColdFusion Application that will do it.

    If you have followed Sections 1, then removing the .jar file, then start it again service restores the update. However if you follow the Section 2, then I need to know if you have to replace the files in the 'lib' folder or not. If you did then it is difficult to reverse, however if you take the backup of the 'lib' folder so you can replace it with this.

    I hope this helps.

    Thank you

    Priyank

  • CF9.0.1 + 2 fixes - CFLOG does not

    Hello, everyone.

    I placed a CFLOG inside a CFC function that updates an article, at the end of the function so that it can connect that updated, the title of the article that has been updated, and a timestamp.

    According to the CF9 documentation, if the named logger does not exist it will be created.

    I "updated" an article several times, and it has not created the journal.  Then, I went into C:\ColdFusion9\logs and created a file called PAALog.log (the name used in the CFLOG tag.)  Update an article several times, the PAALog.log file still shows a size of 0 and the timestamp has not changed.

    Is there a problem with CFLOG?  Everyone knows this?

    V/r,

    ^_^

    I have to assume that this is some sort of problem user rights.  I've never had a problem using cflog.  You have enabled security sandbox?  If so, make sure that the CF has the right permissions.  You have changed the user who is assigned to the service of CF?  If so, make sure that it has the proper rights.

    I guess you don't see any errors in the other papers of CF?

    Put a cftry/catch around your cflog line block and see if it generates errors.

  • CFREE, CFGRID works does not after installation of CF9

    Just installed CF9 64bits and CF9.0.1 update on a Windows Server 2008 R2 box, using the IIS web server.  Everything works fine, but when I try to run. CFM files that contain < CFTREE > or < CFGRID > tags, I get a Java error 'OBJECT NOT FOUND' in IE 8.  And nothing is displayed in the sections CFTREE and CFGRID controls.  I checked the Java x 32 and x 64 are installed and work properly, testing on the Java web site.

    Firefox reports the problem in this way:

    load: class coldfusion.applets.CFTreeApplet.class not found.

    java.lang.ClassNotFoundException: coldfusion.applets.CFTreeApplet.class

    I made a dozen CF 5, 7 and 9 installs on different OS and never had this problem.  However, has been the first time, I installed CF on a Win Server 2008 R2 server.

    Nobody knows what can cause this and I hope a speedy resolution?  Without having to uninstall and reinstall CF.  If Java is installed and works well, what the result of improper installation?

    Would appreciate ideas, suggestions on how to solve this problem.  If the only way to correct one-install/re-install, can BTW, you just remove via Add/Remove Programs, and then reinstall?  Or are the hacks and other registry processes required for disassembly of the CF?  Not sure how 'clean up' the uninstallation must be, since I've had the chance to have having to do a uninstall-reinstall.  Thank you very much for any help or advice.

    Gary

    Problem solved.  Once more, thanks to Google, the only answer anyone having a similar problem could provide, would do an uninstall and re-install.  So I tried this and it worked.  Now the. CFM files that use CFFREE, CFGRID and othe related to Java code, normally.

    However, I just installed CF 9.0and not the 9.0.1 patch.  As a reminder, it was on Windows Server 2008 R2 with IIS 7.5.

    In case anyone cares, when I did the uninstall, I did nothing fancy, no registry hacks.  Just run uninstaller from Add/Remove programs and delete the folder root the C:\ColdFusion9 and all it's content (uninstall program left about 180 MB of files in there), then restarted.  Then reinstalled 9.0.

    I'm almost afraid to install the 9.0.1 patch on Windows Server 2008 R2, since everything works OK.  Because in the previous installation, I ran the 9.0.1 patch just after 9.0 and never tested the CFTREE/CFGRID tags up to version 9.0.1.  So I don't always know with 100% certainty, if it was a bad installation, or something to do with the 9.0.1, version that caused the problem (assumed it was a bad installation).

    If I decide to apply the patch, I will test and post the results here.  I'm sure I will at some point, if for nothing other than curiosity and preferred to have the latest update installed.  If anyone has any ideas on the question of whether the patch on this OS could cause the problem reappears, please let us know.  Thank you.

    Gary

Maybe you are looking for

  • How can I remove optical drive of the Satellite P300-156?

    Hello I just ordered a HD-DVD-R (Toshiba SD-L902A) for my P300-156 drive, but I don't see how I can remove my existing laptop DVD - RW drive. Does anyone know how this can be done without opening the case?

  • HP ENVY DV7-7203SA: problem starting and drive hard smart error

    Hi Ive had problems to start my computer laptop dv7 envy. When I run the diagnostic test on the hard drive get a smart error RU5WJO-6K27T-QFPK1F-60AD03 id C1w33EA #ABU Finally I have to start, but a few times I had a no device found startup, but only

  • How to use a chart control to enter data?

    I have a GUI that contains a chart control.  By making no use of events graphic I was able to add and remove a data point on my chart by clicking the chart control and then handle the event in the vi... no problem.  What I would really like to do now

  • How can I cancel a sales order line quantity in Axapta

    Hi all I use AX 2009. Assume that the command is created with quantity 10 and 10 quantities are picked. Choose list registration is done for the line. How can I cancel 3 quantity for the sales order line. Help, please Kind regards Ramanantsoa

  • [FIXED] VPN problems

    Hello. I'm trying to set up a VPN server on my XP machine at home, in order to circumvent the blocks to internet on my school's network. I managed to set up a VPN server on my laptop with WIN7, but I do not run all the time, so I thought it would be