Ask a Question related to Macromedia ColdFusion, Design and Development.

  1. #1

    Default cffile uploads

    I need to find the url of a file after uploading it using cffile so that I can insert the filepath in a database.

    Thanks
    ckainc Guest

  2. Similar Questions and Discussions

    1. Web File uploads
      While trying to do a simple file upload via a web form, (enctype="multipart/form-data"), I've run into a problem that has me stymied. This is an...
    2. SSL in Dreamweaver FTP Uploads
      DW MX 2004 supports FTP, and SFTP transmission of content to remote server. It does not support FTP via SSL. Are there plans to add SSL, or are...
    3. Uploads from third parties to me
      Is there a code that allows third party viewers of my web page to upload pictures and file to my computer/server, such as having my sister upload...
    4. PHP and file uploads
      Hi All, Here's one thing that I don't know much about - file uploading. As part of my project, I will have to build a file manager of sorts -...
    5. Uploads with MySQL
      Troubles getting a file upload into a MySQL DB to work. Any help is appreciated. It keeps arriving at up.php without any get data, but has worked...
  3. #2

    Default Re: cffile uploads

    After you upload with CFFILE
    <cffile action="upload" ... >

    Use the CFFILE variables
    <cfoutput>
    File was uploaded to directory #CFFILE.serverDirectory#<br>
    Uploaded file name is #CFFILE.serverFile#<br>
    </cfoutput>

    See
    [url]http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/tags-p35.htm#wp3540091[/url]

    mxstu Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139