Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. jalpino

    Web Survey - Map specific form fields to a generic table field

    You can loop through the form collection to insert the name value pairs, for example: <cfloop collection="#form#" item="fieldName"> <cfquery name="qryInsert" ....... > INSERT INTO TAble ( fieldName, fieldValue) VALUES ('#fieldName#','#form[fieldName]#')...
  2. jalpino

    Seriously Technical server Behavior question

    If you need to 'lock' a set of sql commands in a single transaction, use <cftransaction>, it will provide the isolation levels that you need. However if the transaction spans multiple requests, insert\update a timestamp with the db entry and also persist that stamp in the users session. The next...
  3. jalpino

    http referrer

    Actually, requests coming in without a referer will most likely be because they navigated to your site directly (typing your site directly into the address bar). JAlpino
  4. jalpino

    Problem with CF

    Hi Natalie, Are you using log4j in your Java objects? If so, I'll bet that it is a 'much' newer version than the one mx7 uses, and since your classes are loaded later in the chain on the class loader, your code will attempt to use the old library CF uses. Attempting to load your classes before...
  5. jalpino

    custom 404 page...

    Are you on shared hosting? If so you might not be able to specify your own file for 404's. However if you aren't, setting up a custom 404 will be web server specific (ie. IIS vs. Apache). What web server are you using?
  6. jalpino

    CFFILE Dedupe

    Hi Boatguy, The reason for your error this time is because of the commas in your string (on line 40). Replace the comma with that variable called 'newDelim' or wrap the commas in double quotes like so: <cfset newFileContents = newFileContents & "," & email & "," & Date & "," & FirstName & ","...
  7. jalpino

    CFFILE Dedupe

    hi boatguy, I'm guessing you got the jist of what I was trying to show you, I hope it works out for you and if it doesn't, keep posting back to the forum so we can help solve it. As far as the error exception goes, GUJUm0deL picked off the code that was throwing the error, there should not be...
  8. jalpino

    301 redirect within Fusebox framework

    Does the <cfheader> tag not work in your version of FB? What version are you using? If you don't mind the 302, use <cflocation>. If you have to have the 301 and it doesn't work for some reason within the context the framework, call it from Application.[cfm|cfc] JAlpino
  9. jalpino

    CFFILE Dedupe

    Removing duplicate records in the CSV file, isn't all that difficult. Provided that each line in the file represents a row, and each row has the same number of columns (text delimited by the pipe), then you can use the <cfhttp> tag to automagicly convert the csv into a query. Once the contents...
  10. jalpino

    Removing White Space

    Stripping out all unneccesary whitespace and line breaks reduces the file size of your pages, which helps make them load faster and will save you money as bandwidth is reduced on page loads. For sites like MSN and Google, every little bit helps. JAlpino
  11. jalpino

    WHERE VALUENAME IN (#FORMVALUE#)

    Or you can use the listQualify() function, like so: SELECT * FROM dev WHERE dev_volgnr IN (#listQualify(FORMvalue)#) Hope this helps, JAlpino
  12. jalpino

    More than 1 CFIF Argument

    hi NetworkGhost, You are close, but there is no need for the extra pound signs(#) inside of your <cfif> statement. Good job with using the isDefined() function. If the variable doesn't exist, CF will short circuit your condition at that statement and save some processing time by ignoring the...
  13. jalpino

    changing server

    hi harrymossman, What do you mean by "How do I tell them to use the 6.1 server"? If you ment that you wanted to know to get dreamweaver and homesite to show the new functions\attributes\tags that exist for MX6.1, then you can download and install "Tag Updaters" found on Macromedia's downloads...
  14. jalpino

    Outputting a structure-of-a-structure

    Hi deepatpaul, Even though you can access your object in the same manner as an associative array (structure), the object is still a query object. Running the function isStruct() will yeild false, so it is not neccessary for you to initialize the variable with an empty structure. In anycase...
  15. jalpino

    Factory service to register CFX?

    csteinhilber, Any luck adding\registering the cfx tags? I'd be interested to find out the outcome. jalpino
  16. jalpino

    outputting an array

    hi daNewfie, what was the issue? Anyways, glad that you were able to resolve it. jalpino
  17. jalpino

    cfmail and a read confirmation

    Hi daNewfie, I don't know if mail clients can except it or not, but if your recipients can accept HTML emails you might be able to place an <iframe> or something similiar within the email, that intern links to a page on your server to records the 'opening' of the email. For example: <!---...
  18. jalpino

    Factory service to register CFX?

    csteinhilber, Take a look inside of the 'neo-runtime.xml' document under your \\{install_root}\lib\ directory. It looks like the wddx packet holds cfx tag information, maybe all you need to do is add to that structure and restart CF to recognize the change. jalpino
  19. jalpino

    CFGrid - Delete Options

    hi pathetic, I don't know about using the checkboxes to allow for multiple deletes, but if you use the attribute selectMode="edit", you should be able to edit and\or remove data from the grid. When you submit the form that the grid resides in, Coldfusion will return 3 arrays. Once you have this...
  20. jalpino

    date format

    bluestarcpc, If I understand you correctly, you are trying to format a date as the user types it in? If thats the case, then you probably want to post your question in the javascript forum. If that is not the case and you want to know how to convert the user's inputed value into another date...

Part and Inventory Search

Back
Top