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. alarge23

    Can not access CF Administrator

    IIS web server? Is .cfm setup as a valid MIME type in the magement console?
  2. alarge23

    Session is invalid

    Try placing a CFLOCK around any code that sets a session variable. I have seen a variety of issues occur when this is not done. Start with this and see if it fixes your issue.
  3. alarge23

    ColdFusion Database Browser Like phpMyAdmin?

    This is open source and works well for SQL Server: http://dbx.riaforge.org/
  4. alarge23

    app server and database server

    If you haven't already figured this one out, Ben Nadel offers a possible solution for Coldfusion handling the CSV file: http://www.bennadel.com/index.cfm?dax=blog:498.view He shows how to load a CSV file into a CF array, then you could load data directly to Oracle thru CF (and not mess with...
  5. alarge23

    Coldfusion and Caching problems!

    Have you tried clearing your browser cache? Perhaps it is not a coldfusin issue, but rather that your browser has that page cached locally? Make sure your browser is set to look for new versions of the page on every visit. Here is article that gives some steps on how to do this (in IE)...
  6. alarge23

    Forum Software

    try this one (it's free): http://galleon.riaforge.org/
  7. alarge23

    Cleaning After An Sql injection.

    You might try posting this thread in a SQL forum and have better luck. But if I am understanding what you need this might work for you...First, you need a function that can find the "nth" occurrance of a charcter(s). See below. Once you have that function you can update the table(s) affected...
  8. alarge23

    How do I create fake directories?

    Yes, it is true. My point is that Coldfusion won't parse it. I never commented on IIS/Apache parsing capabilities. I just wanted to ensure it was clear coldfusion can't do this. From the Comments section: "I try it, it works. Another question, instead of this...
  9. alarge23

    How do I create fake directories?

    The link posted by DigitalRedneck is a good example of how to do something similar to what you are wanting. But as Ray's blog demonstates you need the .cfm file in the URL (or coldfusion won't parse it).
  10. alarge23

    How do I create fake directories?

    Not sure if that is possible. Coldfusion can only parse documents where it recognizes the extension (.cfm,.cfc).
  11. alarge23

    Web Application performance tips

    Sounds like you are on the right track. Typically I don't worry too much about coldfusion pages unless they run over 2000 ms (2 seconds). CF8 (even the developer edition) has a great new tool for watching server/query performance. Take a look at the features of the Server Monitor, might be...
  12. alarge23

    How do I create fake directories?

    If I am correctly understanding what you want to do, I have done something similar before. I allowed users to upload files to an intranet site. During the upload process (after the file succuessfully loaded) I inserted a DB record linking the file to a key in a table. Then to access their...
  13. alarge23

    Fetch data and put in XML

    Yes. Here is a pretty good example: http://labs.adobe.com/technologies/spry/samples/utils/query2xml.html
  14. alarge23

    Submit multiple forms with one button

    Kind of lost me with the description. However, if you want to submit multiple forms with one button, an easy way would be to create hidden fields in one of the forms. When the user clicks the submit button run javascript to copy data from other forms to the hidden fields, then proceed with...
  15. alarge23

    Printing from web

    Check out CFPRINT tag (new to CF8). However, your source file must be a PDF. http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Part_3_CFML_Ref_1.html
  16. alarge23

    Form entry and SQL

    What you are doing is fine. However, not sure about the "neq" condition you have. I would use this instead... <cfif form.pocFirstname is form.expertFirstname and form.pocLastname is form.expertLastname> <!--- POC and Expert are the same person so I can use poc (or expert) form entry for the...
  17. alarge23

    Loop over CF ValueList in ColdFusion

    This should work... If you select a value not in "TheList" (17 or 18) it will hide the ID else it will show the ID. <cfset request.TheList = '13,14,15,16'> <script type="text/javascript"> function show(){ var stringToSplit = '<cfoutput>#request.TheList#</cfoutput>'; var arrayOfStrings...
  18. alarge23

    upload files to suse Linux

    BACKGROUND: I have a CF process which allows users to upload files to my web server. Then view the files thru Internet Explorer. My process accepts .DOC,.XLS,.TXT,.PDF. It works great on windows server but my site is now moving to a suse linux server. PROBLEM: The upload process still works...
  19. alarge23

    Day Light Savings - datediff/dateadd

    Maybe, and that is my original question. However, if you run the queries below in SQL Server (version 2000) you get 24 hour difference. SELECT DATEDIFF(hh,'2006-10-28 15:00:00.000','2006-10-29 15:00:00.000') AS difference SELECT DATEDIFF(hh,'2007-03-10 15:00:00.000','2007-03-11 15:00:00.000')...
  20. alarge23

    Day Light Savings - datediff/dateadd

    I am not too familiar with JVM 1.4.2-b28 is that more recent than 1.4.2_11? If not, than your JVM still thinks day light savings is the first Sunday in April. This no longer true. Begining this year Day Light savings is now the 2nd Sunday in March. According to Adobe, JVM 1.4.2_11 and...

Part and Inventory Search

Back
Top