Questions
Als letztes aktiv
I am unable to import just the dsn's and cf9 mappings from a cf9 server into cf10.
Running CF10-Enterprise, 10,0,9,284568 with Update 9. This is running under JDK 1.7.0_21, and is fronted by Apache 2.2.x and all runs under RHEL6.x. It seems to work fine In short - is it possible to create a new instance, and have that new instance run as a different user than the "main" instance? If so, what trouble does it cause?In more detail...The main reason we'd like to have a separate Instance is for "complete" isolation, to prevent one CF process or instance from affecting another, vs having one CF instance and just a lot of websites under it. Service isolation is a policy.I spin up a new Instance (CF Admin -> Enterprise Manager -> Instance Manager), and start it. It runs as the user "cfusion", which is the same user that the main instance runs as. I'd prefer it to run as another user, namely the user that owns the site this instance is for. So if I have site www.site1.com owned by user site1, I'd like the CF java process t
I am unable to find coldfusion7 anywhere .Found this link http://www.adobe.com/cfusion/tdrc/index.cfm?product=coldfusion7 But its taking me to coldfusion 8 , 9, 10 dowload.
I haven't touched cold fusion in 10 years so I'm a bit out of practice. I have a request from a user to save the form data on a form she submitted. I looked at the code and even made it just a simple form with no cf tags at all. And it still deletes the form data, is there a way to save it when the user clicks submit? I've tried adding the preservedata = "true" and that doens't help either. Any thoughts would be great.ThanksLaura
CF10 on Windows 2008R2, IIS 7.5Trying to implement application isolation as per CF10 Lockdown guide.I am asigning dedicated user account for each individual instance.However, the cfadmin Administrator console will start any other instance using cfadmin's account instead of the instance account.PLEASE let me know if there is a way to have the Adminuistrator console to strat each instance with it's onw account.I tried using windows service as well, but because the account is not member neither of Users, and of course not Administrators group, the service will not start. Please advise
We have a scheduled task that runs every 15 minutes and looks in the 'ColdFusion9\Mail\Undelivr' folder for any undelivered emails. If it finds any it moves them to the 'Spool' folder. It has been running fine for almost a year. Last week we applied Hotfix APSB13-27 and the next day we started seeing emails in the 'Undelivr' folder for hours. I manually ran the task that moves the emails to the 'Spool' folder, and the email was then sent fine. That makes me think the Scheduled Task is not running as we think.Is there anyone who has heard anything about the Hotfix APSB13-27 causing problems with Scheduled Tasks?We are running CF version 9,0,1,274733, use JRun4 as the App server, on a server running Windows Server 2008 R2.Any help is most appreciated.
Hi,I am running CF10 on Windows 2008 R2 server.Today, I applied update hotfix 12 to my Coldfusion10 server installation and now Coldfusion 10 Application Server does not start anymore. After install I ran Web server configuration as recommended. Now, when I start it from server manager concole I get an error Windows could not start the Coldfusion 10 Application Server...When I start Coldfusion Administrator I get page with:Service Temporary Unavailable!The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.Jakarta/ISAPI/isapi_redirector/1.2.32 ()I downloaded hotfix directly from this page http://helpx.adobe.com/coldfusion/kb/coldfusion-10-update-12.html after running Update from Administrator and download failed few times.I restarted the server box but, it did not help.Any ideas?Thanks
I have a union query like this that gets info from 2 different tablesLike this <cfquery name="getpeople" datasource="#request.dsn#" > SELECT ID,CityName, SUM(people) AS sump FROM table 1 GROUP by ID,CityNameUNION SELECT ID,CityName, SUM(people) AS sump FROM table 2GROUP by ID,CityNameORDER BY SUM(people) </cfquery>So what I want is the sums from both tables but what I get is the sums of each table.For example I get ID-CityName-sump1- New York -31-New York- 42-Chicago -52-Chicago -6What I want isID-CityName-sump1-New York- 72-Chicago -11Do I need to do another query after the union query?
Hello,i am parsing an xml file by using a CFLoop. Some rows in the file do not contain every element. What is the best way to check if an element exists?My current code looks something like the following:<cfloop from="1" to="#arrayLen(cfData)#" index="i"> #cfData["SpecialId"]# #cfData["ImageUrl"]#</cfloop>For some rows, ImageUrl exists, but it doesnt in others. When running the code, i received the following error:Element ImageUrl is undefined in a CFML structure referenced as part of an expression.I tried the following:<cfloop from="1" to="#arrayLen(cfData)#" index="i"> #cfData["SpecialId"]# <cfif structKeyExists(cfData,"ImageUrl")> null image <cfelse> #cfData["ImageUrl"]# </cfif></cfloop>However
Hi, do all versions of Elements have a lens correction tool like the one in lightroom 3?
I want to make an advent calender. Is it possible to make it so you can put it on facebook? Like other companies does with there advent calendars. I will not have a product in each window but an image. And I want the user to be able to open the window on the day it should be open. Like an ordinary calendar but digital. How do you do it? Are there some good tutorials on how to do it?
Just purchased CF 10 and cannot get it working on the site. We currently use CF9 on Windows Server 2003 (32bit). We are installing CF10 (32) on Windows Server 2008 (32). Have tried multiple times and have researched and asked the community and have tried all suggested options. Here’s where I'm at: IIS configured with all required rolesCF10 Application service running under domain mgrAll CF10 updates installed in correct sequence (8-12)Just released CF10 mandatory update installed (released 11/21/13)CF Connector works fineAll Handler mappings for CF types show properly as enabled and inherited in all sub folders from 'Default Web Site'The results are that CFIDE administrator works fine. CFM pages in root web parse fine too. CFM pages do not parse from subdirectories (Folders within wwwroot other than CFIDE). We receive the ‘Internet Explorer cannot display the webpage’ error within IE on these CFM pages.For testing, I used the iisstart.hm and sa
Hi I am using a simple nsert statement .The insert statement picks a variable from the form and inserts it into the database I have no loops in the page the code is : <cfif isdefined("Form.Category")> <cfquery name="InsertCat" datasource="ShoppingCart"> Insert Into ShoppingMstCategory(Category)Values '#Form.Category#') </cfquery> </cfif> The insert runs twice on its own. Though if I use Query analyser to insert the statement only inserts once. am I missing something. I am using CF 10
I'm trying to use the following code in application.cfc to allow a meaningful error message for the user (dsp_error.cfm).It isn't practicle to wrap every query in in the app try/catch code; too little time or money for the project.Is there a way to get the SQLSTATE variable that appears in the debugging info the user sees without this code, the part that shows the actual SQL that is being sent to the Oracle server?The SQLSTATE usually helps me pinpoint how I failed to test/require proper values from the poor user. Here's the code from application.cfc as I have it now:<cferror type="EXCEPTION" template="dsp_error.cfm"> <cffunction name="onError" returnType="void" output="true"> <cfargument name="Exception" required=true type="any"/> <cfargument type="String" name = "EventName" required=true/> <cfset admin_email="Randy.farthing@austintexas.gov; Jacque.driskell@austintexas.gov; lawrence.willis@austintexas.gov;"> <!---&nb
can i install elements 12 on more than 1 pc
Hello,We are currently looking for ColdFusion training on the Administration side of ColdFusion. Does anyone know of a reputable training class that is face to face that we could look into. I researched a few Authorized Training Centers and did not find any classes that were scheduled. Things we would like to see in the course is Installing CF, Upgrading CF, Securing the Server and overall troubleshooting of the ColdFusion application. The type of training we are looking for is not geared for the developer, but more toward the individuals that will be managing the server etc. Thanks,Barry
CF 10 installed fine and CFIDE/Admin ran ok, however, other sites did not invoke CF10 even though 'all' was specified in the install and all IIS options were enabled. Used the connector to remove the 'all' entry, but now cannot add it back. What's the fix?
Windows 2008 R2ColdFusion 10Mandatory UpdateUpdate 1Update 2Webroot = inetpub\wwwroot\We installed and configured ColdFusion 10 a few weeks ago on a new server. I put a few CFM pages in my webroot and they served up fine. Still do! Administrator is serving up fine as well. However, subdirectories of my webroot are not being processed by ColdFusion. It won't serve up CFM pages.We've compared settings, subdirectories are set to inherit from the parent webroot. Subdirectories are serving HTM pages and the CFM pages are showing up as HTM pages, unprocessed.I do not know if this was occuring prior to the updates.Any help would be greatly appreciated. I need to transition as soon as possible.Thanks!
Hi there,I want an upload button for files in my form. Is this possible and if so how do I get it there?THank you so far.
I am a non-techic trying to fix something for work. Your help is really appreciated.I have a form with checkboxes (4 check boxes). Everything sumbits fine. SQL db is updated perfectly and data is displayed on webpage w/o any problem. However when I go to edit an entry, on the edit form, (if more then one checkbox were selected oringally), non of the checkboxes are checked. If only one checkbox was selected orinally, that checkbox is selected. What am I missing? I know I am suppose to use loop to get all checked checkbox values, but I have no idea how. Here is my code so far.<input type="checkbox" name="colors" value="red" <cfif #getResultSet.colors# EQ "red">checked</cfif>>red <input type="checkbox" name="colors" value="blue" OR<cfif #getResultSet.colors# EQ "blue">checked</cfif>>blue <input type="checkbox" name="colors" value="green" OR<cfif #getResultSet.colors# EQ "green"></cfif>>green
Hi,I'm building a website for selling boats, I would like to open for people to be able to put in their boats for sale and that this information they are putting in automatically comes out on the website.I'm building the site in dreamweaver and was thinking about using the form function. Also, I'm unsure if coldfusion is the cheapest and best way to do this. I also would like to be able to verify that input information is ok to go on website.Any ideas, help?Thanks!
I'm trying to use RTMP with Coldfusion 10 and the embedded livecycle ES. The other channels and endpointshave been working fine, but when the server starts up I get an error complaining that the endpoint cannot befound for the cf-rtmp channel. I'm using the standard setup with no special configuration. The AMF channel, polling channel, etc. work just fine, and there are no complaintsabout those channels or endpoints when the server starts up.This is the error in the logs when the server starts up: INFO: ColdFusionStartUpServlet: ColdFusion: VM version = 23.7-b01java.lang.NullPointerException at coldfusion.server.jrun4.metrics.SimpleLoadMetric.run(SimpleLoadMetric.java:157) at coldfusion.scheduling.ThreadPool.run(ThreadPool.java:211) at coldfusion.scheduling.WorkerThread.run(WorkerThread.java:71)Nov 21, 2013 9
Hi All,Here is my problem,I have a user defined function, which will give me the output as " table.column = <cfqueryparam cfsqltype = 'cf_sql_varchar' value = 'test'>; but when i pass this as my where clause in the query.I always get missing experssion (00936) error.When I ON the debug information in CF, I copied the query its running;any help would be highly appreciated.I have tried replacing this double quotes with single quotes using Rereplace and replace function; tried preservesinglequotes(); all are returning the same error.. May be I'm missing something.THe below is the query formed; and its the one I get when I on the debug information (sql)SELECT * FROM SHOP_FINDINGS WHERE ROWNUM<=20 AND (OPER_NAME = <cfqueryparam cfsqltype='CF_SQL_VARCHAR' value='IN STOCK'> )I m using CF 9 and Apache server.
So, I'm having trouble figuring this out, and I haven't found an answer online. Hoping someone here has tried something similar.I'd like to figure out how to use the Coldfusion Encrypt function so that it generates the same binary value as MySql AES_ENCRYPT. Similarly, how can I use Coldfusion Decrypt to decrypt values generated by AES_ENCRYPT?I've tried:Decrypt( QUERYCOLUMN, "AES", "hex")Decrypt( toBase64(QUERYCOLUMN), thisKey.getKey(), "AES", "hex")Decrypt( toString(toBase64(QUERYCOLUMN)), thisKey.getKey(), "AES", "hex")Always returns empty string.Thoughts?
I've tried this on a couple of machines and I continue to get an error stating "ColdFusion 9 Installer" is damaged and can't be opened. There are a couple error messages in the console, but nothing that's immediately obvious to me. Any help would be greatly appreciated.11/19/13 2:58:29.114 PM com.apple.launchd.peruser.501[287]: ([0x0-0x106106].ColdFusion 9 Installer[25065]) Job failed to exec(3) for weird reason: 1311/19/13 2:58:29.118 PM loginwindow[65]: ERROR | -[Application setAppContext:] | Unable to get PID for context [0,1073414]11/19/13 2:58:29.118 PM Dock[353]: no information back from LS about running process LSASN:{hi=0x0;lo=0x106106}11/19/13 2:58:29.141 PM CoreServicesUIAgent[25061]: Error SecAssessmentCreate: The operation couldn’t be completed. (OSStatus error -67030.)
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Sie haben bereits einen Account? Anmelden
Noch kein Konto? Konto erstellen
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.