CVE-2013-0632, Hotfix APSB13-03 for Coldfusion 8 ???

Hello; I have a question regarding the Coldfusion Security Bulletin APSB13-03 for ColdFusion 10, 9.0.2, 9.0.1 and 9.0.
Is this hotfix also availablefor Coldfusion 8.01? We use the Coldfusion 8.01 enterprise version.
Patched on the last available hotfix APSB12-21 -> Security update: Hotfix available for ColdFusion 10 and earlier.
By regulary scanning our systems a finding regarding CVE-2013-0632 was found by the scanners, to resolve with APSB13-03.
Is APSB13-03 available for Coldfusion 8.01? Core support ends 7/31/2012 (the last hotfix for cf 8 wa from 11/2012!)
But extended Support reaches until 7/31/2014.
frank

Thanks;
You wrote exactly my thoughts )
Mit freundlichen Grüßen
Frank Winkelmann
Siemens AG
Corporate Information Technology
Corporate Automation
CIT CA HS 1 4
Hugo-Junkers-Str. 9
90411 Nürnberg, Deutschland
Tel. Geschäftlich: 091145051290
Tel. Mobil: 015254690615
mailto:[email protected]
Siemens Aktiengesellschaft: Vorsitzender des Aufsichtsrats: Gerhard Cromme; Vorstand: Peter Löscher, Vorsitzender; Roland Busch, Brigitte Ederer, Klaus Helmrich, Joe Kaeser, Barbara Kux, Hermann Requardt, Siegfried Russwurm, Peter Y. Solmssen, Michael Süß; Sitz der Gesellschaft: Berlin und München, Deutschland; Registergericht: Berlin Charlottenburg, HRB 12300, München, HRB 6684; WEEE-Reg.-Nr. DE 23691322
Von: Adam Cameron. [email protected]
Gesendet: Mittwoch, 29. Mai 2013 12:29
An: Winkelmann, Frank
Betreff: CVE-2013-0632, Hotfix APSB13-03 for Coldfusion 8 ???
Re: CVE-2013-0632, Hotfix APSB13-03 for Coldfusion 8 ???
created by Adam Cameron.<http://forums.adobe.com/people/Adam+Cameron.> in ColdFusion - View the full discussion<http://forums.adobe.com/message/5361018#5361018

Similar Messages

  • How do you verify hotfix installation for ColdFusion?

    Specifically for hotfix APSB13-10 for ColdFusion 9.0.1, is there a way to verify the hotfix installation other than checking for the updated hf901-00009.jar file or other updated files? Is there a version change that can be seen in ColdFusion?

    Hello Kurt,
    For CF 9.01, Go to {ColdFusion-Home}/lib/updates (for Server installation) or {ColdFusion-Home}/WEB-INF/cfusion/lib/updates (for Multiserver and J2EE installations) directory. If you have the hf901-00009.jar available there, that verifies you have the latest patch is applied.
    Regards,
    Anit Kumar

  • Multiple row insert not working as before after applying hotfix apsb13-13

    Coldfusion 9.01
    Windows Server 2003
    Microsoft Access database (yeah, we know)
    Before the hotfix was applied, we could add multiple rows (anywhere from 1-100 or more) and now we're limited to 15 rows at a time after applying the hotfix. We've narrowed it down to the hotfix being the culprit as we had to rebuild the server not to long after this hotfix was applied (~ 1 month) and the multiple row inserts were once again working fine until we got to the point of applying this hot fix again.
    Anyone heard of this happening? Any ideas how to correct?
    Thanks in advance,
    fmHelp
    Below is code  of how we're doing the multiple row insert (it's performed over 3 pages):
    Page 1
    <cfform name="form1" method="post" action="handler.cfm?page=update_2">
    <input type="hidden" name="sProductID" value="<cfoutput>#qProducts.sProductID#</cfoutput>">
    <table width="100%" border="0" cellspacing="3" cellpadding="3">
      <tr>
        <th scope="row" colspan="2" align="center">Update an Inventory Product</th>
      </tr>
      <tr>
        <th width="42%" scope="row">Product ID</th>
        <td width="58%"><cfoutput>#qProducts.sProductID#</cfoutput></td>
      </tr>
      <tr>
        <th width="42%" scope="row">Friendly Name</th>
        <td width="58%"><cfoutput>#qProducts.sFriendly_Name#</cfoutput></td>
      </tr>
      <tr>
        <th width="42%" scope="row">Description</th>
        <td width="58%"><cfoutput>#qProducts.sDescription#</cfoutput></td>
      </tr>
      <tr>
        <th width="42%" scope="row">Vendor</th>
        <td><select name="sVendor">
          <cfoutput><option value="#qProducts.sVendor#">#qProducts.sVendor#</option></cfoutput>
          <option value=""></option>
          <cfoutput query="qVendor">
            <option value="#sVendor#">#sVendor#</option>
          </cfoutput>
        </select></td>
      </tr>
      <tr>
        <th scope="row">Order No.</th>
        <td><cfinput name="sOrder_No" type="text" value="" required="yes" message="Order number is a required field."></td>
      </tr>
      <tr>
        <th scope="row">Lot No.</th>
        <td><input name="sLot" type="text" value=""/></td>
      </tr>
      <tr>
        <th scope="row">Date Expires</th>
        <td><input name="dtExpire" type="text" value=""/></td>
      </tr>
      <tr>
        <th scope="row">Boxes received</th>
        <td><input name="iBoxes" type="text" value="" /></td>
      </tr>
      <tr>
        <th scope="row">Doses/Units</th>
        <td><input name="pcount" type="text" value="" /></td>
      </tr>
      <tr>
        <th scope="row">Note</th>
        <td><cfoutput>#qProducts.sNote#</cfoutput></td>
      </tr>
      <tr>
        <th scope="row"> </th>
        <td> </td>
      </tr>
      <tr>
        <th scope="row" colspan="2" align="center"><input type="submit" value="Submit" /></th>
      </tr>
    </table>
    </cfform>
    </table>
    Page 2
    <form name="form1" method="post" action="handler.cfm?page=update_3">
    <cfoutput><input type="hidden" name="pcount" value="#FORM.pcount#"></cfoutput>
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
        <tr>
              <td colspan="6" align="left">Record count (Doses/Units)= <cfoutput>#FORM.pcount#</cfoutput></td>
        </tr>
        <tr>
            <td>Product ID</td>
            <td>Vendor</td>
            <td>Order No.</td>
            <td>Lot No.</td>
            <td>Expiration Date</td>
            <td>Num. of Boxes</td>
        </tr>
        <cfset Peoplecount = 0>
        <cfloop index="Add" from="1" to="#form.pcount#" step="1">
            <tr>
                <cfset Peoplecount = PeopleCount + 1>
                <td><input  <cfoutput> value="#FORM.sProductID#" </cfoutput> name="sProductID_<cfoutput>#Peoplecount#</cfoutput>" type="text" id="sProductID_"></td>
                <td><input <cfoutput>value="#FORM.sVendor#"</cfoutput> name="sVendor_<cfoutput>#Peoplecount#</cfoutput>" type="text" id="sVendor_"></td>
                <td><input  <cfoutput> value="#FORM.sOrder_No#" </cfoutput> name="sOrder_No_<cfoutput>#Peoplecount#</cfoutput>" type="text" id="sOrder_No_"></td>
                <td><input <cfoutput>value="#FORM.sLot#"</cfoutput> name="sLot_<cfoutput>#Peoplecount#</cfoutput>" type="text" id="sLot_"></td>
                <td><input  <cfoutput> value="#DateFormat(FORM.dtExpire, 'MM/DD/YY')#" </cfoutput> name="dtExpire_<cfoutput>#Peoplecount#</cfoutput>" type="text" id="dtExpire_"></td>
                <td><input <cfoutput>value="#FORM.iBoxes#"</cfoutput> name="iBoxes_<cfoutput>#Peoplecount#</cfoutput>" type="text" id="iBoxes_"></td>
            </tr>
        </cfloop>
        <tr>
            <td> </td>
            <td>
                <input type="submit" name="Submit" value="Submit">
                <input name="HowMany" type="hidden" id="HowMany" value="<cfoutput>#Form.pcount#</cfoutput>">
            </td>
        </tr>
    </table>
    </form>
    </table>
    Page 3
    <cfquery name="qGetOnHand" datasource="#variables.DSNCI#">
    SELECT        *
    FROM        Products
    WHERE        sProductID = '#session.sProductID#'
    </cfquery>
    <cfquery datasource="#variables.DSNCI#">
    UPDATE        Products
    SET            iOnHandQty = (#FORM.pcount# + #qGetOnHand.iOnHandQty#)
    WHERE        sProductID = '#session.sProductID#'
    </cfquery>           
    <cfset quantity = #FORM.pcount#>
    <cfset Pcount = 0>
    <!-- Start Loop -->
    <cfloop index="Add" from="1" to="#form.howmany#" step="1">
        <cfset Pcount = Pcount + 1>
        <cfset Product = "Form.sProductID_#Pcount#">
        <cfset Product = Evaluate(Product)>
        <cfset Vendor = "Form.sVendor_#Pcount#">
        <cfset Vendor = Evaluate(Vendor)>
        <cfset Order  = "Form.sOrder_No_#Pcount#">
        <cfset Order = Evaluate(Order)>
        <cfset Lot = "Form.sLot_#Pcount#">
        <cfset Lot = Evaluate(Lot)>
        <cfset Expires = "Form.dtExpire_#Pcount#">
        <cfset Expires = Evaluate(Expires)>
        <cfset Boxes = "Form.iBoxes_#Pcount#">
        <cfset Boxes = Evaluate(Boxes)>
        <cfquery datasource="#variables.DSNCI#" name="InsertData">
            Insert into Received_History (sProductID, sVendor, sOrder_No, sLot, dtExpire, iBoxes, dtReceived)
            values ('#Product#', '#Vendor#', '#Order#', '#Lot#', <cfif Expires IS "">NULL<cfelse>#CreateOdbcDate(Expires)#</cfif>, #Boxes#, #CreateOdbcDate(Now())#)
        </cfquery>
    </cfloop>

    Rasi wrote:show your complete default.pa (also make sure that you dont override pulse settings in ~/.config/pulse) this setting should allow sound for ANY user - i just tried it and it works
    also: of course you restarted pulseaudio?
    I restarted pulseaudio and my computer.
    My default.pa is displayed in the first post.
    My files in /etc/pulse:
    > ls -la /etc/pulse
    total 28
    drwxr-xr-x 1 root root 116 May 16 10:22 .
    drwxr-xr-x 1 root root 3740 May 16 10:47 ..
    -rw-r--r-- 1 root root 1269 Mar 3 21:31 client.conf
    -rw-r--r-- 1 root root 2348 Oct 8 2013 daemon.conf
    -rw-r--r-- 1 root root 5756 May 16 10:24 default.pa
    -rw-r--r-- 1 root root 5718 Oct 8 2013 default.pa.pacnew
    -rw-r--r-- 1 root root 2112 Oct 8 2013 system.pa
    -la
    My files in ~/.config/pulse:
    > ls -la ~/.config/pulse
    total 1048
    drwx------ 1 homeuser homeuser 660 Sep 12 2013 .
    drwx------ 1 homeuser homeuser 1054 Apr 24 14:06 ..
    -rw-r--r-- 1 homeuser homeuser 40960 Oct 17 2013 1a8726d55f9140ae9d95dc512eacea67-card-database.tdb
    -rw-r--r-- 1 homeuser homeuser 43 May 16 10:37 1a8726d55f9140ae9d95dc512eacea67-default-sink
    -rw-r--r-- 1 homeuser homeuser 42 May 16 10:37 1a8726d55f9140ae9d95dc512eacea67-default-source
    -rw-r--r-- 1 homeuser homeuser 12288 May 16 10:49 1a8726d55f9140ae9d95dc512eacea67-device-volumes.tdb
    lrwxrwxrwx 1 homeuser homeuser 23 Sep 12 2013 1a8726d55f9140ae9d95dc512eacea67-runtime -> /tmp/pulse-cDmMRoO9oFBz
    -rw-r--r-- 1 homeuser homeuser 12288 May 15 22:43 1a8726d55f9140ae9d95dc512eacea67-stream-volumes.tdb
    -rw------- 1 homeuser homeuser 256 Jun 15 2013 cookie
    -rw-r--r-- 1 homeuser homeuser 331776 Jun 21 2013 equalizer-presets.tdb
    -rw-r--r-- 1 homeuser homeuser 659456 Sep 20 2013 equalizer-state.tdb
    Thanks for your efforts.

  • Does vulnerability CVE-2013-3336 apply to CF8.0?

    The release note was confused.
    Adobe has identified a critical vulnerability affecting ColdFusion 10, 9.0.2, 9.0.1, 9.0, and earlier versions for Windows, Macintosh, and UNIX. This vulnerability (CVE-2013-3336) could permit an unauthorized user to remotely retrieve files stored on a server.

    I think ColdFusion 8 is ignored simply because it is no longer current, and is in fact heading for end-of-life. See Adobe's end-of-life matrix.

  • Cumulative Hot Fix 2 for ColdFusion 8.0.1?

    We've been feeling a little leery about Adobe's stance with
    CF8 for a while now due to the lack of patches and updates compared
    to what we've been used to expecting from Macromedia. We've been
    checking the patch and security pages a couple times a week looking
    to see if there have been any changes. I noticed a change date on
    the CF8 patch page the other day but no new patches showed up.
    http://www.adobe.com/support/coldfusion/downloads_updates.html
    Then today I noticed the date changed again at the bottom and
    now there was a new patch at the top replacing the 2 that were
    there before. Cumulative Hot Fix 2 for ColdFusion 8.0.1
    The patch says it's from 10/20/2008 and if you decompress the
    file it gives a date of 10/17/2008 on the file. This patch was new
    to the public as of this week though. The reason I'm posting is to
    try to understand why this patch has been sitting unreleased for
    nearly 5 months now? There clearly have not been any changes to the
    file in that time frame so that was either the best written patch
    with the most exhaustive testing ever or someones been neglecting
    posting the patches that have been completed.

    @brentil, ah, ok. I understand now. Yep, that is curious. I
    can confirm that it wasn't there on Mar 17, per the Google cache
    page:
    http://74.125.93.104/search?rlz=1C1GGLS_en-USUS291US306&sourceid=chrome&ie=UTF-8&q=cache:h ttp://kb.adobe.com/selfservice/viewContent.do%3FexternalId%3Dkb402604%26sliceId%3D1
    Of course, by the time someone reads this in the future, it's
    possible that the cached page will be different again. One would
    want to note the date offered by Google at the top of the page it
    shows.
    So the real question is why the CHF link was note posted here
    until now. I'm with you that some resources are not always updated.
    I blogged about it:
    http://www.carehart.org/blog/client/index.cfm/2008/7/16/beware_technotes_may_not_be_listed _elsewhere
    Perhaps more dismaying is that the CHF2 technote lists many
    more HFs included than appear in the main hotfix page (the URL you
    pointed to). So one might ask why we should have had to wait for a
    CHF to get those hotfixes.
    Also, I notice that the main cf8 downloads page (which you
    pointed to originally) does not, in fact, refer to the 8.0.1 CHF
    (though it does list 8.0 CHFs). That should be address.
    I agree that we should expect the hotfixes page to list any
    hotfixes or CHFs as soon as they're available. Sorry I missed your
    main point.
    Sadly, I don't know that we can expect too much to come of
    this discussion here. There's just no guarantee that anyone
    responsible would see it. But here's good news. A couple of blog
    entries have raised the concern:
    http://www.creative-restraint.co.uk/blog/post.cfm/coldfusion-8-0-1-cumulative-hotfix-2
    http://blog.pengoworks.com/index.cfm/2009/3/18/ColdFusion-v801-Hot-Fix-2-released-in-Oct-2 008
    And Ben Forta is a party to the second one, where I've just
    added a comment asking to find who we can press about this.
    Finally, just an FYI: that URL you offered is indeed the same
    page that I'd offered. The URL I gave (
    http://www.adobe.com/go/kb402604)
    comes from the "permanent link" offered at the bottom of all Adobe
    technotes, which is just a nice shorter URL.

  • How do I know if security hotfix APSB13-13 has been applied?  My version is 9.0.1.274733

    How do I know if security hotfix APSB13-13 has been applied?  My version is 9.0.1.274733

    With APBS13-13 applied CFAdmin System Information would report:
    Server Details 
    Server Product  ColdFusion 
    Version  9,0,1,274733   
    Update Level  /C:/ColdFusion9/lib/updates/hf901-00010.jar   
    HTH, Carl.

  • CVE-2013-3751 and Instant Client 11.2.0.3

    The README for the July 2013 Database GI Patch Set Update mentions Instant Client Installations needing Database PSU 11.2.0.3.7 to address CVE-2013-3751. Further details on the CVE at http://www.oracle.com/technetwork/topics/security/cpujuly2013verbose-1899830.html#DB say “Successful attack of this vulnerability can result in unauthorized Operating System takeover including arbitrary code execution. “  The Patch README references the Oracle Call Interface Programmer’s Guide and in there I found this relevant section http://docs.oracle.com/cd/E11882_01/appdev.112/e10646/oci01int.htm#autoId37 
    That document spells out the steps required create Instant Client zip or RPM files.  That’s great, but here at my company we haven’t gone through these steps in the past.  We simply go to the appropriate page on oracle.com ( Instant Client Downloads ) and download what we need.
    I’m assuming the vulnerable file is in the “basic” package.  I looked at linux x64 zip today and it has not been updated.
    unzip -l instantclient-basic-linux.x64-11.2.0.3.0.zip
    Archive:  instantclient-basic-linux.x64-11.2.0.3.0.zip
      Length Date    Time    Name
          437 09-17-2011 09:08 instantclient_11_2/BASIC_README
        25308 09-17-2011 09:08 instantclient_11_2/adrci
        46228 09-17-2011 09:08 instantclient_11_2/genezi
    52761218 09-17-2011 09:08 instantclient_11_2/libclntsh.so.11.1
      7955322 09-17-2011 09:08 instantclient_11_2/libnnz11.so
      1971762 09-17-2011 09:08 instantclient_11_2/libocci.so.11.1
    118408281 09-17-2011 09:08 instantclient_11_2/libociei.so
       164836 09-17-2011 09:08 instantclient_11_2/libocijdbc11.so
      2095661 09-17-2011 09:08 instantclient_11_2/ojdbc5.jar
      2714016 09-17-2011 09:08 instantclient_11_2/ojdbc6.jar
       191237 09-17-2011 09:08 instantclient_11_2/uidrvci
        66779 09-17-2011 09:08 instantclient_11_2/xstreams.jar
    186401085                     12 files
    I have 2 questions.
    Q1. If I apply only the database server home patch, will my database server still be vulnerable to takeover if the unpatched Oracle Instant Client from oracle.com is left out on my various app servers?
    Q2. Is there any effort planned at Oracle to replace the vulnerable versions of Instant Client posted on oracle.com with updated versions no longer vulnerable?

    I opened a Service Request with My Oracle Support.  Here is the response.
    Q1 answer:Yes.
    Q2 answer: yes, ETA is next patchset release Q3CY2013

  • JVM for ColdFusion 8

    I am running ColdFusion 8,0,1,196946 on Linux Susi.  I need to upgrade my JVM.  What is the most current version of JDK/SDK that will work with this version of CF?

    According to reference - Upgrade Java for ColdFusion:
    http://helpx.adobe.com/coldfusion/kb/upgrading-java-coldfusion.html
    You can apply any Java minor version.
    CF8.0.0 used 1.6.0_00 and CF8.0.1 used 1.6.0_04. I expect you could install current 1.6.0_37 tho I have not used CF8.0.1 beyond 1.6.0_31 (on Windows 32 bit).
    Prompts the question what about Java 7 since Java 6 is EOL next month (I think Oracle may have pushed Java 6 EOL back to February 2013)? CF10 and CF9 are not supported Java 7 yet however I gather will be supported before EOL. Not aware of CF8 Java 7 support.
    HTH, Carl.

  • Setting up local testing server for coldfusion 9

    I could use some help with this thread in coldfusion forum...
    setting up local testing server for coldfusion 9 w dreamweaver on mac
    http://forums.adobe.com/thread/773350
    thanks

    I'm marking this as assumed answered, as you seem to have solved the problem in the other thread.

  • Unable to install Sharepoint Foundation 2013 in Windows Server 2012 for FIM 2010 R2

    HI,
    I am Unable to install Sharepoint Foundation 2013 in Windows Server 2012 for FIM 2010 R2,
    Before SharePoint Foundation 2013 installation I installed all prerequisite software that is required for SharePoint Foundation 2013 but when we run SharePoint Foundation 2013 setup that gives below error so I am requesting you please help on this.
    Setup is unable to proceed due to the following error(s):
    Windows Server Appfabric is not correctly configured.You should unistall Windows Server Appfabric and reinstall it using the SharePoint Products Preparation Tool.
    Regards
    Anil Kumar

    You really need to do what error is suggesting.
    Windows Server Appfabric is not correctly configured.You should unistall Windows Server Appfabric and reinstall it using the SharePoint Products Preparation Tool.
    Nosh Mernacaj, Identity Management Specialist

  • Outlook 2013 patch of November 12, 2013 makes Outlook repeatedly prompt for credentials

    Hi,
    Since November 12 Tuesday patch day my Outlook 2013 would repeatedly prompt me for credentials on one of my Exchange account. I reported this to our help desk in charge of mail services and they couldn't explain how this can happen as my mailbox was configured
    correctly using Auto Discovery. Deleting and recreating my Outlook profile did not help as didn't further tips found on the net. I could confirm my correct credentials 10 times in a row and the window wouldn't stop popping up immediately again. If I clicked
    cancel, the prompts would reappear after a couple of minutes. This can be hugely disruptive to one's productivity.
    Since I realized all had been fine since that massive roll out of updates, I began to wonder which update exactly may have caused it. My plan was to uninstall updates of that day one by one and to narrow down the culprit.
    My first shot was successful:
    Security Update of Microsoft Outlook 2013 (KB2837618) 32-Bit edition
    When uninstalling this one, another update is removed automatically:
    Update for Microsoft Office 2013 (KB2837643) 32-Bit edition
    That was it. Once these guys were removed, there was finally peace again. But beware! If you have automatic Windows Updates enabled, they are quietly streamed back to your computer in a matter of minutes and the infernal prompts start again. Hence, you basically
    have to turn automatic updates off and then make sure these get not installed again in future.
    At least until Microsoft provides a patch for the patch.
    As a sidenote, I should mention that this problem only occurs for one of my 3 Exchange accounts, all with different companies (none is a Microsoft Cloud-based one). So perhaps it is the interaction of that new update AND some faulty server-side settings that
    are at the root of the problem, really. As I'm no sys admin, I wouldn't know how to figure it out but leave the clues given here to the experts. Very ironically, I never encountered any problems with any of my Exchange accounts on any of my Mac or iOS clients.
    EDIT: In the bugfix description ttp://support.microsoft.com/kb/2837618 they list under known issues: "After this update is applied, you may experience issues with S/MIME certificate verification in Microsoft Outlook. This issue is caused because the update
    disables remote intermediate certificate fetching in Outlook." And then they give you a registry hack to apply at your own risk. I do not know how to decipher this, do "issues with S/MIME certificate verification" give rise to the infinite loop
    of credential prompts?

    With the MS update rollout of 14 January 2014, the new patch to remove manually to maintain normal functionality and not have the above repeated credential prompts is: KB2850061 (Update for Microsoft Outlook 2013), http://support.microsoft.com/kb/2850061
    Otherwise, since that day, the prompts kept reappearing on my computer.
    Please vote up my posts if you find this information useful.

  • Setting Up IIS 5.1 for ColdFusion 9 and Setting Up ColdFusion 9 for IIS 5.1

    Can someone point me in the direction of instructions for setting up IIS 5.1 for ColdFusion 9 and setting up ColdFusion 9 for IIS 5.1

    I Googled "coldfusion 9 iis 5" and the first result is a detailed set of instructions on how to do it.

  • Does latest version of bootcamp installed on late 2013 rMBP put thunderbolt drivers for lacie external thunderbolt/USB 3.0 drive?

    does latest version of bootcamp installed on late 2013 rMBP put thunderbolt drivers for lacie external thunderbolt/USB 3.0 drive?
    I am wiping my current windows bootcamp partition and reinstalling windows using disk utility /bootcamp wizard to clean up and reinstall.
    just curious if the Thunderbolt drivers get installed from bootcamp/windows sofytware update as I can't remember iif i had to do it manually before. I do see it shows up on windows side in device manager and if it is pluggged in during boot screen (to windows 7 pro 64 bit) shows ASMedia drivers being loaded for it.
    Thanks

    thank you so much I was pretty sure it did but wanted to be 100% sure as purpose of clean install was to clean up some mishaps I did with office 2007 (custom install), etc.
    Many Thanks

  • Looking for ColdFusion guru in Denver area

    I need a ColdFusion programmer with content creation, cfc, and SQL experience to refer as back-up in case something happens to me. This is for a potential web site I will build for a professional association that has multiple chapters. Preferably, I need someone who is physically located in or near the Denver, Colorado, metropolitan area.

    Go to guru.com and search for Coldfusion Denver

  • New Platform Support for ColdFusion 10 and ColdFusion Builder 2.0.1: Windows 8 and Windows 2012 Serv

    Microsoft Windows 8 and Microsoft Windows 2012 server are now supported platforms for ColdFusion 10. The new Windows installers are available for download to all retail and licensing customers as well on the trials download page.
    The ColdFusion Builder 2.0.1 installers have also been updated to support Windows 8. The existing MAC OS X installer for ColdFusion Builder 2.0.1 has also been certified to now support MAC OS X 10.8.
    Refer this technote for more details about the support.

    @Adam @CarlV
    >what's the version number when you dump the server scope?
    ColdFusion Server - Evaluation 10,0,8,284032
    OK I see, the I button reports differently to Settings Summary.
    About ColdFusion »
    System Information 
    Server Details 
    Server Product  ColdFusion 
    Version  10,0,8,284032 
    Tomcat Version  7.0.23.0 
    Edition  Enterprise (Trial)   
    Serial Number    
    Operating System  Windows Server 2012   
    OS Version  6.2   
    Update Level  /D:/ColdFusion10/cfusion/lib/updates/chf10000008.jar   
    Server Settings > Settings Summary
    System Information 
    Server Details 
    Server Product  ColdFusion 
    Version  ColdFusion 10,284032 
    Edition  Enterprise (Trial)   
    Operating System  Windows Server 2012   
    OS Version  6.2   
    Update Level  /D:/ColdFusion10/cfusion/lib/updates/chf10000008.jar   
    Adobe Driver Version  4.1 (Build 0001)   
    Regards Carl M.

Maybe you are looking for

  • Create task from conversation thread in news feed - Task must be created in custom task list

    Hi All,<o:p></o:p> Have a new requirement were user should be able to create a task for himself from a conversational thread in News feed.<o:p></o:p> In SharePoint 2013 we have a functionality where we can follow up on a conversation and it creates a

  • This font is shown in garbage characters in  PDF

    Hello PDF Gurus, We are having a very unusual problem which causing level 1 support alarms. It's very simple. We have a PDF which uses a Sinhala Font called FM_Bindumathi.TTF. It can downloaded from here http://www.fonts2u.com/download/fmbindumathi-x

  • Getting Core dump on getting environment variable

    I first found this problem trying to display my GUI in jdk1.5.0_05. I have located it to be core dumping in the JNI C code for getting the envrionment, specifically Java_java_lang_ProcessEnvironment_environ. I wrote some test code to just call System

  • UCCX 7 - Change alert threshold for disk space

    We record every call into our UCCX 7 platform which makes my backups quite large. This causes an alert every night when the backups run from CRSAdmin stating that the server is running low on disk space and needs at least 40 GB free for B&R to run. I

  • Problem in creating Datafile

    Hi all, I am doing some kind of testing in my test maching and I faced the following situation. I have a good control file and all the archives starting from the 1st scn. Now I brought down the instance and physically deleted a datafile and tried bri