726 Topics
| |
Hi all!!! This is my first post here so please feel free to move if it's in the wrong place :-) Ok, i am just starting out in web development, and i have created a data entry form in DW CS3 and succesfully link it into MySQL (big deal for … | |
Hi Trying to do multiple left outer joins on query of query. Have asked on forums if ColdFusion supports this, although there are workarounds for single left outer joins on query of query, it is not what I require. It appears that no one has attempted to do this on … | |
Right now I have a page set up that inserts a record into a DB that a user enterd. I have it set up to take them to another page that shows the the information that they entered. but I also have a cfmail tag that e-mails the same information … | |
Hi everybody! Could you teach me how to get back the “primary key”: (“id”), from an “insert query”? * [code=coldfusion]<cffunction name="insertData" access="public"> <cfargument name="formData" type="struct" required="yes"> <cfquery name="qInsert" datasource="mydata"> INSERT INTO mytable (email, firstname, name) VALUES ('#formData.email#', '#formData.firstname#', '#formData.name#') </cfquery> </cffunction>[/code] * How could I get back the primary key:”id” … | |
I use a page that pulls the content from a database, including the title of the document. How can I make that title to also be the browser title (content in the title tag)? Thanks! | |
I have [b]form.mydata[/b] coming to my action page with comma delimeter value: [b]adam,joe,ben,steve,jill,andy,david[/b] I want to seperate them and it works inside this loop: [code] <cfset myd = ""> <cfloop list="form.mydata" index="i" delimiters=","> <cfoutput> <cfset myd = "#i#"> #myd#<br /> </cfoutput> </cfloop>[/code] How do I get them to print outside … | |
Hey Guys, I have just started working on ColdFusion, so I am relatively new to it than most of you may be. I am trying to create 'Sticky Stay-Filled' forms so that when the form is submitted, the details entered on the form show up on the page following the … | |
Greetings. With help from CF geniuses, constructed a CF suggestion form on the web where data went into an Access database. Moved offices, PCs and servers. All went into the abyss :'( Have copies of web page for entry of information by customers, and confirming page showing customers what they … | |
I am writing a CF application that queries a Centura SQLBase DB--not my DB of choice, its an interface partner's DB! Some of the fields in the SQLBase DB are of type FLOAT, which for some reason CF is returning in scientific notation (i.e. 1.23653E7) rather than as a whole … | |
I am using cfexchangemail and it works fine with an email sent from bb or windows but when ever someone sends an email from a mac (entourage) the email id (UID) has special characters and cannot download the attachments. I get this message: Error processing the Exchange request. This error … | |
Hello, Not sure I'm in the right place for this question, so apologies if I am not. Also, please note I am not a Coldfusion programmer, but rather the office administrator and user of a company website that is built using Coldfusion. Our company uses Mac computers exclusively. Most of … | |
My web sever has ColdFusion MX 7 I would like to know what ver. of dreamweaver do I need to code for it ? | |
Hi, Can somebody help me with accessing a deployed WAR file, as I am a beginner and don't have much knowledge about the cold fusion server. I managed to deploy a WAR, however, got struck as I am not able to access the file using browser. | |
Hi, I am getting the following error in my mail log: Exception reading response; nested exception is: java.net.SocketException: Connection reset I get this intermittently: sometimes it works and sometimes it doesn't. I've tested using my own email, so I know it's not a problem with the address. Is this a … | |
I want to update an access db with multiple records. They are property pictures. They may have the same listnumber, but all have a different ID#. There are not always a set amount of pics... may be 5 or 7 or 10, etc.. The DB fields are id, filedata (actual … | |
Hi to all, i have a charset issue when i use unicode characters in cfm pages... to be more specific when i use greek characters all i get is something not greek... i use charset in each page but the result is the same, i used utf-8,iso-8859-7 and windows-1253 but … | |
Just want to check my code to see if I wrote them right. If wrong please correct me Create a cfif block that checks for the condition: IsDefined("url.productid") AND NOT IsDefined("form.productid") --- so I wrote [code]<cfif IsDefined("url.productid") AND NEQ IsDefined("form.productid")>[/code] Create a ciff block that checks for the condition: if … | |
I am very new to coldfusion (& web server scripting in general) and have been asked to create a system that shows the websites statistics. please some help on how i would go about doing this, or maybe a link to a guide? thanks in advance :) | |
Hi all I’m new to ColdFusion and I have hard time to understand how to run a specific WMI query Until now I can only dump a WMI Class to a ColdFusion Array For example [code=coldfusion]<cfset obj_wmi = CreateObject( "component" , "wmi" ).init() /> <cfset arr_Array = obj_wmi.execQuery ( " … | |
Hi all, I'm trying to consume a Service called GetMemberPointsAvailable using VB.NET. Here is the wsdl: [url]http://sp-s3g-uat.iclp.com.au/ws/egapi/v1-0/egapi.cfc?wsdl[/url] This service is written in coldfusion - axis engine. The steps: I'm using VB.net on Visual Studio 2005. I created a new windows application project. Then I added a web reference with URL … | |
r CF MX 7 the CF admin setting for database queries timeout is set at 100. Because of this some of my queries timeout and give me back a timeout message. I am trying to overwrite it in my cfquery working with Oracle 9i: [code] <cfquery datasource="cityOra" [color=red]timeout="300"[/color] name="queryOne"> select … | |
Hello and thanks for looking, Here is the run down, Intranet running with CF. Server MOBO Crashed out - Can not replace. I did not set up the CF Site, that person "Left to pursue other opportunities" I can get the pages to display, however the Databases did not migrate. … | |
Hello Experts I have a CF app (MX 6.1) that creates a text file, inserts some data (mainly numerical values along with a text header and footer), zip/encrypt/password protect with Winzip command line and then email to a 3rd party and CC some users. When the text file is opened … | |
We are lookign to purchase an applciation to mail newsletters, mass email etc... are there any good oens for sale you anyone can reccomend? thnx | |
Help! Hi, everbody! I have this problem: There is a “textbox” and a “submit” button. “Submit button” is disabled until something is written within “text box”. I am not able to do this switch. Could anybody help me? Here you are the code: [code=html]<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" … | |
Hello again, This may or maynot be proper thread for this topic, but here it is. I have a coldfusion 7 serve that I am running a page on, that uses hash(<email>,"MD5") all it well and good makes me a hash string and all. I store this hash and in … | |
Ok so I'm making a survey for a website and I have a series of questions where the user can rate it from a list of choices and I have these questions in a table in access and the rating options in a table. I want to have the questions … | |
Hi all, I'm working on a report displaying a table, and below this table I would like to display a kind of summary, including some interesting values calculated from the table. I included this summary table into the Report footer, because I don't know where the best place is. The … | |
Does CF run any better or faster on Windows or Apache. Can you recommend some good shared hosting companies? Thanks | |
My cfm application runs fine, but I have a problem securing my pdf files: The application.cfm/login.cfm only works with .cfm files. So if a user write the full adress ([url]http://www.mysite.com/pdf/onlyforusers.pdf)[/url], the file will popup in the browser, - not god! Is the a way to make the user login - … |
The End.