『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
The official community for ColdFusion.
新着順
Hi AllI have a strange problem here and am hoping for a solution.Previous setup CF9 and IIS7. At a lower level folder I enabled Windows Authentication.All I needed was the auth_user value.This worked well.I have now upgraded to CF10 and the windows authentication no longer works.I have seen the post from kevlarhttp://forums.adobe.com/thread/1031711But no matter how many time I set these nothing happens.So, at present I have both CF9 and CF10 running so that I can test this.The CF9 site with windows auth set works while the CF10 one does not.Is there something in CF10 that is blocking this?RegardsKen
I have a few PDF documents in which i have repaeting data's. i would like to extract the spoecific data i want and send it to a .csv or spreadsheet.E.g PO no. 17638765213For the above i just need the number which is coming after the word PO. How do i work and get it done?
OK, even though I'm pretty new to OOP, I've been doing great things and coming to levels of comprehension with it at a pretty amazing rate. My backend is CF10 (dev), MS-SQL 2012.How I used to get data : Before, I would create a CFC with a method like "executeSQL" and then I'd pass it some parameters, one of which was the name of a .SQL file that was subsequently loaded, executed and then the method would return the results to the caller. I could pass it structures full of dynamic values in the event I wanted to pass "parameters" into the script so that it was dynamic.How I should get data: This is where I'm stuck. I am familiar with Beans, Gateways and Services, but not to the extend or interacting with Data. In my research, I hear people refer to Beans as singular records of data and Gateways as handlers of recordsets of data. So let's use a blog post for example.Post.cfc (Bean) - Represents a single blog post. Used to perform CRUD-related functions
I have a client who is still running on CF5. Is it still possible to get a license for CF5?
We have just recently went to try CF10 on Server 2003. I unistalled CF7MX and installed CF10, Server Configuration.When I attempt to open the site for admin i get a 500 error. Looking at the logs, I see the following error: Could not load ISAPI filters for the site/service.Anyone have any ideas what could be causing this.I have run the wsconfig.exe and added the default site.I also get this error: The HTTP Filter DLL C:\ColdFusion10\config\wsconfig\2\isapi_redirect.dll failed to load. The data is the error.THanksBroc
I already have a very complex dynamic query the displays a list on the webpage. Now I need to pass this result set as object or csv or xml to CFR and produce a report.how to do this?
Hello,We currently have a document system that is controlled by coldfusion. Basically, all the documents (ie pdf, xls, doc) reside in a directory on a server specifically designated as a fileshare server. The web server(s), which runs coldfusion 9.0.1 sit on the same network as the fileshare and the coldfusion app is set up using a domain user to access the fileshare. We access the fileshare using the cffile tag, save a copy of the document on the local webserver and then pass it down using the cfcontent tag.To tighten security, we want to move the fileshare into a different domain, once we do that we won't be able to use cffile to access the server since it will be in a different network domain. What options do we have to access the file share? Will we have to do something with cfhttp or cfftp? I am concerned that using either will cause performance hits compared to what we do now. Any advice would be helpful.ThanksScav.
Hi ,I am not able to find HP-UX on the support matrix for CF10.Is it supported ?
How does you determine what updates are installed on teh server running CF9?Does version in teh administrator stating: 9.0.2.282541 mean update 9.0.2 is installed?
We are in the process of gradually implementing REST services for our web application new design. Currently, the application is in old procedural style type app. The new app will be in html5 with back end implemented in CF10 REST api calls to cfc`s returning JSON formatted objects.We need to pass SESSION variables to the REST cfc's through jquery calls. Is there way to avoid putting SESSION variables as arguments to jquery calls? Perhaps, to map to a function...? All the REST cfc's are located in the web root of Coldfusion10 so, SESSION scope is not accessible to REST cfc's.I know that REST is stateless but, we can not get away from SESSION so, we need to know if there is a solution to this.Thanks,Gena
cf 10 installed on new iis 7 server when i add a value to the url it produces page cannot be displayed. It works fine with old cf 9 on different server.
Hi everyone,I have coldfusion code saved in a database record. When i run a query it shows me the content of the database records but it doesn't execute it .. is there any issue to execute the query result ? Thanks
Hi,I'm running CF10 on SLES11 (Linux) and am experiencing a problem when using Filenames with German umlaut characters (ä,ü,ü etc.) for the outputFile attribute. These filenames are mangled in the Linux filesystem, e.g. "Anästhesie" becomes "An?sthesie".Same thing happens when umlaut characters are used with "cffile action='write'" in the file attribute, so it is not an option to write the output of cfexecute into a variable and then write the content of that variable to a file using the cffile tag. I'm pretty sure this is a character set encoding problem, but don't know how to solve it. AFAIK, CF10 uses UTF-8 encoding by default, the filesystem uses ISO-8859-15. How can I make CF store the correct filename in the filesystem? The filenames are the result of a database query and should remain unchanged so the database reference isn't broken. I'd prefer not having to resort to converting the filenames to pure ASCII (e.g. ä -> ae)before passing them as outputFile attribute.Regards, Ric
Hello, to all.I am having a confusing situation occurring when I am working with two cffile processes. The second cffile(rename) negates the first cffile(upload) makeunique attribute. I will try to explain and then provide a copy of my code.The first cffile process uploads a file to a given folder and if the files does exists, adds a sequential number to the end to make it unique, which is what is expected. Right after this cffile(upload) process I capture the uploaded file name with #cffile.serverfile# and then perform a lcase(replace("#cffile.serverfile#"," ","_","ALL")) to replace spaces with underscores and convert characters to lower case. All is functioning as expected at is point in the process.I then insert the second cffile(rename) renaming the original uploaded file with the new lcase(replace) converted file and this is where the weirdness begins. On the first process of uploading a file, process completes as expected and the file in the folder is now the converted file
ReferenceError: Error #1069: Property CLICK not found on flash.events.MouseEvent and there is no default value. at play_stop_reset_fla::MainTimeline/resetgame_f2()[play_stop_reset_fla.MainTimeline::frame2:92]what should i do?import flash.events.Event;import flash.events.MouseEvent;stage.addEventListener(KeyboardEvent.KEY_UP, f2);function f2(e:KeyboardEvent):void{ if (e.keyCode == Keyboard.BACK) { NativeApplication.nativeApplication.exit(0); }}var object_speed:int = 6;stop_play.addEventListener(MouseEvent.CLICK,play_pouse_controler_f2);function play_pouse_controler_f2(evt:MouseEvent){ play_pouse_index *= -1;}stop_play.addEventListener(Event.ENTER_FRAME,play_pouse_f2);function play_pouse_f2(evt:Event){ if (play_pouse_index==-1) { stop_play.gotoAndStop(2); helicopter_enemy.removeEventListener(Event.ENTER_FRAME,move_helicopter_enemy); borjak.removeEventListener(Event.ENTER_FRAME,move_borjak); tank_mc.removeEventListener(Event.ENTER_FRAME,move_tank_mc); }
Are each of the 15 ColdFusion Enterprise licenses we own a 2-CPU Production Software License? (Covering 30 CPU’s regardless of cores), or a per CPU license?
I installed and reinstalled both the OS and ColdFusion10 several times. My default page (index.cfm in the root directory) is giving me a CF 404 Error Page with the message: The page you are trying to access could not be found. Please try again or notify the administrator. A view at the source code suggests it's a CF custom page, and not an IIS page.I have the jakarta virtual directory, as well as the CFIDE virtual directory. In fact, the Coldfusion Administrator comes up without a hitch. All the updates for both CF10 and the OS have been installed. I've uninstalled and reinstalled the site using the web connection tool more times than I can count and I've even copied content manually into the files in the config/[magic number] folder. I've also loosened the security settings on the config folder to allow IIS_IUSRS access. Still no dice. I've enabled the ApplicationPool my default web site is using to run 32 bit applications. N
Is it possible to set up a 2013 server running IIS and cold fusion 9 to do "Forms Authentication" and set the cgi variables, primary all we just need is the cgi.AUTH_USER , we can not use web auth to do this for this project , the users we are authenticating are not on out network but only exists in a sql database and a juniper ras server, second thought is there a way to set the cgi variable. just to explain further we have two servers one server is internal to our network which we do use WEB Auth. the other server is for some users outside of our company so beeing that they have no ntlogin we cant validate them.to get the users in we have to turn on web auth on the box and add a local user to the box, the problem is if this box goes down we lose the users , we want to have the users off this box, we cant add the users to Active directory because it is a security risk. Thanks in advance for any advice or solution,Brad B
I have been trying to edit existing ColdFusion files now that I am signed up to Creative Cloud. Dreamweaver CC has had all ColdFusion support removed. Even opening a ColdFusion file is annoying. I can only open it by right clicking in Finder. Checking "always open with" does not work.The solutions on the DreamWeaver team blog were to install ColdFusion Builder, not included in Creative Cloud, or to install Dreamweaver CS6, no longer an option in Creative Cloud.I assume that this is the end of ColdFusion as far as Adobe is concerned. Mind you I assume they also think that ASP and ASP.Net are no longer valid as they are no longer supported either.
When I send a text formatted email using CFMail, Coldfusion 10, I am seeing an extra blank space at the beginning of the message body. When I capture the .cfmail file from my spool directory, it looks like this in part:bcc: dale@realgo.comreplyto: dale@realgo.comsubject: 2 listingsX-Mailer: ColdFusion 10 Application ServerList-Unsubscribe: <http://overlord.dev.realgo.com/go/B3ANTR4IHSUB>X-Receiver: dale@realgo.com,dale@realgo.comMIME-Version: 1.0Content-Transfer-Encoding: 7bitbody: $Prospective Buyer,body: body: RealGo, Inc.body: body: body: For a detailed view of these listings including all photos, visit this link body: body: Residential-Detached Listingsbody: body: SRC MLS # PRICE $ BD BA SQFT LOCALE
Hello,we have the following configuration:S.O. : Red Hat Enterprise Linux Server release 6.5Apache : 2.2.15Coldfusion 10 Standard update 12SElinux disableIptables disableConfiguring / etc / httpd / conf / mod_jk.conf# Load mod_jk moduleJk_module LoadModule " / opt/coldfusion10/config/wsconfig/1/mod_jk.so "# Where to find workers.propertiesJkWorkersFile " / opt/coldfusion10/config/wsconfig/1/workers.properties "JkMountFile " / opt/coldfusion10/config/wsconfig/1/uriworkermap.properties "# Where to put jk logsJkLogFile " / opt/coldfusion10/config/wsconfig/1/mod_jk.log "# Where to put jk shared memoryJkShmFile " / opt/coldfusion10/config/wsconfig/1/jk_shm "# Set the jk log level [debug / error / info]JkLogLevel info# Select the timestamp log formatJkLogStampFormat " [ % a% b % d% H:% M: % S % Y ]"AddHandler jakarta- servlet. Cfm . Cfml . Cfc . Cfr. CfswfIn the log / opt/coldfusion10/config/wsconfig/1/mod_jk.log observe the following errors:[ Tue Dec 03 10:29:53 2013] [ 3754:140076806252512
ProblemEven though a task fires on it's shceduled runtime, the pertinent HTTP access log for the target URL show that the actual HTTP request is not until roughly 10-15 minutes later (consistantly.) DetailsThe issue is occuring with all tasks. I have no "misfire" logic setupIt is consistant and has eben happening since inception. ConclusionAny help would be greatly appreciated. Also if anyone needs anymore information please let me know.
We have ColdFusion 10 installed on Windows Server 2008 with IIS 7.5.We are running one additional instance of Coldfusion seperate from the cfusion instance but on the same physical server. Our scheduled tasks, on this instance, had been running without any problems for quite some time now. Suddenly about 3 weeks ago after a server reboot our tasks stopped running. We have tried everything including writing the output to a log file. The only thing that gets written to this log file is "Connection Failed".Driling down into some of the other CF logs we are seeing that the job is getting triggered and then the job starts but it never gets completed.Nov 6, 2013 16:01:00 PM Information [DefaultQuartzScheduler_Worker-6] - Task DEFAULT.sampleTask triggered.Nov 6, 2013 16:01:00 PM Information [DefaultQuartzScheduler_Worker-6] - Starting HTTP request {URL='https://ru.ryerson.ca:443/ryecast/myTask.cfm', method='get'}The weird thing is that if we create the same task in the instance manager (cfusi
I have moved my code to my new coldfusion 10 server (From coldfusion 9) and now CFPDF does not seem to work properly. I am inserting a png file with a transparent background and now that backround is rendered as solid black on the pdf. I have opacity set to 10 as this is a foreground logo.The really strage thing is that NOTHING changed in the codebeen researching all day and cant find anything on thisthis is a real work stopper here,
Some of our coldfusion sites are being redirected to a mulberry site when someone does a google search. Is there a way to prevent this? How are they doing it in the first place? It look like this code is being inserted into the index.cfm:[ code removed - do NOT post the contents of hacked sites on this forum!! ]
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.
申し訳ございません。このファイルは、ダウンロードしても安全かどうか、内容を確認中です。数分後にもう一度お試しください。
申し訳ございませんが、当社のウイルススキャナは、このファイルをダウンロードすることは安全ではないと検出しました。