URL Scope Disappearing - Bug?

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

  1. #1

    Default URL Scope Disappearing - Bug?

    Hi folks,

    Having a problem I've never seen before. URL scope appears to be empty
    while looping over a query. For example, this:

    BEFORE: <cfdump var="#url#"><br>
    <cfloop query="students">
    DURING: <cfdump var="#url#"><br>
    </cfloop>
    AFTER: <cfdump var="#url#">

    .... outputs this:

    BEFORE:
    struct
    ACCOMPLISHMENT_ID foo
    CENTER_ID bar
    METHOD viewCompleteReport

    DURING: [empty string]
    DURING: [empty string]
    DURING: [empty string]
    DURING: [empty string]
    DURING: [empty string]

    AFTER:
    struct
    ACCOMPLISHMENT_ID foo
    CENTER_ID bar
    METHOD viewCompleteReport

    Any ideas what's up with this? I can copy URL scope to request scope
    as a hack workaround, but I'd really like to know the cause before I
    hack around it.

    Thanks!

    Jim

    Jim Guest

  2. Similar Questions and Discussions

    1. Disappearing Widgets
      It's hard to know exactly what it looks like, but a client in Hawaii says a site we are testing has a disappearing menu. I have a Spry Horizontal...
    2. Disappearing Swap
      On Mon, Feb 14, 2005 at 02:35:18AM +0000, John wrote: A good start would be to just look at the output of `ps aux` and to focus on the memory...
    3. Disappearing Icons
      When I open any folder that contains an Illustrator file in Windows Explorer, my icons show for about 2 seconds then totally disappear for anywhere...
    4. Problem with sessions (in global scope vs class scope)
      Hello, i'me having a wierd problems with sessions. PHP 4.3.3, Register globals is on, and the sessions module is installed. if i have a page like...
    5. disappearing quicktime
      I have an intro that contains some quicktime movies. They worked fine on a mac when the intro was made, and for a while they seemed to be ok on...
  3. #2

    Default Re: URL Scope Disappearing - Bug?

    Just thought I'd ping this once now that it's Monday morning. Also,
    forgot to mention I'm running CFMX 6.1. Really have no idea how
    looping over a query could mess with URL-scope, as appears to be
    happening.

    Thanks!

    Jim

    Jim wrote:
    > Having a problem I've never seen before. URL scope appears to be
    empty
    > while looping over a query. For example, this:
    >
    > BEFORE: <cfdump var="#url#"><br>
    > <cfloop query="students">
    > DURING: <cfdump var="#url#"><br>
    > </cfloop>
    > AFTER: <cfdump var="#url#">
    >
    > ... outputs this:
    >
    > BEFORE:
    > struct
    > ACCOMPLISHMENT_ID foo
    > CENTER_ID bar
    > METHOD viewCompleteReport
    >
    > DURING: [empty string]
    > DURING: [empty string]
    > DURING: [empty string]
    > DURING: [empty string]
    > DURING: [empty string]
    >
    > AFTER:
    > struct
    > ACCOMPLISHMENT_ID foo
    > CENTER_ID bar
    > METHOD viewCompleteReport
    >
    > Any ideas what's up with this? I can copy URL scope to request scope
    > as a hack workaround, but I'd really like to know the cause before I
    > hack around it.
    Jim 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