Is there a CFMX tag to skip CF processing?

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

  1. #1

    Default Is there a CFMX tag to skip CF processing?

    We've got large access log files in our secure intranet. They're stored as
    ..TXT files, and not being processed by CFMX, which in itself is not an issue.
    The problem is that the security routines in application.cfm don't run when a
    ..txt file is called.

    What I want to do is store the logs in .cfm files, but not waste valuable CPU
    processes by attemping to parse the megabytes of data in each log. Is there a
    tag that will skip the processing of data?

    ie:


    <CFBYPASS>
    tons of data here... all to be ignored by CFMX
    </CFBYPASS>

    Thanks for help that anyone can give.

    Rob

    rob@whizbang.net Guest

  2. Similar Questions and Discussions

    1. How to skip the unbounded column...? new bie
      Hello groups, I got one problem i am using <%# DataBinder.Eval(Container.DataItem, "Column1")%> in the itemtemplate of the datagrid for the...
    2. Prevent CFMX Processing in Directory
      jsm, You were close. Instead of setting execute permissions, you have to remove the App Mappings for .cfm. There should be a button next to...
    3. RIS - skip auth. proces
      Hi there, is there any way to skip the authentication on the beginning of a RIS installation proces ??? regards, Christian
    4. Skip to chapter...
      Being a great one for learning things from the middle on out, I would like to make a button in Flash MX for my plain-HTML website. I'm familiar...
    5. [PHP] htmlentities -- can it skip tags
      Justin French wrote: You'll have to build one. If you know what characters are causing trouble, you could just use str_replace on them. Or...
  3. #2

    Default Re: Is there a CFMX tag to skip CF processing?

    Are you storing the logs in .cfm files just to add security so they can't be
    viewed outside the application.cfm rules?

    If so, a better solution would be to store the logs in a directory on the
    server that is outside the web document root. Use the server to restrict access
    to the files/directories, then use a ColdFusion program to view or process the
    log files.

    Does that make sense?

    -Paul


    dempster Guest

  4. #3

    Default Re: Is there a CFMX tag to skip CF processing?

    <!---
    tons of data here... all to be ignored by CFMX
    ---!>
    Mr Black Guest

  5. #4

    Default Re: Is there a CFMX tag to skip CF processing?

    I agree with dempster, but also .. what about cfabort?
    Mike Greider 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