Search results

  1. hatton

    Form Validation

    Heh, yep that's me alright - though my callsign has changed (was KC5SIG is now NY5I... it's a Ham Raido thing, don't worry) Jonesee and the rest of the gang over at Sitepoint are really good. I've just gotten too busy to maintain a presence on all the different lists. Hell, I hardly have...
  2. hatton

    Form Validation

    Checkboxes are returned in the form structure only if they are selected. What I do to handle them is have a line in my validation that reads <cfparam name="form.checkbox" default="No"> That way the field exists regardless of whether or not the box is checked. Hatton
  3. hatton

    Form Validation

    I took a peek at that tutorial and it looks like a good one... Just for grins I'm including the code for the registration page on 3-ld.com so you can see it. I know that I need to move the queries over to CFStoredProc calls, just haven't had the time to recently. <cfset PageTitle="Register...
  4. hatton

    Form Validation

    First off, take a look at the source of the page that is being generated with the CFForm option and you'll see some pregenerated Javascript. Personally I prefer to use server-side validation (check the data after the form has been submitted and then reload the form hilighting the missing...
  5. hatton

    Need Answer To Ticket (Was Moving Domain)

    Okay, I followed the suggestion and created a new login (account) with the domain and simply copied the files over. However, when I went to enable ColdFusion I get a message that says "Internal Error , Support Notified". I submitted ticket number 38150 but have not heard anything back on it...
  6. hatton

    Form Validation

    Have you tried your code or are you just looking for syntax?
  7. hatton

    CF Schedule for ASP.NET site

    It's definitely something that you can do. A "scheduled task" in ColdFusion is nothing more than a scheduled HTTP call from the server. Hatton
  8. hatton

    Moving domain

    I guess support didn't get my emails (though I have a confirm email) for what should be a simple question. Here's my situation - I have an account on my reseller plan that has two domains on it. I need to split one of the domains off so that I can give another person the login info without...
  9. hatton

    cfdirectory on root

    Glad you got it working... however, just a note: For applications that I host on shared servers I tend to make use of the GetTemplatePath() and GetBasePath() functions. They can be used to take out hard-coding paths that can get folks in trouble. Until Later! Hatton
  10. hatton

    URLEncodedFormat

    That is typically not a function that can be disabled (though it is possible). Post the offending code and the related error message and let's see what we can work out for ya! Hatton
  11. hatton

    CF Registry Disabled - Applicaiton Problem Fix

    The variables are housed in the session memory for the duration of the visit and referenced by the cookies that are stored on the client's browser. http://en.wikipedia.org/wiki/HTTP_cookie Hatton
  12. hatton

    cute or not/ review

    From a design perspective it's *okay*, I understand the concept well enough... the laoyout's fast tho I'm not a fan of that shade of blue. Some scipting comments though - - Set a cookie or something to remember the dropdown selection for gender. - Display a few of the comments on the rate...
  13. hatton

    Cfm + Mssql

    <cf_GutReaction> That's like asking for root login on a linux box - not going to happen. <cf_GutReaction> Access to the CF Administrator is *not* the same as accessing a web based MSSQL Manager tool. I've been out of the loop here at JH for a while, however last I saw they were...
  14. hatton

    gmail invites available

    I've got a number of invites available and they replenish often. If you want one email me at chumphrey at gmail dot com. I will NOT respond to PM's here.
  15. hatton

    security threat?

    MS SQL Server works in an exclusive mode when it comes to security. The "public" user (another way to say a connection without credentials or a user that is logged in but not listed in the permissions list) is shown in the list. This does not mean that they have permission to access anything -...
  16. hatton

    SQL Like Operator with CF & Access

    Easiest way might be to do something along the lines of the following: SELECT whatever FROM wherever WHERE 1=1 <cfloop list="#form.findname#" delimiters=" " index="thisword"> AND Name Like ' %#thisword#% ' </cfloop> This turns your search string into a space delimited list and...
  17. hatton

    Image Gallery

    Saw your post on Sitepoint as well but since I *know* what your host is, I can address it - JodoHost has installed CFX_Image in the past for CF clients so if it's not working for you then I'd suggest submitting a ticket to get it up and going. You can then use it to write your own image...
  18. hatton

    HSphere Creation of CF DSN's

    :D That's great to hear Yash! I'm definitely looking forward to having that feature! Keep us updated!
  19. hatton

    HSphere Creation of CF DSN's

    I know this is an old issue but I haven't seen anything regarding it lately - have the folks over at HSphere been able to get their control panel to create ColdFusion DSN's or do they still need to be requested via a trouble ticket? Regards! Hatton
  20. hatton

    support responses getting a little slow?

    Is this change going to be mandatory? I mean I don't want to waste a tech's time with a simple DSN creation request or something that is low priority. Otherwise it sounds like a great tool to offer customers! Hatton
Back
Top