cffile.ServerFileName to enter jpg path in Access

Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default cffile.ServerFileName to enter jpg path in Access

    I am uploading a jpg using cffile and want to use cffile.ServerFileName to
    input the directory the file is in into a access database. This makes sense
    theoretically but I have no way of knowing how to actually do it.

    When cffile uploads the jpg to a folder on my server how do I use
    cffile.ServerFileName to tell the microsoft access database it is there?

    I have two pages... one is uploadfileform.cfm (where you click the submit
    button for the file) and the other is uploadfileaction.cfm (that actually
    submits it)... I tried to use an "insert record" server behavior on the submit
    button on the uploadfileform page but that doesn't seem to put the path to the
    database...

    more or less I don't know how to use the cffile.ServerFileName or place it in
    my code correctly to do what I need. Any suggestions. Thanks!



    AWZ Guest

  2. Similar Questions and Discussions

    1. cffile delete timeout with unc path...
      Hello, In my installation, cfmx interract with data hosted on a NAS (W2K Storage). I use UNC for file manipulation (upload, delete, edit...)...
    2. want to use cffile.ServerFileName to enter jpg path inAccess
      I am uploading a jpg using cffile and want to use cffile.ServerFileName to input the directory the file is in into a access database. This makes...
    3. designating a relative path using <cffile>
      I had a similar problem. After much expiramentation, I ended up using GetCurrentTemplatePath(). It's ugly but I blame Macromedia. :) <Cfset...
    4. cffile upload file field returns temporary path
      Hi, I'm attempting to use cffile upload and the FORM file field is being returned as ...
    5. ...template denied access to cffile
      I have an upload form set as follows: <cfinsert datasource = 'pre_reg_info' tablename = 'upload_table' formfields = ''> <cffile action='upload'...
  3. #2

    Default Re: cffile.ServerFileName to enter jpg path in Access

    cffile.ServerDirectory & cffile.ServerFile
    gwgiswebmaster 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