Flashpaper in CFM page question?

double post

quote:
Originally posted by:
hookechoes
ok.. thanks : )
also, do you know if verity search indexs flashpaper ?
I don't know but I wouldn't expect it to.

Similar Messages

  • How can I add an existing cfm page to a project?

    CFB3 Question: How can I add an existing cfm page to a project? I created a project and copied a file into the project folder but I can't seem to find a way to add the cfm file into the project.

    @Carl - Well heck, yes I did... But after reading your response I went back and tried right-clicking on and refreshing different things and what worked was right-clicking on the project name in the Navigator window and then clicking on refresh in that context menu.
    Thank you Carl!

  • Dreamweaver 8 not responding on cfm page

    I have an existing .cfm page that I'm adding
    <cfqueryparam> tags to several queries. Once I add the new
    code if I try to highlight it in code view Dreamweaver quits
    responding and peggs my processor and also uses around a gig of
    physical ram. This continues until I end the Dreamweaver task using
    Task Manager. The code is valid and works correctly through a web
    browser but hangs as soon as I try to select any text in
    dreamweaver. I'm wondering if anyone has experienced this type of
    issue and if so is there a way to stop it? Thanks in
    advance.

    On Wed, 4 Oct 2006 15:35:01 +0000 (UTC), "900spg"
    <[email protected]> wrote:
    >Just an update in case anyone else runs into this issue.
    I have deleted the
    >WinFileCache-*.dat as suggested above. I deleted the
    entire local configuration
    >directory and the registry keys for Dreamweaver as well.
    I did test the .cfm
    >page in question on a different machine running
    DreamweaverMX and it worked
    >just fine. I'm now in the process of rebuilding the
    entire page piece by piece
    >to try to determine the section of code that is causing
    this problem. When my
    >Dreamweaver hangs I get the following errors in my event
    viewer:
    > Hanging application Dreamweaver.exe, version 8.0.2.2809,
    hang module hungapp,
    >version 0.0.0.0, hang address 0x00000000.
    > and
    > Fault bucket 290312414.
    > A crash logs directory is not created. Will post more if
    I find the root cause
    >of the issue.
    I don't know if this is easier for you, but if you have more
    than one
    stick of RAM, you might try pulling them out one at a time.
    You might
    have a bad stick.

  • Problems indexing .cfm page

    I have a page at www.salleboise.com/contact.cfm that I am
    trying to index on
    a internal search program. The program won't read that
    particular file, but
    will index other .cfm files just fine. I don't see anything
    that would
    prevent the file from being read, but what I'm being told by
    the support for
    the search software is that this particular page is only
    responding to IE
    requests, not generic requests.
    What can I change? All the other page have the following
    <!DOCTYPE HTML
    PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    http://www.w3.org/TR/html4/loose.dtd">
    before the page starts, just like
    the contact.cfm page....
    What can I do?????

    I use a program called Zoom to create a internal search of my
    site.
    Zoom has its own index tool, and will index most of my .cfm
    pages, but won't
    do the one in question because (based on what their support
    says) it only
    reponds to IE or FF browser, not a generic GET command.
    Hopefully that makes more sense??
    "dempster" <[email protected]> wrote in
    message
    news:f7mf34$30m$[email protected]..
    > Do you mean that the search program won't crawl the
    page? It could be that
    > the
    > link is created by a JavaScript program which would work
    within a browser
    > but
    > not by the crawler. Could you provide more details?
    >

  • .cfm pages won't display on CF10 on Windows server 2008

    I have a new VPS setup that has CF10 running on a Windows 2008 box.  My site is setup in IIS and I can navigate to any root folder in browser.  That's because the root folder(s) recognizes index.cfm as a default page.  However, any time I click a link or manually enter a URL string that contains ".cfm" (even on index.cfm pages that display without the actual full path written out) it throws a 404 error.  Has anyone else run into this?  I know the site is running correctly because like I said, if you enter the following URL: http://www.kyndoutdoors.com/ it will display correctly.  However, if you enter http://www.kyndoutdoors.com/index.cfm it will error.  HELP!

    The wildcard handler handles urls without filenames (http://www.kyndoutdoors.com/), and that appears to be working.  However, the specific IIS handler mappings for "*.cfm" does not appear to be.  You might try using the ColdFusion Web Server Configuration Tool (WSConfig) to remove the IIS connectors (then restart IIS), and then re-add the connectors.
    Another thought: were your IIS sites added to IIS after ColdFusion was installed and configured for IIS?  If so, the connectors appear to not be propogating forward for new sites.  I've seen this behavior before with ColdFusion 9 and IIS 7.5, but CF10 seems to handle this better.  Again, removing and re-adding the connectors seems to resolve these situations for me.
    EDIT:
    Hmmm. 404 errror actually makes me think this may be a file permissions issue.  What account is the ColdFusion service running as?  Make sure that account has permissions to the folder containing your website(s).
    -Carl V.
    Message was edited by: Carl Von Stetten

  • Embedding video in cfm page

    I am trying to embed a video in a cfm page.  The FORM page before is where they can link the video URL and the preview page is where they can view the video (and other information) before it get submitted and saved in the database.
    on the FORM page I have the following code:  (there's much more code, but this is the coding that's related to what I am trying to do.
    <cfset #session.video# = #video#>
        <cfif (#video# is "") or (#left (sound, 7)# is not "http://")>
        <cfset #video# = "http://#video#">
      </cfif>
      <input name="video" type="text" size=43 maxlength=250 value="#video#"><br>
    Someone types in the url of the video (IE a youtube video or something similar)
    ON THE ITEM PREVIEW PAGE. I have the related coding
            <!--- define videoURL --->
        <cfif Left(session.video, 9) IS "http://ww">
          <cfset isVideo = "TRUE">
          <cfset videoURL = Trim(session.video)>
        <cfelse>
          <cfset isVideo = "FALSE">
        </cfif>
    <cfif isVideo>
                  <cfoutput><br><b>Video:</b><object width="480" height="385"><param name="movie" value="#videoURL#"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="#videoURL#" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></cfoutput>
                </cfif>
    Sooo what's suppose to happen is that you see a preview of the video, but nothing shows up
    The source code SHOWS the above information with the correct value of the video, but it doesn't show the player, etc.
    Not sure what i am doing wrong.
    it worked once, but I am not sure what I did or why it's not working now.

    What happens when you strip the code down to the bear essentials and do something like
    <cfoutput>
    <object width="480" height="385">
    <param name="movie" value="#videoURL#"></param>
    <param name="allowFullScreen" value="true"></param>
    <param name="allowscriptaccess" value="always"></param>
    <embed src="#videoURL#" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed>
    </object>
    </cfoutput>

  • Text Replacement in scanned page question

    I must be doing something incredibly wrong because I cannot get text to be replaced in a scanned OCR document. I am using Acrobat Pro 9.
    Before getting to that, let me ask this question: If I am scanning a document created using a readily available font like Times New Roman, why does Acrobat even bother using the scanned page for displaying text? It knows the text, the OCR was 100% accurate. Why not replace the 300 dpi scanned bitmap image with real, vector-based text? I don't understand that.
    OK, now to just trying to replace what amounts to fuzzy looking text with vector text. I've read how to replace text using Tools-> Advanced Editing-> TouchUp Text Tool where I select text, right click on it, go to properties and change the text. Here's what happens when I do that:
    First off, the defaults in the properties dialog are set to no fill and no stroke. Why is that? If you're changing your font, wouldn't you want it to show?
    After making a selection and closing the dialog, the text indeed changes, but the original, fuzzy text is there as well. And, as there are slight differences in font size, the page is virtually unreadable as it has the appearance of being printed twice with different alignments each time.
    This is, of course, quite useless. I MUST be doing something wrong.
    Of course, taking even this course of action is pretty frustrating, as the document I'm working on has many statements in bold, so doing a global font change isn't even practical. I really just wish acrobat would know that it can display vector text from the get-go, and forego the bitmapped text altogether.
    Thanks, I hope my frustration isn't too evident!
    Graham

    please delete me from your mailing list.  tks.
    Date: Wed, 10 Feb 2010 10:01:23 -0700
    From: [email protected]
    To: [email protected]
    Subject: Text Replacement in scanned page question
    I must be doing something incredibly wrong because I cannot get text to be replaced in a scanned OCR document. I am using Acrobat Pro 9.
    Before getting to that, let me ask this question: If I am scanning a document created using a readily available font like Times New Roman, why does Acrobat even bother using the scanned page for displaying text? It knows the text, the OCR was 100% accurate. Why not replace the 300 dpi scanned bitmap image with real, vector-based text? I don't understand that.
    OK, now to just trying to replace what amounts to fuzzy looking text with vector text. I've read how to replace text using Tools-> Advanced Editing-> TouchUp Text Tool where I select text, right click on it, go to properties and change the text. Here's what happens when I do that:
    1. First off, the defaults in the properties dialog are set to no fill and no stroke. Why is that? If you're changing your font, wouldn't you want it to show?
    2. After making a selection and closing the dialog, the text indeed changes, but the original, fuzzy text is there as well. It is as if there is a bitmapped image sitting behind my new, pristine text.
    This is, of course, quite useless. I MUST be doing something wrong.
    Of course, taking even this course of action is pretty frustrating, as the document I'm working on has many statements in bold, so doing a global font change isn't even practical. I really just wish acrobat would know that it can display vector text from the get-go, and forego the bitmapped text altogether.
    Thanks, I hope my frustration isn't too evident!
    Graham
    >

  • Create a static HTML page from a CFM page

    How do I take the results of a dynamic CFM page and write it
    to a static HTML page.

    You can also use the CF administrator.
    Schedule the task. (Or just create the task to be hit by a
    call from a page.) When you set up the "task" Click Publish Save
    output to a file
    and assign the path you want it to write to. I do this for
    high volume front pages and have them created every few minutes to
    reduce the load on the sql and cf servers..

  • How to make a variable global to use in all of my cfm page?

    I have a problem with the variables.
    i need to use a variable  " loginrecord" in all of my cfm pages, its created in my login.cfm and the value of this needed in other page and maybe i need to change it .
    in ASP simply we can use SESSION to make a variable global , is there any way in coldfusion ?
    also in ASP we have a command SESSION.SESSIONID ,  so return the unique number from browser and we can se it as a security check for each one of people login to our site and each one is seperate random and unique number , is there any similar in coldfusion ?
    Thanks
    Alireza

    Thanks,
    the reason at the moment i stock with this command is i need to have login information available in all the pages to check the security. the good point i had in ASP is SESSION.SESSIONID   , it make a unique number base on browser and i can check it if user loged in or no , or if loged in is the same user or other user . i couldnt find same command in coldfusion , and now i use <cflogin> but if i can find the way to have a browser session it help me in other part of my program.
    i start coldfusion new ( near a month ) i have some book and Lynda DVDs, also online sources , and in this priod i re developed one of my program from ASP to coldfusion and its work. i am happy of this and help me to develop better and faster . in compare the coldfusion developed one realy is 40% original development in size and 50% faster . i have good background of ASP in last 8 years include MCSD and developed many program for a small and big companies. but i wanna to continue with coldfusion because i found it more helpfull than ASP specialy in FLASH development .
    BTW thanks for your help

  • Abort a failed process inside a .cfm page

    Hello everyone,
    I have been bothered by this for a while.
    I have a cfm page that is doing a process of extracting data
    and ftp to locationA. I have this running for about two years. Then
    there came the need to do the same process and ftp to locationB. I
    did not want to repeat the process, so I added ftp locationB at the
    end of the program, to use the same data file
    The process runs well all the time when I only had
    LocationA. The problem is locationB ftp server sometimes would
    close and not to let me connect. this would stall the whole process
    (I gues it was a rollback feature in cold fusion?), including the
    steps of ftp to locationA, even though locationA's connection was
    fine and open.
    Is there a way in Cold fusion pages to abandon a step that
    fails? In this case, I can put the code to ftp locationB in a
    template. If this template fail, go on to the the next line in the
    main page and not to quit the whole thing? I have seen this in
    other programming languages which have the "abort" function.
    Thanks in advance,

    I figured it out!
    Here is the code:
    <cftry>
    <cfftp action = "putfile"
    username = "anonymous"
    password = "mypassword"
    server = "clientserver"
    localFile = "c:/#filename#.xml"
    remoteFile = "/uploads/#filename#.xml"
    >
    <!--- <p>... other processing goes here --->
    <!--- specify the type of error for which we search
    --->
    <cfcatch type = "application">
    <!--- the message to display --->
    <h3>You've Thrown a Application
    <b>Error</b></h3>
    <cfoutput>
    <!--- and the diagnostic message from the ColdFusion
    server --->
    <p>#cfcatch.message#</p>
    <p>Caught an exception, type = #CFCATCH.TYPE#
    </p>
    </cfoutput>
    </cfcatch>
    </cftry>
    All I care is that the program does not stop because of the
    ftp error. I don't need the detail error message. Once I took out
    the lines in the example, it worked fine.

  • Protect a form submit cfm page

    How else to I protect a form submit cfm page to make sure the request only comes from pages in my own site?
    So far I have this
    <cfif Not cgi.REQUEST_METHOD eq "POST">
      <cflocation url="../index.cfm" addtoken="no">
    </cfif>

    We do the following in our application.cfm:
    <cfif isDefined("FORM.fieldNames") and len(FORM.fieldNames) and NOT reFindNoCase("^(http|https)://#CGI.HTTP_HOST#/",CGI.HTTP_REFERER)>
      <cfabort showerror="Forbidden Request - POST request denied.">
    </cfif>

  • Script injection on .cfm pages

    I need help. For the second time in three months every single .cfm page has a malicous cross-site script appended to the orginal code. It looks something like this:
    I'm having a really hard time trying to figure out where this might be coming from, or where the vulnerability is. Has anyone been affected by the same scripting attack? I'm running a windows 2003 server, fusebox 4.0 framework on MS SQL database. Thanks for any help or any leds that might help solve this problem!

    This problem is necessarily caused by modification of the server-side script files.  Therefore, it is necessary that the server must have been compromised.  On a shared server, this is "more or less to be expected," since hundreds if not thousands of people other than yourself have accounts on the same server(s).  However, there is a lot that you can do to preven it:  it only takes a couple of extra steps.
    Always use sftp (secure FTP) to transfer files and to establish host sessions.  Many hosting companies allow you to disable non-secure FTP, and you should do so.
    Protect your username/password as robustly as you can.  "password1234" is an extremely common password, as is "password." 
    After transferring files to your computer, use chown (Unix), cacls (Windows), or its equivalent to secure the files against anyone, including yourself.  (You can always countermand your directives later, the next time you're ready to update the site.)  This will at-least require the intruder to have compromised your account, not someone else's.
    In that same vein, don't forget to secure all of the parent directories!  "It'll do no damn good at all" if the intruder can replace your carefully-secured directory, in its entirety, with an altered one!
    Make backups!
    If your site permits any sort of user-contributed content to be provided, make absolutely sure it is well-filtered.
    "Think like a pirate."  ("RRRRRrrrrrrrr!!")  Web-site compromises are always "crimes of opportunity."  Many a cat-burglar has made a good living by trying each door in a neighborhood while carrying a pizza box.

  • Can't Test CFM Page

    Hello
    I just installed CF MX 7 using built-in webserver. I'm using
    Window XP home edition.
    The Administrator page (
    http://127.0.0.1:8500/CFIDE/administrator/)
    is running fine
    without any problem but when i created a folder placed under
    wwwroot/myfolder/
    and tried to test my cfm page (
    http://127.0.0.1:8500/myfolder/test.cfm),
    i got an error
    'HTTP 500 - Internal server error Internet Explorer' , htm
    file is running file under this
    folder but can't run cfm. I tried to uninstall and reinstall
    CF MX7 but the problem still
    exist. Please help me. Thanks in advanced.

    cfmnewbiez wrote:
    > Hello
    >
    > I just installed CF MX 7 using built-in webserver. I'm
    using Window XP home
    > edition.
    > The Administrator page (
    http://127.0.0.1:8500/CFIDE/administrator/)
    is running
    > fine
    > without any problem but when i created a folder placed
    under wwwroot/myfolder/
    > and tried to test my cfm page (
    http://127.0.0.1:8500/myfolder/test.cfm),
    i got
    > an error
    > 'HTTP 500 - Internal server error Internet Explorer' ,
    htm file is running
    > file under this
    > folder but can't run cfm. I tried to uninstall and
    reinstall CF MX7 but the
    > problem still
    > exist. Please help me. Thanks in advanced.
    >
    What does your code for test.cfm look like? Also, go into IE
    and turn
    off "friendly" errors; then you may see an actual CF error as
    opposed to
    the default IE error (which doesn't tell you much).
    Matt
    Matt Woodward
    [email protected]
    Adobe Community Expert - ColdFusion

  • What might be slowing down cfm pages on Plesk system?

    Hi
    We have CF MX7 running on a Win2003 server with Plesk. It is processing cfm pages quickly enough but then serves them up very slowly. So, a simple template which just has the number 1 - 32,000 listed out in plain text with a cfoutput to add a timestamp at the start and end of process takes many seconds to load in the browser, even though the timestamps show the CF page processing took no time at all.
    The same page with a htm extension serves up in less than a second.
    So, CF appears to be able to do its processing nice an quickly but is seems to hit some kind of bottleneck when it comes to passing the processed data onto whatever process is transporting it to the client browser.
    The two sample pages run on a dedicated server take about the same (very quick) time to arrive at the client browser so we think this has to be something to do with the set up of CFMX 7 with Plesk running.
    Any ideas?
    Chris

    Chris Pamplin wrote:
     So, CF appears to be able to do its processing nice an quickly but is seems to hit some kind of bottleneck when it comes to passing the processed data onto whatever process is transporting it to the client browser
    That would almost always be the web server.
    If you and determined that ColdFusion is not the bottleneck, you will probably need to start sniffing around your network and see where the packets are going and how long they are taking to get there.  A partial list of places that could be bottleneks; web server, proxy server, firewalls, client browser.

  • Custom File Not Found for CFM pages in CF7

    Hello,
    I realize you can use a custom error page within the CF Admin
    but for this site I don't have access. I'd like to build my own
    error catching page but it's being bypassed if I put it in my
    application.cfm page.
    For example, I enter a page that doesn't exist like
    www.mysite.com/content/foo234.cfm, it just outputs the content from
    the file WEB-INF\exception\exception_en.xml file. I'd like to catch
    it with this in my Application.cfm page:
    <cferror type="exception" template="errorPage.cfm" />
    <cferror type="request" template="errorPage.cfm" />
    Then email me the details.
    What am I missing? Is this not caught by CF? If I use a .html
    extension then IIS uses its 404 page that I can modify.

    Hi,
    According to your post, my understanding is that the top navigation bar not working in some page.
    Did you custom the master page or use different master pager for this pages?
    You can check whether the issued pages have different master page or some one has changed the master page.
    There are some articles about creating custom site map provider, you can check the steps with the following articles then check whether it works.
    http://msdn.microsoft.com/en-us/library/office/cc789625(v=office.14).aspx
    http://www.helpmeonsharepoint.com/2012/03/custom-sharepoint-top-menu-and.html
    http://blogs.msdn.com/b/gauravbadhan/archive/2013/04/02/creating-a-custom-navigation-for-sharepoint-2010.aspx
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

Maybe you are looking for