| Thread | Last Post | Replies |
|
| How to create a DB from CF Is it possible? | 23 Jan 2005 01:42 GMT | 4 |
I need to create a DB from a CF interface. In my CF form, I only have: <form action='dbaction.cfm' method='post'> using multiple select to create more than 1 DB at once: <select name='DBName' multiple> <option value='1'>DB1 <option value='2'>DB2 <option ...
|
| checking server connection | 22 Jan 2005 20:05 GMT | 1 |
Does anyone know if there is a way to hard code server connection status within an application? For example, there are occasional instances of timesheets not being submitted because there's no server connection and the timesheets are being lost completely. What I would like to do ...
|
| Block extra clicks | 22 Jan 2005 15:52 GMT | 5 |
I would like to block extra clicks when a user submits our form. To do this I tried some versions of the following code: <!-- Begin Disable Form function disableForm(theform) { if (document.all || document.getElementById) { for (i = 0; i < theform.length; i++) { var tempobj ...
|
| Uploading files to load balanced web servers? | 22 Jan 2005 05:11 GMT | 1 |
I've searched the web and newsgroups and haven't been able to find any information on this topic. We need to be able to allow some internal users to upload files to a load balanced web server environment. I don't see any way of doing this using cffile because it doesn't look ...
|
| QuerySetCell | 22 Jan 2005 04:55 GMT | 4 |
<phonenumbers> <phonenumber number="18885554299" dateandtime="1/21/2005 1:24:52 PM" callid="Sanikiluaq" duration="17" status="Successful" lasterror="Human Answer"> <prompts><prompt promptid="1" keypress="5" /></prompts>
|
| Verity and Security | 22 Jan 2005 01:49 GMT | 1 |
I was wondering how Verity enforces security or how does one enforce security with Verity. That is, if a user performs a site search, does the search engine automatically detect the security settings of the user and not return results that they don't have access to view? If not ...
|
| Windows NT error 1450 | 22 Jan 2005 01:17 GMT | 2 |
Hi, Does anyone know if there's an limitation for the size of an upload file when using CFfile performing Upload action? Recently I get error messages 'Error writing data from web server to the ColdFusion Application Server. Windows NT error number 1450 occurred.' when I try to ...
|
| Knowledgbase App | 21 Jan 2005 22:02 GMT | 1 |
Does anyone know of where I can look at sample code for a Coldfusion KnowledgeBase application. I am wanting to build one, but don't have a clue where to start. The one we use at my job is old and outdated and not web based.
|
| CFID and CTOKEN in URL doubling up. | 21 Jan 2005 20:17 GMT | 2 |
My sign in routine for my portal uses DMTML to fire off a URL that looks something like: home.cfm?signin= I then process the sign in, check for validity, and return the user to the page and cgi.query_string they had before. Only now session vars are set. etc. When the signin ...
|
| CFMail Attachment Problem | 21 Jan 2005 19:56 GMT | 15 |
Dear all, I have setup the following to dynamically create and attach a word document to an email and then email to a list from a database with their own personalized information. The first file creates the attachment and second is the CFmail that sends it. The problem that is ...
|
| XML to HTML using CF Server 5.0 | 21 Jan 2005 19:52 GMT | 2 |
I've been writing CF for over 5 years and this is my first experience with XML. I have searched the web over and found great articles on how to handle XML to HTML using CFMX, but I'm still running 5.0. Here is the situation. Here is the XML feed -
|
| Web Services - Could not generate stub objects for web service invocation | 21 Jan 2005 17:47 GMT | 1 |
I think I am having problems with my hosting providers settings on their Coldfusion server. However I am not sure what it is or what I need to do. Can you please help me? I am testing a very basic web service that I can get to work on my home
|
| File Not Found - Redirect Output | 21 Jan 2005 17:35 GMT | 1 |
I host a database locally on my server, but the image files associated with it are hosted on another server. The database has a field for number of images associated with each record, but the remote server is not always in sync with this. If the number of images = 0, a default ...
|
| Date Loop and Validation | 21 Jan 2005 13:50 GMT | 3 |
My code will allow each segment of the date field to be entered by the user. However, I am looking for a way to either give the enduser the option to loop through the months, days, years to ensure a proper date input. Or, a simple way to validate a single date field. Code ...
|
| subqueries and inner join | 21 Jan 2005 10:16 GMT | 1 |
<cfset myquery = QueryNew("PhoneNum")> <cfset temp1 = QueryAddRow(myquery, #size#)> <cfloop index="i" from = "1" to = #size#> <!---<cfset temp = RemoveChars(#Phonelist.XmlAttributes['number']#, 1, 1)>--->
|