Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. pixiesfb

    Office 2007 cfheader cfcontent Word docx problem

    For .doc, yes. For .docx, no. Try both of these yourself and you will see that Word will not open the file if you put a .docx on the end of myfile in the second set of cfheader/cfcontent. <cfheader name="Content-Disposition" value="attachment:filename=myfile.doc"> <cfcontent...
  2. pixiesfb

    Office 2007 cfheader cfcontent Word docx problem

    No extension needed in <cfheader name="Content-Disposition" value="attachment:filename=myfile">.
  3. pixiesfb

    Office 2007 cfheader cfcontent Word docx problem

    When we updated to Office 2007, we also needed to update cfheader and cfcontent tags to accommodate .docx and other 'x' extensions for our dynamically created documents. Example: <cfheader name="Content-Disposition" value="attachment:filename=myfile"> <cfcontent...
  4. pixiesfb

    Select Certificate, Windows 7, Office 2010

    Hi, I am a ColdFusion programmer trying to help our server team troubleshoot an issue for my site. In the application, whenever a user tries to open an Office doc, they recieve several prompts before the file finally opens. The progression of prompts is this: "Open or Save" (normal) "windows...
  5. pixiesfb

    Select Certificate prompt

    Hi, I am a programmer trying to help our server team troubleshoot an issue for my site. In the application, whenever a user tries to open an Office doc, they recieve several prompts before the file finally opens. The progression of prompts is this: "windows security","select...
  6. pixiesfb

    microsoft word with image, image not showing..

    I'm using the cfcontent to create a Word doc. The document comes up fine, but where there should be an image, instead there is a message: "The linked image cannot be displayed. The file may have been moved, renamed, or deleted. Verify that the link points to the correct file and location"...
  7. pixiesfb

    Document merge or compare with ColdFusion??

    I need a tool that allows you to compare two Word documents to illustrate the differences between the two..
  8. pixiesfb

    Document merge or compare with ColdFusion??

    Has anyone built a tool to do this? Cannot find one out there..
  9. pixiesfb

    DoD CAC card authentication

    I'd like to use CAC (Common Access Card) provide a means of authenticating users to a role in my application. CAC card is a smart card used by DoD with certificates on the card chip. I've found this: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:52720 That's helpful, but...
  10. pixiesfb

    How to split single text file into multiple files?

    I found this, it would do what I need except I can't get the .exe to run! http://www.uuba.com/uuba/product-uumerge.html I'm running XP, and it indicates that it should work with XP... If I can't get this to work, are there any simular products out there? Thanks.
  11. pixiesfb

    How to split single text file into multiple files?

    Hi, I have 50 text file links on a page, (one for each state). Currently, the user must right-click and 'Save Target As' fifty times in order to save each file to his or her computer. Is there a way I could consolidate all info into one file, have the user download that, then somehow give the...
  12. pixiesfb

    Perl to Cold Fusion, password encrypt

    Hmm, Yes, that will encrypt the password. But I need to encrypt in the same way that Perl did, so it can be decrypted with the same algorithm.
  13. pixiesfb

    Perl to Cold Fusion, password encrypt

    So we're rewriting a Perl application in Cold Fusion, problem is I don't know Perl, but can follow the logic well enough to get by. I have hit a roadblock though. Perl encrypts the password with the following code: $alphabet =...
  14. pixiesfb

    Inconsistant session timeout

    Turns out the client is running clustered servers, and session variables only get set on one. Not too happy to find this out now...
  15. pixiesfb

    Inconsistant session timeout

    Hi, I've got a strange problem which is not occuring in development, but does occur when application is loaded at the client site. The problem is that when a user logs in, or once they are in they use any of the forms, they sometimes get kicked back to the login screen as if their session has...
  16. pixiesfb

    PGP command line, Newbie

    Hi, I've installed PGP version 6.5.8. I can get it to work fine with Outlook. However, I'm trying to implement it using a Cold Fusion custom tag (cfx_pgp) and am having no luck. Someone asked me if I tried using it with a command line, which I had not. I have no clue how to do this, can it...
  17. pixiesfb

    URL, After the Slash

    No, same problem, thinks it's a directory.
  18. pixiesfb

    URL, After the Slash

    Yes, capturing is the easy part. Check out http://www.sys-con.com/coldfusion/article.cfm?id=388 and http://www.sys-con.com/coldfusion/source.cfm?id=388 for the CF_FakeURL custom tag. The hard part is that you get a 404 error because &quot;cats&quot; is recognized as a directory, (which does...
  19. pixiesfb

    URL, After the Slash

    Mmmm, I'm attempting to just capture &quot;cats&quot;, then perhaps redirect to the domain. I tried doing this in application.cfm, but it wasn't happy. I checked out that custom tag, but can't get it to work. Perhaps a simple modification is all I need but I couldn't get it. Here is the...
  20. pixiesfb

    URL, After the Slash

    Hi, Say I give someone a URL like http://www.mysite.com/cats. I'd like to capture the word &quot;cats&quot;, which I know I can do with something like <cfset urlcode=GetToken(cgi.path_info,3,&quot;/&quot;)> (although I havn't tested it yet). The problem is that I don't want to set up any new...

Part and Inventory Search

Back
Top