『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
The official community for ColdFusion.
新着順
Hello,Here is my server- Windows 2008 Server R2 Ent- IIS 7.5- ColdFusion 10CF10 installation ran smoothly, the wsconfig seems to have created all necessary stuffs like :ISAPI filter : tomcat C:\ColdFusion10\config\wsconfig\1\isapi_redirect.dllISAPI restriction authorized : tomcat_all C:\ColdFusion10\config\wsconfig\1\isapi_redirect.dllindex.cfm added in Document by default, placed at first place up in the listcfide, jakarta virtual directories created, etc..Everything is running ok EXCEPT that IIS is unable to server index.cfm as a directory default page :- this generate an error : http://www.example.com/ (to simplify, index.cfm is the only page in root directory)- this doesn't generate an error and serve the index.cfm page correctly : http://www.example.com/index.cfmError 404.2 is talking about (in french)"La page que vous avez demandée est introuvable en raison des paramètres de la liste des restrictions ISAPI et CGI du serveur Web."`I don't see anything special in ISAPI/CGI restrict
Hi I have a simple application that uploads an image and resizes it if its too large. It works great on all browsers apart from IE (testing in IE8). When I disable the resize code, it works ok. If I leave the imageresize code in I receive a 'Internet Explorer cannot display the webpage error'. Does anyone have any idea what is causing this or how to find out more about the error?The resize code is below:if (myImageInfo.width < maxWidth) { ImageResize(myImage,maxWidth,""); myImageInfo=imageInfo(myImage); if (myImageInfo.height<maxHeight) {  
Hallo,after Installation of CF10 on 4 Serversystems (Windows 2003R2) the CF-Application Service hangs from time to time and must be restart.Is there anaybody with an idea for the reasen?The Installation of the Mandatory Update and CF10 Updates 1+2 produce another problem. The Installation runs succeeded but the CF Versionsnumber didn't change from version 10,282462 to version 10,282913.
Hey EveryoneI have been pulling my hair out for several days with this, I have all of the Adobe ColdFusion 9 dev books, and Google returns a cluster of information that doesnt seem to work. I was hoping someone could help me out here.So what I did was open query builder in Adobe ColdFusion 9 Report Builder, I clicked the icon at the top that says report query and placed the following mySQL information, which works fine.MySQLselect name.soc_sec, name.last_name, name.first_name, nmcrs.course,nmcrs.crs_txt AS Course_Title ,practicl.day_cod,CAST(practicl.start_hr AS VARCHAR(2)) + ':' + CAST(practicl.start_min AS VARCHAR(2)) AS Start_Time, CAST(practicl.end_hr AS VARCHAR(2)) + ':' + CAST(practicl.end_min AS VARCHAR(2)) AS End_Time, nmcrs.section, nmcrs.sch_yr, nmcrs.sm_desc, nmattend.attend_txt,address.phone,address.cell_phone, address.e_mail From name --INNER JOIN nmprg ON name.soc_sec = nmprg.soc_sec &n
I installed ColdFusion 10 on Windows 7 Ultimate with IIS already running. Everything seemed fine except when it tried to launch the adminstrator page on completion. I get an Error 404. I have tried running the IISConnector.bat file and no joy.Any ideas? HELP.Nathan Manning
I'm not sure why I can't understand how categories work within Verity, but the documentation isn't helping much, and web searches are yielding anything either.Here's what I'm doing; I have a folder that contains a few subfolders...in these are PDF files. I have a collection setup that recursively indexed all documents, and allows me to search for them, no problem. This works.What I'd like to do is create categories in this collection that correspond to the folders the files are in. For example, the structure could be:Main Folder -Folder 1 -Folder 2 -Folder 3 -Folder A -Folder BSo the category names would be Folder 1, Folder 2, Folder 3, etc.So when I search, I can allow the users to select checkboxes to search only certain categories.My question is, how do I do this when I re-index the collection? Am I going to be forced to create a separate collection for EVERY categ
Hi All, I'm attempting to use a CFC/Event Gateway to get the filename of a file that has landed in a directory. What I'm getting instead is the full path with the filename.<cfcomponent> <cffunction name="onAdd" access="public" returntype="void" output="false"><cfargument name="CFEvent" type="struct" required="true"><cfset var data = arguments.CFEvent.data><cfset var filename = arguments.CFEvent.data.filename></cffunction></cfcomponent>I know that the above code isn't complete, but I think it's what 'counts' here.The value that I'm getting back for the 'filename' variable is similar to this:C:\WebSite\Some_Directory\Another_Directory\filename.extWhat I want is just the filename (filename.ext) part of that line.It appears that arguments.CFEvent.data.filename doesnt do it, and I've tried all kinds of combinations like 'filename', 'serverfile.filename', 'data.filename' and so on, but I must just be missing it.I found a workaround for wh
Hi AllI hope someone can help, as I have been struggling with this issue for a few days. If I have missed any useful information off of this post, please ask and I will try to supply.I am trying to call a web service, but contantly receiving the error: "{http://springframework.org/spring-ws}ValidationError:cvc-elt.4.3: Type 'xsd:long' is not validly derived from the type definition, 'idField', of element 'documentId'."An example of the call to the webservice is:<cfscript> getDocumentAsPdfRequest = structNew(); getDocumentAsPdfRequest.documentId = 12017988; getDocumentAsPdfRequest.ignoreUnsupportedConversion = 0; ws = createObject("webservice", "#wsdldocumenturl#"); ws.setUsername("#wsdlusername#"); ws.setPassword("#wsdlpassword#"); myresult = ws.getDocumentAsPdf(getDocumentAsPdfRequest);</cfscript><cfdump var="#myresult#">the webservice definition is:getDocumentAsPdfRequest type getDocumentAsPdfRequest Returns the document as a pdf if possibledocumentId type idF
For security purposes, I keep my site's images outside of wwwroot in this folder: C:\extSite\stdImages\storeThen I created a mapping in wwwroot\WEB-INF\jrun-web.xml like this: <virtual-mapping> <resource-path>/extStdImages</resource-path> <system-path>C:\extSite\stdImages\</system-path></virtual-mapping>My store.cfm page has this: <img src="/extStdImages/store/#photoFilename#" />The works fine on my dev site, but I just deployed to production where it does not work -- the images don't display.Can anyone help? Thanks in advance!PK
We are looking at setting up our CF10 server such that each application will be in its own instance, and allowing the developers access to their own instance. Is there any way to start and stop the instances from within the instance? We are hoping that there is some way to do this without logging into the cfusion administrator to manage the restarts of each instance. We are installed on Windows.Thanks!Jenn
Googled this for several hours, hope I'm missing the obvious as usual...I'm using CF9 and IIS7. Followed/tailored simple autosuggest code from Ben Forta. Came up with HTML:<cfinput type="text" name="Employer" size="50" autosuggest="cfc:employer.lookupEmployer({cfautosuggestvalue})">and a CFC named employer.cfc in the current template folder:<cfcomponent output="false"> <cffunction name="lookupEmployer" access="remote" returntype="array"> <cfargument name="search" type="any" required="false" default=""> <cfset var data=""> <cfset var result=ArrayNew(1)> <cfquery name="data" datasource="Binkley"> Select lname &n
This question was posted in response to the following article: http://help.adobe.com/en_US/ColdFusion/10.0/Developing/WSc3ff6d0ea77859461172e0811cbec22c24-7feb.html
Good day,Im trying to install coldfusion 10,(also tryied 9) on kubunu 12.10.I have installed many times on 12.04 and before.When installing when i try to add apache web config and i get to this question.Which directory contains your Apache configuration file (httpd.conf)? (For example, on Red Hat Linux it could be located in the /etc/httpd/conf directory if you installed from an rpm, or for SuSe Linux, it could be in /etc/apache2) Directory: /etc/apache2 Invalid path to configuration directory (the path does not exist or does not contain the configuration file). Which directory contains your Apache configuration file (httpd.conf)? (For example, on Red Hat Linux it could be located in the /etc/httpd/conf directory if you installed from an rpm, or for SuSe Linux, it could be in /etc/apache2)However the problem is that /etc/apache2 i
I converted some XML into a query (just two columns - a date and description). If I cfdump my query, I get the following:DescriptiontheDateabc{ts '2012-11-05 00:00:00'}cde{ts '2012-11-06 00:00:00'}efg{ts '2012-12-04 00:00:00'}ghi{ts '2012-12-01 00:00:00'}What I want to do now is just a simple query to get the records with a date >= today's date.<cfquery name="datetest" dbType="query">SELECT * FROM myqueryWHERE theDate >= now()</cfquery>This of course does not work. When I created the original query represented by the table above, I did:<cfset myquery = QueryNew("theDate, description", "date, varchar")>I'm hoping this is just a simple syntax issue, but I really need to be able to do date comparison in my query of a query. Any help?
I'm writing a cftry/cfcatch to handle a RequestTimedOutException error that has happened a few times and we cannot replicate on demand. I want to write a catch that will notify me when it does happen -- is there any way to test my code by forcing a timeout error?
Hello,We have just recently upgraded our site ColdFusion 9. We are also on IIS 6. Before we performed the upgrade, we switched IP addresses between the production server and a clone server. Traffic would temporarily go to the clone server while we performed the upgrade on the production server. Once the upgrade was done. We wanted to revert the IP addresses back so traffic can start going to the production server. Strangely visitors were not able to reach the site on the production server. Our system administrator had thoroughly and repeatedly verified that the IP address and DNS settings are correct as well as the settings on IIS management. His conclusion is that the upgrade of ColdFusion has something to do with this issue.Has anybody ever come across such an issue? If so, how did you get around it? Thanks.Best regards,Chung Lee
I bought CF Builder back on 8/31. Installed it and I'm fairly certain I entered the serial number for it. But now it just told me that my trial period has expired and it is in limited-use mode. When I select the registration option from the Help menu, nothing happens. What's going on here?
I just installed CF 9.0.2 on Windows 7 Ultimate x64, and I am getting a 404.3 error when I try to access the CF Administrator. I did turn on ISAPI Extensions and IIS Metabase/IIS 6 configuration compatibility. Here's the error I'm getting when I try to access the admin:HTTP Error 404.3 - Not FoundThe page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a MIME map.Detailed Error InformationModuleStaticFileModuleNotificationExecuteRequestHandlerHandlerStaticFileError Code0x80070032Requested URLhttp://127.0.0.1:80/CFIDE/administrator/index.cfmPhysical PathC:\inetpub\wwwroot\CFIDE\administrator\index.cfmLogon MethodAnonymousLogon UserAnonymous
Anyone know the Regex to find if a variable contains a word eg this var has "Surplus Percentage Total in the Amount of $2000.00"So I need to know it contains the word 'Percentage'?Here is my codecfset xyz='Surplus Percentage Total in the Amount of $2000.00'cfset foundword= REFind('Percentage', xyz)The above is not working
Yep, I'm maintaining a Flash type cfform that was authored a few years ago. The application is on CF9 now.How can my application sense when a user has keypressed within a CFGRID cell?I've introduced a change event listener to the cfgrid via the onchange tag attribute. The event fires when the mouse clicks within any cell.But keyboard navigation or individual cell keystrokes to not trigger a change, even when traversing to another cell via Tab or Enter.I've also tried using the keyDown event, but that is only triggered when navigating the overall grid. It does not fire when a cell has focus - the user is typing within it.keyUp doesn't work either, nor does keypress, keydown, keyup or any of my other exhaustive deriviation attempts. I've tried to locate a complete list of AS 2.0 event names, but have had no luck, even within Adobe's own pdf docs. If anyone has an example from their own personal museam, I'd love to see it.Did I mention that this is a Flash cfform? Thought so...
I have been looking all over the coldfusion forums (here and on the net) and it seems this is an ongoing problem with the <cfselect> not being able to validate even though the option is there. Plus it also shows that it available on the adobe cf9 docs that i use for reference, but doesn't wok unless you change a file on the server (according to a solution is found on the net), and we all know not everyone is going to be allowed to rewrite a file on "their" server to make it work. Anyone know or even have an idea why this has been a problem for this long and hasn't been fixed? Some of the forum posts have seen date back a couple of years.
I've upgraded from CF9 to CF10 on a Windows IIS6 box.CF seems to run, however:1. the default document is not working (an url without "/index.cfm" is not working, adding "/index.cfm" solves the problem).2. all url's seems to have become case sensitive, which breaks almost every single app I've build.I already have re-applied the IIS connector and I've installed all the latest patches.What now?
This question was posted in response to the following article: http://help.adobe.com/en_US/ColdFusion/10.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7ed3.html
As usual, every time I go to install a new Version of CF it never installs. This time, I have installed it, got .ASP net error out of the way. And IIS7 seems to look exactly the same as on another development box. (Except that's running 9)So I have the directory mapped properly, and can see it in CF. But I get ... HTTP Error 404.3 - Not FoundThe page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a MIME map.What I do notice is that in neither box do I see .cfm listed as a MIME type.When installing CF I did tell it to install as non IIS as IIS was not correctly installed and cannot tell now if it using built in web server, or IIS7. Went to uninstall and reinstall as IIS but it would only let me reinstall as JRUN as it detected CF already installed and I cannot figure out how to uninstall if I wanted to. Probably a quick fix? Thanks.
Running CF9 64-bit on Win Server 2008 R2, and all my Oracle connections have SIDs. Just got a new Oracle DB that I need to connect to, but doesn't have a SID, it has a Service Name. Was unabl to connect using the default ORACLE connector in CF9. Have read thru messages, but am still not clear on how to add an Oracle server with a Service Name and not a SID. Would appreciate any help/advice on the correct syntax for using OTHER, if this is the best (or only) way to add this type of Oracle DB connection.I've successfully added OTHER connections for Teradata and IBM-DB2, but I knew that was the direction to go, and was able to obtain the info, syntax, etc. for creating these OTHER (JDBC) connections. Thank you.Gary
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
すでにアカウントをお持ちですか?ログイン
アカウントをお持ちではありませんか? アカウントを作成
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.