CFFORM, CFMX7, Linux

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default CFFORM, CFMX7, Linux

    I'm using CFMX 7 on SUSE LES 8.

    when I specify cfform format="flash", the form doesn't render.

    it seems to create a transparent block to whater size i specify.

    Even when using examples from Forta's Intro to CFMX 7 and this article

    [url]http://www.macromedia.com/devnet/mx/coldfusion/articles/richforms.html[/url]

    OpenOrange Guest

  2. Similar Questions and Discussions

    1. CFMX7 cfform format Flash on IIS 6 Prblem
      CFMX7 cfform format Flash on IIS 6 with Verify that file exists enabled does not work. I have followed technoteabout Windows file permissions at,...
    2. CFFORM Flash & Linux
      I've written an application that works extremely well on my development box (Windows XP Pro) on CFMX7 using CFFORM and flash. I cannot seem to be...
    3. CFFORM CFMX7 and Flash
      I recently upgraded to CF MX7. The new Flash printing works like a charm...but the new CFFORM fails if I set format equal to flash. It works...
    4. Password Confirmation using cfform CFMX7 (flash form)
      Im trying to validate with cfform (flash form) using CFMX 7, the field PASSWORD and RE-PASSWORD with FLASH FORMS. Any idea?? Regards
    5. CFMX7 flash format CFFORM and Javascript
      the getURL actionscript function worked for me. onclick=getURL('javascript:myfunction()')>
  3. #2

    Default Re: CFFORM, CFMX7, Linux

    ok, I partially have figured out my problem. It has to do with running virtual
    hosts.

    the flash form looks for javascript files in the CFIDE's script folder

    let's say I install the CFIDE to
    /srv/www/host1
    host1.somesite.com

    and I have another site
    /srv/www/host2
    host2.somesite.com

    it can't load the proper .js files b/c the CFIDE directory does not exist in
    the host2 folder

    (thanks MACR for the "feature")

    now, I can create a symbolic link for CFIDE (& cfide) in the host 2 folder to
    reference the actual CFIDE folder, but I still have one problem.

    The form actually begins to load now, but I get

    RSL Load Failded 40%
    Please reload.

    Any ideas?

    OpenOrange Guest

  4. #3

    Default Re: CFFORM, CFMX7, Linux

    Here's my set up, SUSE Linux Enterprise Server 8, CFMX 7, and Apache 1.3.26

    Here's a little history: When CF is installed on Linux, it creates a CFIDE
    directory, and symbolic link to it called cfide.

    When using CFFORM format="Flash" it references files in the CFIDE/scripts
    directory

    By default, a virtual host will not be able to use CFFORM Format="Flash" b/c
    the CFIDE directory does not exist in the vritual host's web root.

    The solution to this is to create a symbolic link to the original CFIDE
    directory: $ln -s /var/www/CFIDE /var/www/somehost/CFIDE

    Now, this will give you access to the CFIDE/scripts directory for your site,
    and should work

    If you are still having trougble and are getting the error "RSL Load Failded,"
    check you apache config file and see if you are forbidding access to symbolic
    links. Comment out the line and everything should work fine.

    OpenOrange Guest

  5. #4

    Default Re: CFFORM, CFMX7, Linux

    Not to knock MACR or anything, you guys really do make a great product.

    This type of thing just makes me wonder how much do you QA your stuff. Now, I
    know this type of problem I had may be a 1 in a million chance of happening.
    Here, I have provided you with a problem and also the solution for it. You
    should really consider making a technote about it.

    OpenOrange 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