Host Header Flash Forms Problems

Hello,
I'm running CFMX 7.01 on IIS 6, Windows 2003 Server....
I've created an intranet application that uses several flash
forms. The site is located in the folder of
C:\Inetpub\wwwroot\CorpComWeb. This can be referenced from the
Default website by
http://sandy/corpcomweb/ OR
http://CorpComm (after adding an
internal DNS host header and then referencing it in Website -
Advanced - Host header value). This works great for every page
EXCEPT the two pages that contain CF Flash Forms. When I try to
access these pages using
http://CorpComm/flashformpage.cfm it spins into infinity (no
error just never loads). If I access the page by
http://sandy/corpcomweb/ the
page loads fine.
Any ideas as to why this would be?
Thanks in advance!

Ok, stupid mistake on my part.
When creating the new site in IIS, I forgot to add a virtual
directory pointing to CFIDE...

Similar Messages

  • Cf8 Flash Form Problems

    After we upgraded to CF8 all of our flash form are giving us
    this error:
    Error generating Flash Movie from form definition.
    from this site:
    http://cf.acesag.auburn.edu/fisheries/publications/
    Any ideas guys? I really need this up and running fairly soon
    cheers,
    troy

    You might want to check your IIS mappings and make sure it's
    pointing to the correct CFIDE directory in the new ColdFusion 8
    installation. I had a similar problem and found it was still
    pointing to the CF 7 directory.

  • Open list form across host header site collections via Modal Dialog window

    Hello,  I have a web application that has two host header site collections in it.  When a user is on Host Header A, I need to open a list's display form that's located on Host Header B.  I'm using the JS function  SP.UI.ModalDialog.showModalDialog(options)
    to open a dialog window to the host header B list's display form.  It loads and shows all the columns, but there are a couple issues.
    1) The scroll bar on the dialog window is not active (can't scroll up or down to see all the columns).  This is an issue on all browsers (IE 8 &9, Chrome, FF)
    2) In IE, the SP ribbon does not display.  In Chrome and FF the ribbon does display and the buttons work fine.
    There's no errors in the ULS logs, and if I use IE8, there's a JavaScript "Access Denied" error.  I've confirmed the user account has permissions on both sites & list.
    My first thought had to do with anonymous access being turned on at the web application level (not the site level) and the credentials not being passed to the new site collection.  But this isn't the case because in Chrome, the ribbon shows and the
    buttons are security trimmed correctly based on the users permissions.  So I know the credentials are getting passed through the dialog window.  And when I use the "Edit' button on the ribbon in chrome, it opens a new dialog window and everything
    works correctly (Scroll bar and ribbon).
    Has anybody been able to successfully open a list form across two separate host header site collections?

    I ended up getting around the cross site collection in the modal window issue by using a custom ASPX page that works as a redirect using JS.  
    The link the end user clicks pops open the aspx page in a dialog window.  I then pull the URL of the list item I want to open from the URL and have JS open that form in the modal window.  The key seems to be to open the redirect aspx page under
    the same site collection as the list item you want to view.
    Here's the JS that's in the aspx page.
    <script type="text/javascript">
    // We name the current dialog windown
    window.name = "newSiteWindow";
    // wait until we know the the JS lib is loaded
    ExecuteOrDelayUntilScriptLoaded(loadNewSite, "sp.js");
    function loadNewSite() {
    //grab the list item URL from the URL of the dialog window using a pre created function
    newURL = GetUrlParmByName("listItem");
    //append our dlg query to the end so everything displays correctly. If you do not use IsDlg=0, the ribbon does not display and the window will not scroll.
    newURL = newURL + "&IsDlg=0";
    //use the current window to open the list item we want to go to.
    window.open(newURL, "newSiteWindow");
    </script>

  • I Need Dire Help Making a Flash Form

    Hello, I need some serious help creating a Flash Form.
    I Have used a template from another site with the following
    input boxes:
    Name: __________
    Email: __________
    Comments: ____________
    However, i had the script working fine, along with its php
    script,
    when i was trying to add more "text" boxes, i must have
    messed the script up somhow.
    When I submit that form, the name is send and email, but the
    email is blank.. ie, there is no "comments"
    here is the code:
    on submit button:
    on (release) {
    // send variables in form movieclip (the textfields)
    // to email PHP page which will send the mail
    form.loadVariables("email.php", "POST");
    sent email messege
    onClipEvent(data){
    // show welcome screen
    _root.nextFrame();
    and the php script (mailer.php)
    php form email.pho
    <?php
    * PHP 4.1.0+ version of email script. For more
    * information on the mail() function for PHP, see
    http://www.php.net/manual/en/function.mail.php
    // First, set up some variables to serve you in
    // getting an email. This includes the email this is
    // sent to (yours) and what the subject of this email
    // should be. It's a good idea to choose your own
    // subject instead of allowing the user to. This will
    // help prevent spam filters from snatching this email
    // out from under your nose when something unusual is put.
    $sendTo = "[email protected]";
    $subject = "My Flash site reply";
    // variables are sent to this PHP page through
    // the POST method. $_POST is a global associative array
    // of variables passed through this method. From that, we
    // can get the values sent to this page from Flash and
    // assign them to appropriate variables which can be used
    // in the PHP mail() function.
    // header information not including sendTo and Subject
    // these all go in one variable. First, include From:
    $headers = "From: " . $_POST["firstName"] ." ".
    $_POST["lastname"] . "<" . $_POST["email"] .">\r\n";
    // next include a replyto
    $headers .= "Reply-To: " . $_POST["email"] . "\r\n";
    // often email servers won't allow emails to be sent to
    // domains other than their own. The return path here will
    // often lift that restriction so, for instance, you could
    send
    // email to a hotmail account. (hosting provider settings may
    vary)
    // technically bounced email is supposed to go to the
    return-path email
    $headers .= "Return-path: " . $_POST["email"];
    // now we can add the content of the message to a body
    variable
    $message = $_POST["message"];
    // once the variables have been defined, they can be included
    // in the mail function call which will send you an email
    mail($sendTo, $subject, $message, $headers);
    ?>
    If anyone can see why the "comments" section is not being
    sent?
    Also: My original problem was how do you add more text boxes.
    I want something like this:
    Name:
    Address:
    Phone:
    Mobile:
    Email:
    Website:
    Comments:
    Ive spent days and days trying to work out how to first make
    a form that actually works, then add more text fields
    Ive looked at many basic form tutorials, but they all seem to
    only have 3 or 4 text fields.. Name, Email, Comments... etc
    I haven't a clue how to edit the script both in action script
    and php to add more fields easy.
    I really need some help with this, its turning into a
    nightmare for me.
    I can provide someone with my .fla project file if they care
    to take a look at what im doing wrong.
    Thanks
    Pan
    ps. Please note: "$sendTo = "[email protected]";" =
    this line i know i must put in my own email.

    This is all about timelines. It seems there is a movieclip
    named 'form' (or possibly an actionscript object, can't tell). Any
    variables created on that timeline are sent.
    So you could have your new textfields on another timeline.
    Or you could have textfields with no instance name in the
    form timeline.
    Those are the first two things to look at. Post the FLA and
    we can tell you more specifically.

  • GET FLASH FORM TO WORK

    OK, I am trying to get my flash form to work and I'm working
    with a template from FLASH MX BIBLE. I'm going to paste both my
    action script and my cgi script in here & hopefully I can find
    an answer to why it doesn't work. Basically what happens is it says
    it was received, but it wasn't. ... or it is but none of the words
    come through (this happened earlier before I tried tweeking the
    script... which I think made it worse).
    ........ thank you thank you to anyone who can help me

    Hi kglad. One. not sure how to "use the onData event of
    receiveLoad and see what error message you're getting." Sorry,
    don't use as2 very much. Two. I am doing all this on the same
    domain, so there should not be any security issues.
    I asked goDaddy what the problem might be and this was their
    (snarky) reply;
    "As you have already been informed, when using a flash form
    on your site, in the scripting for the form you will need to
    reference our SMTP server at relay-hosting.secureserver.net and
    this server does not require authentication."
    They gave me this code a couple of days ago and told me to
    stick this into my PHP code. It didn't help.
    This is beyond me I am afraid.

  • Href in CF FLASH FORM

    I'm having some problems with my Rich Form using Flash Forms
    built into ColdFusion8. When I add the href and ran the site, when
    you click on the column and item under that column nothing happens.
    What is missing here?
    <cfform name="myForm" format="flash" width="400"
    height="300" skin="haloorange">
    <cfformgroup type="panel" label="Current Accounts">
    <cfformgroup type="horizontal">
    <cfinput type="text" name="forInput" width="120"
    onchange="#actionFilter#" label="Filter by:">
    <cfselect name="column" label="in:"
    onchange="forInput.text=''" width="90">
    <option value="Account_Type">Account
    Type</option>
    <option
    value="ID_Company_Community">Community</option>
    <option value="LastLogin">Last Login</option>
    </cfselect>
    </cfformgroup>
    <cfgrid name= "data" query="memberList" height="200"
    rowheaders="false" selectcolor="##FFFFCC">
    <cfgridcolumn name="Account_Type" header="Account Type"
    href="test.cfm">
    <cfgridcolumn name="ID_Company_Community"
    header="Community">
    <cfgridcolumn name="LastLogin" header="Last Login"
    mask="MMMMM-DD-YYYY">
    </cfgrid>
    </cfformgroup>
    </cfform>
    When you click on an item under that column shouldn't it take
    you to test.cfm????
    --------- UPDATE --------
    I see that the href IS NOT supported in the FLASH format. Is
    there way to accomplish the task without href? How can I make a
    column a href and redirect the user to a details page for that
    selected listing? Thanks
    Thanks for your anticipated response.
    Todd Warne

    Hi-
    I copied your form code and submitted the variables back to
    that page, and got no error, for what that's worth. My guess is
    that the prob. might be in the page you're submitting to rather
    than in the form itself?

  • Flash Forms and onchange

    OK, I need help. I've just started using flash forms, and I
    love them. But, I have a problem. In this example I have cfinput
    boxes a, b, and c. After the user adds data to a and b, I use
    javascript to subtract b from a and insert the value into c, using
    onchange="subtractme();" in the b tag. Problem is, the form never
    loads. What am I doing wrong?
    <script language="javascript">
    function subtractMe1() {
    document.cool.c.value=Math.round(document.cool.a.value -
    document.cool.b.value);
    </script>
    <cfform name="cool" format="flash">
    <cfinput type="text" name="a" width="60" >
    <cfinput type="text" name="b" width="60"
    onChange="subtractMe1();">
    <cfinput type="text" name="c" width="60">
    </cfform>

    On Linux or Unix, you may need to create a symlink to cfide
    directory as CFIDE (case sensitive) in your web directory. Have
    your host issue the following command.
    ln -s /path/to/web/dir/cfide CFIDE
    Additionally, Firefox 1.5 loads Rich Flash forms fine on my
    OSX running Panther 10.3.9.
    Rock.
    -S

  • Email form problems

    I am trying to get a simple as2 email flash cs3 form to work
    on our goDaddy hosted server. They are not sure how to help. Their
    advice is to change the extension from .php to .php5. Does anyone
    have as2 Flash script and php script that will make a email form
    work on goDaddy? I am posting my code for both that does not work
    now.

    Hi kglad. One. not sure how to "use the onData event of
    receiveLoad and see what error message you're getting." Sorry,
    don't use as2 very much. Two. I am doing all this on the same
    domain, so there should not be any security issues.
    I asked goDaddy what the problem might be and this was their
    (snarky) reply;
    "As you have already been informed, when using a flash form
    on your site, in the scripting for the form you will need to
    reference our SMTP server at relay-hosting.secureserver.net and
    this server does not require authentication."
    They gave me this code a couple of days ago and told me to
    stick this into my PHP code. It didn't help.
    This is beyond me I am afraid.

  • Coldfusion does not recognize IE11 - Flash forms not working.

    This is a problem that has me banging my head on my desk. We have a web application that still uses Flash based web forms. (Before anyone says it, I know we need to get away from the flash forms, but we cannot do this overnight.) The problem is that because IE11 no longer passes MSIE in the USER AGENT string, ColdFusion is placing an <Embed> tag instead of an <Object> tag to load the flash. I know that we could add our site to the Compatibility List, however we have too many users to guide this through. We need a solution that we can perform on our side, either modifying code, ColdFusion, or IIS. First has anyone else run into this problem? Does anyone have any potential solutions?
    Thanks in advance for your help.

    We did find a stable work around that "tells" coldfusion to render flash forms for IE 10 even though the server call is coming from IE 11.  I don't believe Adobe would necessarily want the method that we were forced to use advertised.  It involved adding 10 lines of CF code to the top of each page that used flash forms.  It was very unorthodox and we are simply using this to buy time to get our forms off the flash platform.  I would be willing to email the solution to anyone interested.

  • Flash forms -- Not displaying in IE

    This is my first foray into flash forms, and I discovered
    yesterday that while they look/work beautifully in Firefox
    (2.0.0.4), they're not displaying at all in IE (6 or 7).
    I'm using it to force the user to input their date in a
    uniform format, so I'm sure there's a non-flash workaround. I'd
    like to get this sorted out though, so my future work with flash
    can be more involved.
    Code is attached. Please let me know if I can provide further
    clarification.

    Michael --
    Thanks for your help.
    I think I've narrowed the problem down -- it's not that it
    won't display my flash form in IE, it's that it won't display it in
    a Fusebox environment. I'm going to poke over at their site to see
    what they have to say -- I suspect I'll need to upgrade the version
    of Fusebox that I'm using. :)

  • How to validate date fields in the flash form

    i want to validate the date fields to make sure the values
    are not greater than today's date and from-date is less than or
    equal to to-date in the flash form. Does the actionscript have a CF
    DateDiff function for the validatation?
    Thanks

    I finally (after much reading up on actionscript) figured out
    my problem with date validation...which was similar to yours...
    I posted the solution I found for my AS date validation issue
    here:
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=22&threadid=1232361
    I hope it helps!!!

  • Flash forms in Safari 3.0

    I just installed the new Apple Safari 3.0 for Windows. I
    wanted to see how our web site would work with the new browser. I
    found that flash forms do not load. All I get is a blue lego block
    with question marks. I checked the plugins and there is a listing
    for "Shockwave Flash" version 9.0 r45. Is there something else that
    needs to be installed to make this work?
    Thanks,
    Don

    Count me on with the problem. We are running CF 7. I have
    also not found anything. I did report it using the little bug in
    Safari 3 and have been looking for the latest releases of the
    browser. I love the browser overall (I am an apple fan) but we need
    this to work. I am wondering if the problem is in how CF renders
    and puts out the flash content. Some kind of meta data that is not
    up to date? Have no clue however.
    Marius Morosanu
    [email protected]
    www.goreve.com

  • How to get "Subject" & "Message" text from Flash form to default e-mail MS Outlook?

    Hi,
    I have the following code which is working fine except I can't get the user typed data from flash form to my default e-mail (MS Outlook) application. How to edit the following code?
    In the code:
    1) To  ---->  this field is okay since this email ID doesn't change
    2) Cc  ---->  this filed is also okay since no changes will be in email ID
    3) Subject  ----> this may not be always as "Feedback", user may like to change the subject
    Whant I would like to add more here is:
    1) From  ----> this text to be retrieved from "fromText.txt" input text box
    2) Message  ----> this text to be retrieved from "MessageText.txt" input text box
    //1.Button event listener
    SendMail.addEventListener(MouseEvent.CLICK, SendEMail);
    //2.The SendMail function open up email application to send email.
    function SendEMail(event:MouseEvent):void {
    var email:URLRequest = new URLRequest("mailto:[email protected]?CC=[email protected]&Subject=Feedback");
    navigateToURL(email, "_blank");
    Thanks in advance for any support.
    Regards.

    Thanks for the reply. I tried the code and result is like the following:
    To: [email protected]
    Cc: [email protected]
    Subject: [object TextField]?body=From: [object TextField]
    Body: Blank
    The problem exist in SUBJECT & BODY.
    Further help, please.
    Thanks.
    PS: I removed the ? before body and put & ------> the result is as follows:
    To: [email protected]
    Cc: [email protected]
    Subject: [object TextField]
    Body: From: [object TextField]
               [object TextField]
    One more thing that it opens an empty web page with the following text in adress bar:
    mailto:[email protected]?CC=poweruser@helpdesk&Subject=Feedback

  • International characters in flash forms

    Hello. Is there any way to put international (here: polish)
    characters into flash forms (like text input)? Thanks in
    advance.

    PIT_PIT wrote:
    > Hello. Is there any way to put international (here:
    polish) characters into
    > flash forms (like text input)? Thanks in advance.
    yes:
    http://www.sustainablegis.com/projects/flashforms/unicode.cfm
    <cfprocessingdirective pageencoding="utf-8">
    <cfquery name="getU" datasource="unicodeLab">
    SELECT uniText, uniLanguage
    FROM unicodeTest
    WHERE uniLanguage='russian'
    </cfquery>
    <cfsavecontent variable="inputStyle">
    borderStyle:none;
    disabledColor:#2e8b57;
    fontSize:11;
    backgroundColor:#EFF7DF;
    fontFamily:'Arial Unicode MS',Arial,Helvetica,sans-serif;
    </cfsavecontent>
    <cfparam name="form.unicodeTxt"
    default="#getU.uniText#">
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN">
    <html>
    <head>
    <title>flash and unicode</title>
    </head>
    <body>
    <cfform action="unicode.cfm" method="POST"
    format="Flash">
    <cfformgroup type="HORIZONTAL">
    <cfinput type="Text" name="unicodeTxt" width="120"
    required="No" visible="Yes"
    enabled="Yes" size="20" maxlength="20" style="#inputStyle#"
    value="#form.unicodeTxt#" label="unicode text:">
    <cfinput type="Submit" name="go" value="submit"
    visible="Yes" enabled="Yes">
    </cfformgroup>
    </cfform>
    </body>
    </html>

  • Flash Forms Not Rendering in IE7, Flash 9

    We're having a problem with flash forms in IE7 and Flash
    Player 9 not rendering the entire form. The form works fine in
    Firefox 2. It looks to be a problem with how the Flash player is
    able to pull back data in IE7. Likely this pertains to how IE7
    handles security of plug-ins.
    Oddly, we've noticed that uninstalling the Flash 9 player and
    then reinstalling results in the form rendering correctly the first
    time, but on subsequent views the form no longer renders correctly.
    Specifically, we're not seeing data that is being called via
    Flash remoting in cfselect tags (state and country information).
    And we're not seeing text rendered that is in cfformitem tags. Our
    dev url is:
    http://hopeequity.beaconfire.com/loggedout/index.cfm?event=StartInvesting_StartAGroupStep1
    If anyone has an idea of why IE7 might not be able to render
    the form correctly, or might have security-related issues with
    remoting and Flash 9, please reply.

    I was granted access to the manuals on our prod server (the
    site is set up where you have to log in to see the manuals). The
    manuals are behaving differently on the prod server than in our dev
    server. The following is happening on the prod server:
    - the flash menus are appearing on our prod server in FireFox
    only.
    - I had reported in our dev area that when I right clicked on
    the left hand side where the menus are to appear in IE that the
    Flash menu displayed. This is not the case in our production area.
    - I get the "This page contains both secure and nonsecure
    items" when viewing the site on our prod server through IE
    I've asked them what version of RoboHelp they are using and
    no one seems to know. It seems they don't regenerate their help
    files (manuals) very often.

Maybe you are looking for

  • Download or upload module pool

    Hi all, I want to know how can i download a module pool program entirely with all its code, screens, includes etc onto a local system and then upload the same into another local server. there is no connectivity between two servers. please share your

  • What is a Scorecard Custom Set Formula and how do I use it?

    When creating a Scorecard (in Dashboard Designer) which includes a KPI, in the right "Details" frame, there is a section for "Set Formulas" and under that (along with Time, which I understand) is "Custom" which I can't find any documentation for. How

  • Various includes in a structure...

    Hi, When I go in a table called BUS_DI, I see various includes in it. What does that include mean ? Does it mean various field of the include table are also included in that structure ? Thanks. -Rajesh.

  • Prevent closure of user defined field forms

    Hi. I need to prevent the closure of a user defined fields form while the parent form is opened. I can trap the et_FORM_UNLOAD before event but seems is too late to prevent the closure. Have anyone some idea about it? Ciao. Nicola

  • "Free song balance out of date" Can't clear it to purchase songs - ideas?

    After going through my Coca-Cola Free iTunes songs, and downloading all the tracks I wanted, the last Free Song notification box didn't clear. Next to my account name at the top right of iTunes, is a box with '1 Song' in it, that just won't go away.