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 SkipVought 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. ToonKayser

    Session management doesn't work

    Thanks for your reaction. But this didn't make any difference. Because the cookies is written and the registry is written, can it be that it has something to do with access-rights?
  2. ToonKayser

    Session management doesn't work

    Hi All, We installed a new cf4.5-server (W2000) and copied all of our scripts and database from our produktionserver to that new server. The problem occurs that session management doesn't seem to work anymore. This is my application.cfm: <cfapplication name=&quot;ws&quot...
  3. ToonKayser

    Writing PRN-File with WORD

    Well, I found out how it works. It was in a google.newsgroup. Somebody found out how to make the arguments for printout work. (I would like to know HOW this guy found out how it's done) I give the code here because I am sure a lot of people struggle with this COM-thing. What I do in this program...
  4. ToonKayser

    Writing PRN-File with WORD

    Thank you. But it isn't quite what I mean. I want to write a 'printfile'. A file that can be printed on a computer without Word installed there. The suffix of such a file is PRN. I know the 4th argument of Printout is the filename. But the problem are the 3 arguments before that. I don't seem to...
  5. ToonKayser

    Writing PRN-File with WORD

    I want to write a word-document to a prn-file. Before that I filled that document and all works well. But the last thing I want to do is write this document to a PRN-File. This file is transfered afterwards and is printed with some remote application. I did this before with asp and the...
  6. ToonKayser

    Problems with cfftp

    Using ColdFusion 3.1 an error message occur while trying to access via cfftp. This did work fine, but all of a sudden this message occurs. An error occurred while attempting to process a CFFTP tag: The error occurred on (or near) line 55 of the template file C:\CFUSION\bin\CFTags\cfftp.cfm...
  7. ToonKayser

    Access and coldfusion

    tkayser@jacde.jnj.com
  8. ToonKayser

    Access and coldfusion

    Hi Emario, You can read the database and if the user has to enter data into it, you can use 'cfform' The user fills in this form and after that you insert the data into the database. This you do with <cfquery name=&quot;insert&quot; datasource=&quot;xxx&quot;> insert into yourable values...
  9. ToonKayser

    attempting to create file mapping (Error 1006)

    Thanks. But the problem was that - when I appended to a file - sometimes this message 1006 occured. We Use ColdFusion 3.1 After a little research we found that if the file contains 0 Bytes (Windows NT) and when we DIDN'T append at all, the message showed. The first thing we did in the program...
  10. ToonKayser

    attempting to create file mapping (Error 1006)

    We use CF 3.1 and in a scheduled program I write a textfile with cffile. This program runs every hour and most of the time it works fine. But once or twice a day there is an error-message: Error attempting to map file 'c:\......\kopf.k' This file is the file I want ro write. Before the program...
  11. ToonKayser

    Open Word.application (Authentication Problem)

    Hi, I wrote a little script in asp to open a word-document, change some text there and then save this document as a prn-file. This works fine on my personal webserver. Now I try to run this on our intranet. (NT 4.0 IIS 4) but I produce the error: 'no authentication. VB scvript error '800a0046'...
  12. ToonKayser

    Cfmail and html

    Our site was hosted on a server with cf 3.1 and some smtp mailserver. Now we moved to a provider which uses cf 4.5. In a mailinglist we send a lot of mails to our customers. After we moved to our new provider, it occures that some (only some) custumers don't receive their mail properly: the html...
  13. ToonKayser

    Codepageproblem usa7ascii

    We exported an oracle 8 databse with codepage usa7ascii. The import of the dmp-file into a databse with codepage iso8859 didn't translate the special characters such as ä ü &auml; and so on. What can we do about this. Any help would be appriciated. Toon
  14. ToonKayser

    How to upload files?

    HI, Using relative-path can be done to store the base-path in an application-variable in application.cfm: <cfset application.base = &quot;c:\inetpub\wwwroot&quot;> to upload the file: <cffile action=&quot;UPLOAD&quot; filefield=&quot;img1&quot...
  15. ToonKayser

    updating more than one record at once

    Hi, In sql it would be something like this: <cfquery name=&quot;update&quot; datasource=&quot;cccc&quot;> update comps set approved = 'yes' where groupname=&quot;#groupname#&quot;> Toon
  16. ToonKayser

    Cookie File expires in 2037?

    Hi, After a little research, I found in Allaire Forums, how to solve this problem. CF uses 2 cookies to handle session-variables (CFID and CFTOKEN) and stores them in one single cookie-file with expiration-date = 2037. This file isn't deleted from your hard-disk even when your session is timed...
  17. ToonKayser

    Cookie File expires in 2037?

    Yes, I know. Sessiontimeout and the default values are set. The sessiontimeout works. After some time the session variables time out. But..... the physical cookie-file still exists. The program works fine, though. But how can I explain users who don't like cookies that I don't use persistent...
  18. ToonKayser

    Cookie File expires in 2037?

    Hi, I don't place a cookie. It's the use of session-variables that leads to a cookie. You can call it a implicit cookie. So I can't control this 'system-cookie'. One should think that CF would place a cookie according to createtimespan in sessiontimeout of 'cfapplication'. Toon
  19. ToonKayser

    Cookie File expires in 2037?

    HI, I am a little confused. When I use a session variable and put the expire time on - let's say - 3 hours, I find that a cookie-file is written and it won't expire until 2037. (I use CF 3.1) Some people here in our company are wondering and I can't explain them why the cookie expires in 2037...
  20. ToonKayser

    Cfhttp and proxyserver

    With CF3 I used &lt;cfhttp&gt; and accessed some internet-sites<br>via a proxyserver.<br>The statement looked like this: <br><FONT FACE=monospace>&lt;cfhttp url=&quot;<A HREF="http://www.alltheweb.com&quot" TARGET="_new">http://www.alltheweb.com&quot</A>;<br>method=&quot;get&quot...

Part and Inventory Search

Back
Top