Forum: ColdFusion Oct 16th, 2009 |
| Replies: 0 Views: 1,037 Hi all,
I have a form where my colleagues enter basic details about participants in a study. The 'action' attribute of the form takes the control to a 'validateForm.cfm' script where, as the name... |
Forum: ColdFusion Sep 14th, 2009 |
| Replies: 4 Views: 2,754 I just got back to this site and implementing the login feature again. There is something I am not doing correct. After 5 unsuccessful login attempts, a trigger in the DB flips the AccountStatus bit... |
Forum: ColdFusion Aug 27th, 2009 |
| Replies: 0 Views: 1,073 Does anyone here have experience using the Acunetix Web Vulnerability Scanner? I happened to use it on my site to check for vulnerabilities and found about 15 HIGH level ones - all of them with... |
Forum: ColdFusion Aug 21st, 2009 |
| Replies: 3 Views: 1,505 In addition to what thesaintbug said, there is another thing you might need to change. Rather than 'Encrypting' passwords, the better option would be to Hash them. Hashing is a one-way process -... |
Forum: ColdFusion Aug 21st, 2009 |
| Replies: 4 Views: 1,210 In your form declare a hidden type input and set it to 'strPassword'
<input type="hidden" name="OldCode" value="<cfoutput>#strPassword#</cfoutput>" />
and then change the comparison <cfif> to... |
Forum: ColdFusion Aug 21st, 2009 |
| Replies: 4 Views: 1,210 I have only had a few minutes to look at the code and the problem I see is that the value in your text field is being compared with the NEW spamcode; not the one that is generated for the page that... |
Forum: ColdFusion Aug 6th, 2009 |
| Replies: 4 Views: 1,733 The text field values need to be stored using #ListGetAt(FORM.txtValue, getIDs.CurrentRow)# instead of just 'FORM.txtValue' |
Forum: ColdFusion Aug 5th, 2009 |
| Replies: 2 Views: 1,373 Thanks buddylee17,
I am not sure why I did not think of those functions! :-O |
Forum: ColdFusion Jul 31st, 2009 |
| Replies: 2 Views: 1,373 I have a bunch of alphanumeric IDs for the data in my DB. The IDs may look like the foll:
0XAA001 or 1YBB010 or 2ZCC011 and so on.
Each of the 7 characters stands for something and therefore I... |
Forum: ColdFusion Jun 18th, 2009 |
| Replies: 4 Views: 1,100 Actually, there are only 2 rows. So like the following:
Table:
Column 1, Column 2, Column 3, Column 4
Row 1
Row 2
What I want now is:
var 1 = Row1.Column3
var 2 = Row2.Column4 |
Forum: ColdFusion Jun 17th, 2009 |
| Replies: 4 Views: 1,100 Is there a way to grab data from alternate records in a ColdFusion query?
Essentially, what I am trying to do is this:
I am querying my database to grab some data. 2 rows of data are returned... |
Forum: ColdFusion Mar 12th, 2009 |
| Replies: 0 Views: 1,386 Here's the problem:
One of my scripts allows users to upload MS-Excel files. When uploading the file, users are also required to enter details related to the file - details like start date, stop... |
Forum: ColdFusion Feb 12th, 2009 |
| Replies: 1 Views: 1,682 Could someone help me figure out how to disable user accounts in ColdFusion? What I am trying to achieve is this:
When a user makes 5 successive invalid attempts, his/her account will be temporarily... |
Forum: ColdFusion Feb 11th, 2009 |
| Replies: 4 Views: 2,754 Hi all,
All right, here's what I am trying to achieve but have no idea how to do it:
My site requires users to login and every page is password protected. As part of preventing hacking (to a... |
Forum: ColdFusion Jun 26th, 2008 |
| Replies: 0 Views: 1,085 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... |