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: *

  • Users: pixiesfb
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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"...
  5. pixiesfb

    Document merge or compare with ColdFusion??

    Has anyone built a tool to do this? Cannot find one out there..
  6. 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...
  7. 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...
  8. 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 =...
  9. 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...
  10. 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...
  11. 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...
  12. pixiesfb

    Detect Cold Fusion Version?

    Is there a custom tag out there that can detect what version of Cold Fusion is running?
  13. pixiesfb

    StructInsert order problem

    I have a shopping cart. When the customer proceeds to checkout, they go to a new domain. Session variables cannot be passed, so I must re-build my cart on the new domain. Trouble is, the structure is re-built in a different order and I can't figure out why. There is no pattern, it is not...
  14. pixiesfb

    StructInsert order problem

    I have a shopping cart. When the customer proceeds to checkout, they go to a new domain. Session variables cannot be passed, so I must re-build my cart on the new domain. Trouble is, the structure is re-built in a different order and I can't figure out why. There is no pattern, it is not...
  15. pixiesfb

    Stripping out specific characters

    I have a column in a database with data like this: $22.25 $443.93 $2.50 I would like to run a query to strip the dollar signs to get this: 22.25 443.93 2.50 Thanks!
  16. pixiesfb

    Verity, specifying subfolders?

    I'd like to specify which subfolders to include when indexing files for Verity. Using &quot;Recurse&quot; in cfindex, it seems I only have two options, include only the root folder or include the root and all subfolders, (recurse=Yes|No). Any other approach? Perhaps I can filter certain...
  17. pixiesfb

    cflocation and anchors

    After submitting a form, I'd like to cflocation to another page with an anchor. cflocation does not want recognize an anchor, help! I've tried <cflocation url=&quot;save.cfm##GoToAnchor3&quot;> and <cflocation url=&quot;save.cfm&quot; & &quot;##GoToAnchor3&quot;>, both ignore anything...
  18. pixiesfb

    HTML editor needed on a form

    HTML editor needed!! I need a simple HTML editor, preferably one I can use inline on a form. I found a cutom tag called js_edit on allaire gallery, which is pretty much what I need, but I need to be able to cutomize it. I don't mind paying for it.
  19. pixiesfb

    double quotes and textarea

    Hi all, I know it's a common problem, what is the best way to submit text with double quotes in a textarea? It disappears! I'd rather not replace the double quotes with single quotes. I'd also like to be able to use cfinsert if possible. Thanks.
  20. pixiesfb

    Looping question

    I have a multiple select list called categories, with numeric values: <select name=&quot;searchcats&quot; multiple> <option value=1>Item A <option value=2>Item B <option value=3>Item C... I submit the form, searching the &quot;categories&quot; field, which is a comma delimeted list of numbers...

Part and Inventory Search

Back
Top