| Thread | Last Post | Replies |
|
| Please help with SQL join | 31 Jan 2006 20:36 GMT | 2 |
I have a query that joins multiple tables. The key across all the tables is the SSN column, which I select as Distinct. When I left join another table (tblLanguages) where the SSN is found multiple times, the resultset then multiplies depending on the number of times the SSN is ...
|
| ComObjectInstantiationException for VSSDatabase | 31 Jan 2006 17:51 GMT | 2 |
I am trying to access VSS Automation APIs through coldfusion to find out the version of a file <cfobject type = "COM" action = "create"
|
| Dynamic forms | 31 Jan 2006 17:50 GMT | 3 |
I am trying to create a drop down or url.variable that will define how many <cfinput type="text"> boxes will be displayed in a form. For simplicity, on my test server I was using a url.var. <cfif isDefined('FORM.submit')>
|
| seeing file names from includes | 31 Jan 2006 15:40 GMT | 1 |
Hi guys, can anyone help a little lady with this coding problem. I am working on a Fusebox app which is quite large and has a number of include files embedded in each page. During development is there some code which might access the name of the include files?
|
| Unknown Error with CFTransaction Tag | 31 Jan 2006 15:18 GMT | 1 |
I am getting the following error when I try to perform some query operations inside a CFTransaction tag...... The root cause was that:java.sql.SQLException: Usernames and Passwords for all the database tags within CFTRANSACTION must be the same.
|
| Very strange <cflogin> stuff | 31 Jan 2006 12:59 GMT | 6 |
OK, this is very strange. When startup my browser, and go to the login screen, type my username and password, and post the form, it doesn't get in <cflogin>. The session variables I want to set are not set, and things go wrong. However, if I logout using <cflogout>, and try again ...
|
| Pull only online users from database | 31 Jan 2006 12:24 GMT | 2 |
I have a structure that logs all the live sessions on my site, normal I would see if someone was online doing this: #structKeyExists(Application.UsersInfo, member_id)# What i need to do is only pull online people from the database, I cant get it
|
| replacing # chars in a text | 31 Jan 2006 07:24 GMT | 1 |
I have a couple paragraph text that need to parse through. Problem is that there several "#" signs in it. So doing Find/Replaces create problems. How can I use cold fusion to simply remove them? #ReplaceNoCase(thetext,'#','','All')# obviously doesnt work. Is there are Char() ...
|
| cfgrid | 31 Jan 2006 06:03 GMT | 3 |
hi i am usiong cfgrid to show one of tables, this works locally, but when on the web i get this error The request has exceeded the allowable time limit Tag: CFLOOP <br>The error occurred on line 2153.
|
| auto update on select | 31 Jan 2006 05:46 GMT | 5 |
i have a drop down list with values of Organisation Names when a user selects a Organisation Name i need a text box to be automatically updated with the Organisations ID what would be the best way of doing this?
|
| How do I pass unix FIND arguments to CFEXECUTE | 30 Jan 2006 23:54 GMT | 3 |
/usr/bin/find /filepath -type f -name '*.cfm*' -exec grep -i -l ' ' {} \; works in unix. Why doesn't the following work in cf: <cfexecute name="/usr/bin/find" arguments="/filepath -type f -name '*.cfm*'
|
| Finding data in a comma delimited field | 30 Jan 2006 20:53 GMT | 4 |
I have a comma-delimited list of UIDs in a field (named "planner_uid". This is NOT the user id field that is used for security). I need to find out if the UID of the person who is logged in (session.uid) is one of the UID's in the list. I've tried using REFindNoCase, but it only ...
|
| cferror templates and relative paths | 30 Jan 2006 16:10 GMT | 4 |
I am having a problem with site-wide error templates. In the Application.cfc file I have the following: <cfcomponent ...... ....set the application variables here ....
|
| CF server crash anomoly? | 30 Jan 2006 12:05 GMT | 4 |
i am kind of in an emergency situation. a webserver we have crashes very frequently with no apparent reason for it. the log has an entry like this: "Error","scheduler-2","12/16/05","07:45:14",,""
|
| setting values | 30 Jan 2006 09:43 GMT | 2 |
i have a simple form which i am tring to set the values of a column in my table, i have tried the code below which works, but this gives my a submit btn for each record, because i have hundreds of records i need one submit btn to set all the values
|