The official community for ColdFusion.
Recently active
Hello all, We just recently added a new Coldfusion Enterprise 2018 server to our mix ( IIS 10 ) and are getting 404 errors on .cfr ( coldfusion report files ). I searched this community ( and google ) but could not find any answers. Does anyone have any help here? I know that report builder is depreciated but should still run. Thanks, Dave
Hi ,i've 4 gateway instance (in cf 2016) to send SMS via SMTP, i would like to build a "Back Office" interface to monitoring this and know if they are running or not, without use CF Administation .It's possible ?If Yes in wich mode ?Thank's to everybodyGM
Greetings,I'm having a hard time all of a sudden trying to install ColdFusion on my refreshed Windows 10 machine. I've never had any issues before and all of a sudden, can't get the installation to finish. I've tried CF10, CF 2016, and CF 2018, all erroring out when starting the install.I'm running out of options as I can't find anything on Google that points to a solution for this issue. I had this working fine before my machine was refreshed from Windows 7 to 10. I installed java latest update of 8u231 and also java JDK 13.0.1, thinking that would help since this appears to be java related. I'm not sure if i'm missing another java related files but this error isn't clear on what it needs to continue. I'm including screen shots of the error messages from each ColdFusion version I've tried to eliminate any possiblity of version issue (CF10, CF 2016, & CF 2018)If anyone has any tips on how to fix this, I would greatly appreciate it.
Hi All,I am hoping for recommdations on ColdFusion hosting. We have a web application that currently averages around 500 simultaneous users. We expect it to expand rapidly once we begin marketing the product. Any suggestions?Thanks in advance!- Shawn
What are the recommended APIs to use with CF Developers edition?
recently i have tried to install lockdown on CF2018 on rhel 7 VM. i am able to install lockdown without any errors and able to start apache (2.4.*) after resolving selinux issues. after a day passed apache started failing and i got to know that reloading apache is failing. when i tried reload manually on the apache process that is running it is making apache down but not able to bring up. this is not selinux issue as i have already applied all the rules needed for selinux. i have observed this error message on apache logs after reloading. [Tue Nov 12 06:37:40.475509 2019] [core:notice] [pid 25355] AH00094: Command line: '/usr/sbin/httpd -D FOREGROUND'[Tue Nov 12 06:37:40.475523 2019] [mpm_prefork:debug] [pid 25355] prefork.c(1005): AH00165: Accept mutex: sysvsem (default: sysvsem)[Tue Nov 12 06:37:40.476176 2019] [proxy:debug] [pid 25360] proxy_util.c(1843): AH00925: initializing worker proxy:reverse shared[Tue Nov 12 06:37:40.476209 2019] [proxy:debug] [pid 25360]
We have upgraded our application recently from CF10 to CF2018 Update 5. Apart from the JS library changes, we are seeing performance relevant issues. The time to load has increased exponentially. e.g. the ext-all.js is taking around 10-30 secs to load on different servers. Even a simple image would take 2-5 secs load. If someone could help me here. Thanks in advance
Hi, I have a new website on CF2016 Enterprise. Its returning 500 - Internal Server Error when browsing .cfm pages. seems to be okay for .htm The new second wesbite is my first time installing a second website on a CF server running mutliple CF servers which may be compunding the problem. The website that is working does have a jakarta VD pointing to: C:\ColdFusion2016\config\wsconfig\2The website that does NOT work has a virtual directory is pointing to C:\ColdFusion2016\config\wsconfig\1 I've run WSCONFIG ( as admin ) from the folder C:\ColdFusion2016\my new website folder\runtime\bin and it displays both websites the same: I'm probably missing something obvious.
After a mail server problem, I have many undelivered mail in the Coldfsuion Mail "undelivr" directory.The Mail server is up againIs there a possibility to resend all these mails ?I tried a copy/paste of mails into the "spool" directorybut these mail are resent into the "undelivr" directoryand new mails are sent correctly.Thanks for help.Pierre.
I would like to extract the nth occurance of a token from a string based on the position of a pattern matching more than one characters, vs. the single character list of delimiters that GetToken() supports. GetToken() is great in many contexts, but not this one! Haven't found anything in CFLib, but maybe I'm just looking in the wrong places. Seems like it should be a common need.
Hello, I am trying to register our new Coldfusion license for 2018 on the Developer version installed on our server. I am going into the settings summary on the Admin page , as per the instrauctions it says I should see a New License field but I do not see any new license field. All I see at the top is "When clicked, generates a PDF with the Server Settings in a new Window. " How to register my Developer version with the new license key ? Also I would like to use the same Enterprise version license for our Development and Production servers, is this possible ? ThanksIQ
Hi Adobe,are you serious about deprecating RB?We are producing thousands of pdf files every day based on cfr-reports.Reporting is a big usage-area for CF in many companies I think.Why are you abandoning it?Is there already a plan when RB will no longer be available in CF?What are your recommendations on alternatives to use?Will Crystal Reports be supported in the future or is this to be dropped, too?Would be nice to have a statement on this.Thank youJörg
I have a script that, when called from a web browser, returns an empty response. consider the following code:-------------------------------------------------------------------hello <cfstoredproc procedure = "ParseAPStoriesExecDTSCentOS" datasource = "#app_datasourceAdminUser#" > <cfprocparam type ="OUT" cfsqltype="CF_SQL_INTEGER" variable=OkToContinue dbvarname="@OkToContinue"> <cfprocresult name="result"> </cfstoredproc> <cfoutput>#result.OkToContinue#</cfoutput>goodbye<cfexit>-------------------------------------------------------------------If I move the "goodbye <cfexit>" above the call to the stored procedure, it displays "hello goodbye" and quits successfully. If I leave the <cfexit> below the <cfstoredpr
Probably the way our IT has Chrome and IE configured and locked down but neither will download Coldfusion 2018 trial.Is there a direct link somebody can send me that uses a more normal download method?I need to get started on migrating our department from CF 11 to 2018, a lot of work, and I can't get started! Thanks
Does anyone have an examle of calling a CFC with React/Redux that they can share?
ı had some place and user must enter thıs place.they are at dropdown list.How can ı do it in coldfusıon?can u help me please.
ColdFusion (2018 release) Update 5 introduces a new way of writing functions, known as Arrow Function or Fat Arrow Function (=>). Arrow functions allow you to use the fat arrow operator to define ColdFusion functions. You can either use parameters in the function definition or not use any. Arrow functions avoid the usage of curly brackets and make the return keyword optional while creating a function. Basic syntax of the arrow operator (param1, param2, ..., paramN) => {statements} Example Traditional way of writing functions For example, if you were to filter some data in an array using the function ArrayFilter, you would write the following code: <cfscript> superheroes=[ {"name":"Iron Man","member":"Avengers"}, {"name":"Wonder Woman","member":"Justice League"}, {"name":"Hulk","member":"Avengers"}, {"name":"Thor","member":"Avengers"}, {"name":"Aquaman","member":"Justice League"} ] closure=function(i
I installed CF 2018 on a Windows 2016 server, and have migrated an older CF website to the new server. In the main folder of the website, the login page is functioning. If the login is not successful, the next page is in the same directory, and it also functions. With a successful login, the user is redirected to another folder and the 500 error occurs. The same issue happens with any other page I try to access outside of the root folder. Html pages will load, but not CF. So CF appears to be functioning, but only at the main folder level. I'm assuming this is a problem in my permissions, but I have been unable to find what is set incorrectly. Thank you, Michelle
Bonjour,Je voudrais créer un PDF suite à une mémorisation dans une variable :<CFOUTPUT> <!--- Debut de la memorisation des informations dans C ---> <cfset C= ""> <cfset C=C & '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">'& #CRLF#> <cfset C=C & '<html>'& #CRLF#> <cfset C=C & '<head>'& #CRLF#> <cfset C=C & '<title>Les aventures de l'extrème</title>'& #CRLF#> <cfset C=C & '</head>'& #CRLF#> <cfset C=C & '<body>'& #CRLF#> <cfset C=C & '<p style="text-align: center;"><br /></p>' & #CRLF#> <cfset C=C & '<p style="text-align: center;"><br /></p>'& #CRLF#> <cfset C=C & '<p style="text-align: center;"><br /></p>' & #CRLF#> <cfset C=C & '<cfdocumentitem type="pagebreak"/>'> <cfset C=C & '<
I think I know the answer but I'll throw it out there anyway. Does DateConvert adjust for the daylight savings time setting of the actual date/time being convertted to or from local? In other words, will dates stored as UTC suddenly be one hour off after the DST switch when dateConvert('utcToLocal',value) is applied? BTW, I hate the whole concept of DST. #StopDST
The error gives a filename which is similar to one of our custom log files but not exact case which makes me think it is some kind of setting. I've tried everything I could think to this point but none worked. The application which was writing to this log is no longer active. I don't see any code or configuration settings which would be referencing this log file. Below is what is written to the error log. The main error is on line 4 and then it spawns some other errors which are either directly or indirectly related to the first error. The service ends in a running state but just returns 500 errors for requests. If you have any suggestions they would be appreciated. INFO: ColdFusionStartUpServlet: ColdFusion: Starting application servicesNov 17, 2019 6:09:39 PM org.apache.catalina.core.ApplicationContext logINFO: ColdFusionStartUpServlet: ColdFusion: VM version = 25.202-b08coldfusion.log.LogService$InvalidLogFileException: The specified lo
Hi All, We are using ColdFusion 2018 and a Oracle 11G Database. I am trying to redirect users to a change password page when the username is expired. Users are database users who access the ColdFusion front-end. As of now we get an error message as shown below. Upon clicking login(submit button) , users go to the authenticate.cfm page which displays the error messsage shown below, instead of this I would like them to another page within the application called changepassword.cfm (I already have this page). What is the easisest way to do this redirection ? Thanks for your help.IQ "Error Occurred While Processing Request. Please try again. Error Executing Database Query. [Macromedia][Oracle JDBC Driver][Oracle]ORA-28001: the password has expired The error occurred on line 28."
we are using ColdFusion 11 enterprise , every evening our database backup team taking database offline for baclup, unfortunatly some user are trying to access same database, we wanted to setup error page on that datasource availability, need help
I have a very simple page that the user scans a serial number barcode into a form, the form submits and adds a single entry into the SQL table. When we first built this site Firefox was causing duplicate entries on every submit. Switched to Chrome and it stopped. Now 18 months later and randomly (about 1 out of every 10) there's a duplicate entry when using Chrome or IE. The time stamp on the duplicate entry is fractions of a second later. As a test, I added a 5-second delay after the submission to make sure wasn't the page refreshing so fast that the barcode was scanned twice and still randomly we get duplicate entries. When the problem first happened in Firefox I found a post about a possible cause. Of course, I can't find it again. I'm running CF 2016 with all the latest patches, Windows Server 2016 running IIS. Thoughts?
I have a newly installed Win 2012 R2, IIS and CF 2018 Enterprise. Two websites set up in IIS, two instances created in CF, websites are not connected to cf yet. Static html is served perfectly by iis.Following the instructions of the lockdown guide I run the lockdown program for one of the cf instances and the corresponding website. Autolock completed, but says there were errors.In the logfile I found these statements where the error occurred:2019-11-11 16:26:05 INFO - Change Permissions of ColdFusion file system: Error Logs 2019-11-11 16:26:05 INFO - 2019-11-11 16:26:05 INFO - Permissions changed for the user: IUSR for the path: "C:\cf18ent\cfsandbox\wwwroot\cf_scripts" 2019-11-11 16:26:05 INFO - Folder permissions changed! 2019-11-11 16:26:05 INFO - Successfully setup file system permissions for ColdFusion! 2019-11-11 16:26:05 INFO - Setting up registry permissions for ColdFusion! 2019-11-11 16:26:05 INFO - Now starting to change registry permissions! 2019-11-11 16:26:06 INFO - ColdF
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.