CFIF statements-why isnt it working???

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

  1. #1

    Default CFIF statements-why isnt it working???

    I am trying to only allow a handful of URLs to pass though, otherwise relocate
    to home page..This code isnt workign however...any help woudl be
    appreciated...her is code:


    <cfinclude template="/clink_includes/global.cfm">
    <cfparam name="capwizurl" default="http://capwiz.com/fof/home/">


    <cfif capwizurl NEQ "http://capwiz.com/fof/home/">
    <cflocation url="http://www.family.org/cforum/">

    <cfelseif capwizurl NEQ "http://capwiz.com/fof/dbq/officials/">
    <cflocation url="http://www.family.org/cforum/">

    <cfelseif capwizurl NEQ "http://capwiz.com/fof/bio/?id=20004&lvl=F">
    <cflocation url="http://www.family.org/cforum/">

    <cfelseif capwizurl NEQ
    "http://capwiz.com/fof/officials/membersearch/?state=LA&searchlast=&lvl=state">
    <cflocation url="http://www.family.org/cforum/">

    </cfif>

    thanks,
    steve

    redman2215 Guest

  2. Similar Questions and Discussions

    1. My Code isnt working, why?!?!
      I corrrected the issue with the delete command. That was a stupid issue on my behalf, as i'm sure you'll see.... However, still battleing the...
    2. Reposting: wth this isnt working
      Ok sorry i messed the other one up and i cant edit it, so ill post it again but when i comes to the content area, "i will be using php with a php...
    3. One custom WebControl using it at several webpage with diffirent behaviour isnt working
      Dear all, I searched a lot on internet/newsgroups, without any correct answer for my problem. The problem is: ================ I have a...
    4. Contribute and <cfif><cfelse> statements
      I'm in the process of building some web page templates trhat will be used within Contribute by copy writers. I have a <cfif><cfelse> based function...
    5. Please help!! ASP.NET isnt working!
      Hi, I just installed IIS and when I tried browsing the link: http://localhost it says: "you are not authorized to view this page" HTTP...
  3. #2

    Default Re: CFIF statements-why isnt it working???

    On 2005-06-24 15:49:31 -0500, "redman2215" <webforumsuser@macromedia.com> said:
    > I am trying to only allow a handful of URLs to pass though, otherwise
    > relocate to home page..This code isnt workign however...any help woudl
    > be appreciated...her is code:
    >
    >
    > <cfinclude template="/clink_includes/global.cfm">
    > <cfparam name="capwizurl" default="http://capwiz.com/fof/home/">
    >
    >
    > <cfif capwizurl NEQ "http://capwiz.com/fof/home/">
    > <cflocation url="http://www.family.org/cforum/">
    >
    > <cfelseif capwizurl NEQ "http://capwiz.com/fof/dbq/officials/">
    > <cflocation url="http://www.family.org/cforum/">
    >
    > <cfelseif capwizurl NEQ "http://capwiz.com/fof/bio/?id=20004&lvl=F">
    > <cflocation url="http://www.family.org/cforum/">
    >
    > <cfelseif capwizurl NEQ
    > "http://capwiz.com/fof/officials/membersearch/?state=LA&searchlast=&lvl=state">
    >
    > <cflocation url="http://www.family.org/cforum/">
    >
    > </cfif>
    >
    > thanks,
    > steve
    I think you're going to want to flip this on its head and use EQ in
    your conditionals instead of NEQ. Take a look at your first cfif. If
    the URL is anything OTHER THAN [url]http://capqiz.com/fof/home[/url], it's going
    to go to [url]http://www.family.org/cforum[/url]. So if for example capwizurl is
    set to the value of the second conditional, it'll never get there
    because it won't make it past the first conditional.

    Matt
    --
    Matt Woodward
    [email]mpwoodward@gmail.com[/email]
    Team Macromedia - ColdFusion

    mpwoodward *TMM* 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