Application.cfm whats that ?

2000-07-14 Thread vince
hi, We have shifted our service providers and the new people here require us to have an APPLICATION.CFM file in our public_html directory. This is the first time that I have come accross some thing like this .. What should I be doing here ... Yeah ... our site does use a lot of session

Application.cfm... whats that ?

2000-07-14 Thread vince
hi, We have shifted our service providers and the new people here require us to have an APPLICATION.CFM file in our public_html directory. This is the first time that I have come across some thing like this .. What should I be doing here ... Yeah ... our site does use a lot of session

Re: Application.cfm... whats that ?

2000-07-14 Thread Jeffrey A. Zubeck
If you are not running a CF site, you don't personally need it. But, if the SP requires it, I would just create a blank file named application.cfm and upload it to where they want it. Jeff - Original Message - From: vince [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 13,

RE: Categories tree

2000-07-14 Thread Chris Montgomery
Francisco, There is an article on recursion at the Defusion site (http://www.defusion.com/articles/index.cfm?ArticleID=63) that might help. Chris Montgomery [EMAIL PROTECTED] Web Development Consulting http://www.astutia.com Allaire Consulting Partner NetObjects Reseller

Re: Application.cfm... whats that ?

2000-07-14 Thread Jared Clinton
the cfapplication tag doesn't _have_ to be in the application.cfm file, just ususally is, because thats where it makes sense to put it. [EMAIL PROTECTED] wrote: Yeah ... our site does use a lot of session variables ... but is it necessary to have this file .. How did you set up

Re: Application.cfm... whats that ?

2000-07-14 Thread rkeniger
the cfapplication tag doesn't _have_ to be in the application.cfm file, just ususally is, because thats where it makes sense to put it. True enough, but if you know enough CF to use session variables why would you not know what the application.cfm file is? Rob Keniger

RE: Application.cfm... whats that ?

2000-07-14 Thread Hoffman, Joe (CIT)
*** A BLANK application.cfm file causes problems (not sure if it has been fixed in 4.5.1). At least have something in it even if it is comments. Joe Hoffman mailto:[EMAIL PROTECTED] National Institutes of Health Center for Information Technology

Re: SQL Success Return Codes

2000-07-14 Thread Paul Hastings
I spent a few minutes looking at SQL Server Books Online, and couldn't find anything which SQL Server would automatically return how many records were updated by a query. You can use the RETURN keyword within a stored procedure to return a value, or you could use RAISERROR to throw an error,

RE: Thumbnail tags

2000-07-14 Thread Rich Wild
Hmmm - so what where these commands that weren't properly formatted? I'm just curious because like I said, for me its working like a champ straight from download. I'm using the other image tags such as CFX_GifGD as well, to establish what can do what best - but AutoResize's thumbnail stuff

RE: CF COM

2000-07-14 Thread Campbell Morton
Steve Bernard wrote: I'm not sure exactly what you mean by registering the component with NT's Scheduler but, if you mean that you have the component started by the Scheduler Service be aware that the component will be running under the System Account. This will give the component, and thereby

hide the file name on addressbar

2000-07-14 Thread Nagesh Kumar Deva
hi all, One of my client asked abt this. Is there any way to execute the Application after user loggedin by hiding the file name on the address bar. i mean, user can see first the login page. after his successful login to the site, he should not see the file names throughout his navigation on

Re: FIrmware Design in Australia - anyone else deal with thesepeople?

2000-07-14 Thread Nick Slay
This is a multi-part message in MIME format. --926ED33E0612753A6B4903EB Content-Type: text/plain; charset=us-ascii; x-mac-type="54455854"; x-mac-creator="4D4F5353" Content-Transfer-Encoding: 7bit Hi Mike, I'm also a reseller of Allaire products and have also used their hosting

Re: hide the file name on addressbar

2000-07-14 Thread Dick Applebaum
One way is to use frames and have all navigation done through a NavBar frame. Any links within the same frame are OK (target page is displayed within the same frame/window as the linking frame) Links to another frame/window can be handled with JavaScript. You can see this in action (well

CFX_MAIL port

2000-07-14 Thread Yuri Vorontsov (Language Networks)
Hi, Does anyone know which TCP/UDP port is used by CFX_MAIL? Greetings from Amsterdam, Yuri E. Vorontsov, Drs - Language Networks BV Tel 020 33 00 333 Tel 062 278 4728 (cell.) Fax 020 33 00 334 Email: [EMAIL

Re: hide the file name on addressbar

2000-07-14 Thread Sean Renet
use fusebox methodology and they will never know the names of your files. www.fusebox.org -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

Re: FIrmware Design in Australia - anyone else deal with thesepeople?

2000-07-14 Thread Mike Kear
G'day Nick, Thanks for your response. My problem right now is I have a spectra sale that's about to happen. 3 competitors are busy as hell in there and I can't get the buggers to even talk to me about it. And no one's told me about any spectra courses. mostly positive (although, Lucas, I

RE: Application.cfm... whats that ?

2000-07-14 Thread Bud
On 7/14/00, Hoffman, Joe (CIT) penned: A BLANK application.cfm file causes problems (not sure if it has been fixed in 4.5.1). At least have something in it even if it is comments. A blank ANY Cold Fusion template can't be parsed. You could just put a comment line in it: !--- Hide me --- --

Forums 2.06 error

2000-07-14 Thread Adrian Cooper
Apologies in advance if this is slightly OT, or there is a better forum to post it to, but I have just installed Allaire Forums 2.06 (CF 4.01), and although it installed fine, and everything seems to work OK - admin etc.. - if I try to post a message I get the following: Error occurred in tag

Literate Programming Cold Fusion

2000-07-14 Thread James Sleeman
Hi all, hows things. Good? Great! * If you don't know about literate programming, * skip the next couple of paragraphs for an explanation. I was `turned onto' literate programming at University using noweb (and some extentions I wrote for it) mainly with C . Anyway I would love to be able to

RE: Variable IN a list? How to check?

2000-07-14 Thread Philip Arnold - ASP
cfif #deptid# contains #session.privileges# Avoid using this on lists The main reason is that if you're looking for "1", then it'll return 10, 11, 21, etc. etc. Try to use the List functions, or extend the CFIf to be; cfif ",#deptID#," contains ",#session.priviliges#," which is faster than

CFLOCK - HEELLLLPPP!!!

2000-07-14 Thread Bud
OK. I don't get this. I'm working on a site hosted on Virtualscape. I've never run across this before: ___ An error occurred while evaluating the expression: session.rollcount = "1" Error near line 189, column 7. Symbol session.rollcount is in a scope that contains data shared

RE: SQL Success Return Codes

2000-07-14 Thread Dave Watts
I spent a few minutes looking at SQL Server Books Online, and couldn't find anything which SQL Server would automatically return how many records were updated by a query. You can use the RETURN keyword within a stored procedure to return a value, or you could use RAISERROR to throw an

Allaire DevCon Earlybird Registration Ends July 26

2000-07-14 Thread Sam Coe
Reminder: You only have a few weeks left to save on registration for the upcoming Allaire Developer Conference (November 5-8, Washington, D.C.). Register before July 26, 2000, and save $100 by visiting http://www.allaire.com/conference. Remember - last year's conference sold out! There are

RE: For those of us Desperately in Need of CFMail Help

2000-07-14 Thread Kevin Plexico
This may be related to your problem and will probably help others sending HTML formatted messages... We were sending HTML formatted e-mails to a distribution list. When we upgraded to CF4.5.1 (from 4.1 or something), all of the people who were on this list using Lotus or Groupwise for their

Re: My solution:Variable IN a list? How to check?

2000-07-14 Thread Angél Stewart
Ok..here is the solution I came up with and Morning everybody =) !--- SECURITY CODE CFIF IsDefined('DeptID') CFLOOP INDEX="x" FROM="1" TO="#ListLen(form.DeptID)#" cfif ListContains(session.currentprivileges,ListGetAt(form.DeptID,x),",") EQ 0 cflocation url="#noclearance#"

CFLOCK - HEELLLLPPP!!! Never mind

2000-07-14 Thread Bud
Hi. I wasn't setting the type or scope in the cflock tag. Nothing in Mr. Forta's book about the scope or type attributes. :) -- Bud Schneehagen - Tropical Web Creations _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ ColdFusion Solutions / eCommerce Development [EMAIL PROTECTED]

Re: SQL Success Return Codes

2000-07-14 Thread Paul Hastings
what about @@ROWCOUNT? it returns the number of rows affected by the last sql statement. That's what I used in the sample trigger I included earlier in this thread, but as far as I know, your query itself has to actually reference @@ROWCOUNT and specifically return it; it won't just

RE: SQL Success Return Codes

2000-07-14 Thread DeVoil, Nick
I spent a few minutes looking at SQL Server Books Online, and couldn't find anything which SQL Server would automatically return how many records were updated by a query. You can use the RETURN keyword within a stored procedure to return a value, or you could use RAISERROR to

Re: Application.cfm... whats that ?

2000-07-14 Thread Todd Ashworth
Not necessarily. Back when I first started using ColdFusion, I knew I needed state management, but I didn't know a thing about the Application.cfm file. Directions are always the *last* thing you are supposed to read, right? Well, first I just put the cfapplication tag at the start of every

NEED HELP Encrypt Url ?

2000-07-14 Thread Rif Kiamil
How do I encrypt urls, where do i get info on encrypt urls, just want info on encrypt url Rif Kiamil Head of Network Admin / Project Coordinator of Intranet Web Based Applications JJ Fast Food Distribution LTD Tele 020 8885 9218 / Fax 020 8885 9213

RE: Export to Access

2000-07-14 Thread Miriam Hirschman
Hi, Thanks for helping me out. I hop you don't mind that I am emailing you directly. I have 3 questions. Firstly, the file in excel leaves a blank line between each record. Also before the first field there is a square character. My last question is that one of the fields that I am

Another cflock question

2000-07-14 Thread Bud
OK. I'm finally going back through the apps I've built and am going to wrap all my cfset session. tags in locks. Question: If I have a block of tags, like so: cfset session.weight = 0 cfset session.sh = 0 cfset session.state_tax = 0 cfset session.subtotal = 0 cfset session.grandtotal = 0 Is

need help urgent

2000-07-14 Thread janey smith
I know this is probably an easy one but my head is wrecked, basically my uodate form is acting up . my dataentry form is fine passes the vars ok, !-- Display HTML FORM Here with values filled -- form method="POST" action="Poll_update.cfm" input type="hidden" name="pol_id" value="183"

RE: Another cflock question

2000-07-14 Thread Raymond K. Camden
It's OK, and in fact, it's better to use one CFLOCK wrap. As for a good timeout, I always use 30, but have not heard of a 'good' figure. It probably depends on your estimated load. === Raymond Camden, Cold Fusion Jedi Master for

(OT)How to parse WORD document ....

2000-07-14 Thread Christian Labrecque
Hi all, How to parse a Word document to get some HTML or CFM files ? Depending on the length of the document , we will need to cut the document in x numbers of files. Anyone got information on that topic? Thanks Christian -- FILAMENT COMMUNICATIONS

RE: Keyword Search on Access Database Records

2000-07-14 Thread Philip Arnold - ASP
Hi Folks - I'm looking for a simple solution - I need to put a keyword search feature on an internal application I've been working on - I've been reading Ben Forta's book re: Verity, but I don't see where I can use verity with Access mdb? Also... I am only developing the application, I

RE: SQL 7

2000-07-14 Thread Philip Arnold - ASP
Is one able to create a comma delimited list in a SQL 7 column. If so, is = this the best solution versus, adding a row. If not, what is the most = efficient way to distinguish the information between two identifiers. If I'm understanding your request, you want a denormalised list in a

Re: need help urgent

2000-07-14 Thread janey smith
sorry think my code got a bit mixed uo, here are the 2 files values passed thru CFQUERY NAME="GetPollDetails" DATASOURCE="quickpoll" SELECT pol_ID, pol_Question, pol_Category, pol_Status FROM pol_Poll WHERE pol_ID = #URL.PollID# /CFQUERY CFQUERY NAME="GetAnswers"

CF hangs

2000-07-14 Thread Nille af Ekenstam
Hi I'm running cf 4.51 on three win2k-servers using iis5 as web server. Since I put these servers online the cf process hangs about every hour or so and this message is displayed: Error Occurred While Processing Request Error Diagnostic InformationRequest canceled or ignored by serverServer

RE: CF hangs

2000-07-14 Thread Neil Robinson
Hi Nille, I had what sounds like the same problem this week. What database are you using? If it's the same problem (check your server.log file for NT Errors) then it seems to be caused by ODBC drivers keeping database connections open. After the timeout period on the db server, CF tries to

Re: CF hangs

2000-07-14 Thread Todd Ashworth
Doesn't that slow down your queries considerably? Todd Ashworth - Original Message - From: "Neil Robinson" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, July 14, 2000 9:13 AM Subject: RE: CF hangs | Hi Nille, | | I had what sounds like the same problem this week. What

RE: Application.cfm... whats that ?

2000-07-14 Thread Larry Juncker
I would guess that the main reason your Provider wants you to have an Application.cfm file in your own directory, is because, as I am sure you are aware, If CF does not find an application.cfm file in your directory, it will keep climbing the tree until it does find one. You do not want to have

RE: CF hangs

2000-07-14 Thread Nille af Ekenstam
Neil Robinson skrev: Hi Nille, I had what sounds like the same problem this week. What database are you using? If it's the same problem (check your server.log file for NT Errors) then it seems to be caused by ODBC drivers keeping database connections open. After the timeout period on the db

Re: CF hangs

2000-07-14 Thread Nille af Ekenstam
- Original Message - From: "Neil Robinson" [EMAIL PROTECTED] | Hi Nille, | | I had what sounds like the same problem this week. What database are you | using? If it's the same problem (check your server.log file for NT Errors) | then it seems to be caused by ODBC drivers keeping

Re: My solution:Variable IN a list? How to check?

2000-07-14 Thread paul smith
Only if it can talk (running and ducking ;-) At 07:56 AM 7/14/00 -0400, you wrote: Is this the most eloquent solution to the problem? -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe

RE: CFX_MAIL port

2000-07-14 Thread Chris Evans
CFX_MAIL uses the standard SMTP port, port 25. Chris Evans [EMAIL PROTECTED] http://www.fuseware.com -Original Message- From: Yuri Vorontsov (Language Networks) [mailto:[EMAIL PROTECTED]] Sent: Friday, July 14, 2000 6:15 AM To: [EMAIL PROTECTED] Subject: CFX_MAIL port Hi, Does

Re: CFIF and CFELSE

2000-07-14 Thread chris . ivey
Willy, Your CFIF and CFELSE logic looks fine. I think you need your logic to read: cfif IsDefined("#URL.myvariable#") cfform action="emp_add_action.cfm?myvariable=true" method="post" enablecab="Yes" cfelse cfform action="emp_add_action.cfm" method="POST" enablecab="Yes" /cfif

RE: CF hangs

2000-07-14 Thread Neil Robinson
Nille wrote... I'm using MSSQL7.0 as bd. Found a gazillion of these in my server.log: "Error","TID=1448","07/13/00","23:15:58","Unable to write reply -- client browser stopped waiting for request. " "Error","TID=1448","07/13/00","23:15:58","Windows NT error number 109 occurred."

RE: CF hangs

2000-07-14 Thread Neil Robinson
-Original Message- From: Todd Ashworth [mailto:[EMAIL PROTECTED]] Sent: 14 July 2000 14:30 To: [EMAIL PROTECTED] Subject: Re: CF hangs Doesn't that slow down your queries considerably? I hope not! It does sound like a 'quick fix', but I'll see how it copes. Neil

session management

2000-07-14 Thread Tim Bahlke
Hey all, I am having a serious session management problem. Here is my cfapplication tag ... CFAPPLICATION NAME="xite" SESSIONMANAGEMENT="Yes" SESSIONTIMEOUT="#CreateTimeSpan(0,1,0,0)#" APPLICATIONTIMEOUT="#CreateTimeSpan(0,1,0,0)#" When I was working with the

RE: Lawyers...

2000-07-14 Thread Gieseman, Athelene
I'd be happy to discuss this with you. I'm the Director of Info. Services for a law firm. I've put up two intranets using CF to drive some of the apps. There are a number of questions that you need to answer before you jump in. For example: 1) How large is the firm (number of attorneys?) 2)

Re: Something weird going on here

2000-07-14 Thread James Taavon
tried that, still nothing... the problem is with the other javascript at the bottom of the page, but I dont know what it is. When I take that out (the one performing the location.href), it works fine and I see the entire Successful login message. Sean Renet wrote: is it because you are

OT: Name

2000-07-14 Thread paul smith
Yo, Jedi Master; ColdFusion, name of product, it is ;-) At 08:49 AM 7/14/00 -0400, you wrote: Raymond Camden, Cold Fusion Jedi Master for Syntegra (www.syntegra.com) Allaire Certified Instructor and Member of Team Allaire

RE: Keyword Search on Access Database Records

2000-07-14 Thread paul smith
Try "Indexing Data" p 712 CFWACK4 3rd ed best, paul At 01:01 PM 7/14/00 +0100, you wrote: I've been reading Ben Forta's book re: Verity, but I don't see where I can use verity with Access mdb? -- Archives:

RE: My solution:Variable IN a list? How to check?

2000-07-14 Thread Chris Evans
I may be missing a pice of logic, but this may work a little better: !--- SECURITY CODE CFIF IsDefined('DeptID') CFLOOP List="form.DeptID" INDEX="x" cfif NOT ListContains(session.currentprivileges,x) cflocation url="#noclearance#" addtoken="yes" /CFIF /CFLOOP /CFIF !--- End

RE: Export to Access

2000-07-14 Thread Claremont, Timothy S
I am having trouble with the following example, in that my output just shows up in the web browser as text. Excel does not open. Any hints as to where to look for the answer? Tim Tim Claremont Xerox Corporation

Re: CF hangs

2000-07-14 Thread Todd Ashworth
| | I had what sounds like the same problem this week. What database are you | | using? If it's the same problem (check your server.log file for NT | Errors) | | then it seems to be caused by ODBC drivers keeping database connections | | open. After the timeout period on the db server, CF

RE: CF hangs

2000-07-14 Thread Nille af Ekenstam
Nille wrote... I'm using MSSQL7.0 as bd. Found a gazillion of these in my server.log: "Error","TID=1448","07/13/00","23:15:58","Unable to write reply -- client browser stopped waiting for request. " "Error","TID=1448","07/13/00","23:15:58","Windows NT error number 109 occurred."

Re: Application.cfm... whats that ?

2000-07-14 Thread Daslweb - Greg
My idea of what application.cfm. 1)When place in a directory and tried to access directly a cold fusion error occurs stating that this is a reserved file name. Is there a way to make the error not appear I do not know. 2)When place in your directory it is access before accessing any other .cfm in

Re: session management

2000-07-14 Thread Nrhorwitz
The SessionTimeOut and ApplicationTimeout has a 1 day before they can kill the variables. That's what I think where the problem is. Rob Hey all, I am having a serious session management problem. Here is my cfapplication tag ... CFAPPLICATION NAME="xite" SESSIONMANAGEMENT="Yes"

RE: Another cflock question

2000-07-14 Thread Bud
On 7/14/00, Raymond K. Camden penned: It's OK, and in fact, it's better to use one CFLOCK wrap. As for a good timeout, I always use 30, but have not heard of a 'good' figure. It probably depends on your estimated load. OK, cool. That will save me a couple minutes anyway. :) I'm sure this is a

RE: CF hangs

2000-07-14 Thread Nille af Ekenstam
Neil Robinson skrev: This is the same issue, but since you're using SQL server there are a few technet articles on how to tackle it: Never mind my technet question. Found it. //Nille -- Archives:

Re: My solution:Variable IN a list? How to check?

2000-07-14 Thread Angél Stewart
*drums fingers on desk* Comedians..everyone wants to be a comedian. I meant elegant. I think. *mutters* *sneaks off to the thesaurus* -Gel :-) - Original Message - From: paul smith [EMAIL PROTECTED] Only if it can talk (running and ducking ;-) At 07:56 AM 7/14/00 -0400, you

RE: CF is 'template based' and ASP is 'object based'?

2000-07-14 Thread Jonathan Broome
Upon reading ASP speaker's statement, my first reaction is 'well, that's academically true, but usually not true in practice'. I program in both all the time, so here's my take on it: ASP is *supposed to be* object based. The MS recommendations for architecture are that you separate business

ADO

2000-07-14 Thread Nille af Ekenstam
Since I'm having troubles (or rather; cf is having trouble with) ODBC and MSSQL7 I figured I'd give ADO a test drive. Anyone here know of any good articles to get this working? I'm a complete novice on the subject. Thanks! //Nille

Re: NEED HELP Encrypt Url ?

2000-07-14 Thread Billy Cravens
When you generate your url strings, use encrypt() to encrypt the variables; when you need to reference those url variables, decrypt them using decrypt() -- Billy Cravens [EMAIL PROTECTED] Rif Kiamil wrote: How do I encrypt urls, where do i get info on encrypt urls, just want info on

RE: session management

2000-07-14 Thread Cameron Childress
Sessions are stored in Server Memory. When you shutdown the machine last night, your session data was destroyed. Your CFID was stored in a cookie on your machine, so it was still the same. If you want your session data to persist longer, you might want to investigate client variables. I would

RE: Application.cfm... whats that ?

2000-07-14 Thread Eric Dawson
what the provider might want to do is add a directory between the clients and the application.cfm and include a "blank" application.cfm then it is not an issue. ex. root/application.cfm root/clients/application.cfm (blank) root/clients/clientroot/ Eric From: "Larry Juncker" [EMAIL

RE: My solution:Variable IN a list? How to check?

2000-07-14 Thread Sean Daniels
Ok..here is the solution I came up with and Morning everybody =) !--- SECURITY CODE CFIF IsDefined('DeptID') CFLOOP INDEX="x" FROM="1" TO="#ListLen(form.DeptID)#" cfif ListContains(session.currentprivileges,ListGetAt(form.DeptID,x),",") EQ 0 cflocation url="#noclearance#"

Re: Developer Conference: Hotel Accommodations

2000-07-14 Thread paul smith
Anyone else having problems with Priceline? The website got hung up in a loop on my request last night (it didn't consider the name of my favorite movie: Blazing Saddles, to have 4 characters in it), and without a request number you can't get anywhere on the web or phone assistance. Very good

RE: CF hangs

2000-07-14 Thread Russel Madere
Nille, It is part of the Microsoft support Knowledge Base. Go to http://support.microsoft.com and go to the Knowledge Base. There, you can retrieve the Q articles. Russel At 04:04 PM 7/14/2000 +0200, you wrote: Nille wrote... I'm using MSSQL7.0 as bd. Found a gazillion of these in

OT: mail transfer agents

2000-07-14 Thread mherbene
I need to set up my own mail transfer agent (MTA) to accept outbound mail from CF, as the local infrastructure only supports authenticated SMTP. My traffic level is relatively low, hundreds of message per day max. I would put it on a dedicated box, and want to configure it to only accept mail

Re: My solution:Variable IN a list? How to check?

2000-07-14 Thread Eric Dawson
I think: el·o·quent (l-kwnt) adj. 1.) Characterized by persuasive, powerful discourse 2.) Vividly or movingly expressive is the word. Of course elegant is good too. Eric From: Angél Stewart [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: My solution:Variable IN

New to Cold Fusion

2000-07-14 Thread Peter Benoit
And I would like to see an example of password protection using sessions. I don't understand cf applications yet. :/ Peter -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

re:RE:CFTree

2000-07-14 Thread Brian P. Doyle
Ok, newbie question, how can I make sure that they can locate the CFIDE dir? I tried the tree on my production server (I am working off a development server) and they could see it there. I found all of the cfide folders and related folders and copied them to the development server but to no

RE: Another cflock question

2000-07-14 Thread Dave Watts
I'm sure this is a really really stupid question, but, what would happen if you wrapped the whole template in CFLOCK? You'd increase the likelihood that the lock would interfere with another lock. CFLOCK essentially does something analogous to locking in a database. When you execute a complex

Re: CF-Talk V1 #78

2000-07-14 Thread Susan McNab
Have you tried using the Explicit search option and putting quotes marks around the query? Works for me using the English-language version. If you want to try it send me mail off list I will give the URL for an example. Sue I'm working on a resume collection for my recruiting department

RE: Warning: SSL and Windows 2000 Slightly OT

2000-07-14 Thread Zachary Bedell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Windows 2000 only allows a certain amount of SSL connections before it gives up an error message http 403.15 Forbidden: Client Access Licenses Exceeded. The number of SSL connections you can have is the number of CAL's you have. Remember

rogue SMTP request

2000-07-14 Thread Tim Bahlke
The ColdFusion RDS Service on my machine (Win98 *yea, I know*) running on a NAT'ed network, which is connected through a SDSL modem, is apparently sending out SMTP requests, to where I have no idea. The requests are not getting a response nor are they timing out. They are just pilling up in

RE: session management

2000-07-14 Thread Tim Bahlke
I thought the CreateTimeSpan function syntax was days, hours, minutes, seconds. If this is correct (I am referencing CFML Language Reference in Studio) then I have the Session and Application set to timeout in 1 hour. Tim Bahlke, CIFO thinkcreate.com p. 336.230.0575 f.

Re: Forums 2.06 error

2000-07-14 Thread Rey Bango
Hi Adrian. The error your getting is because of a messed up Verity collection that gets created during the install of Forums 2.06. Its actually an error that's been around for sometime and hasn't been corrected by Allaire. The Allaire knowledgebase article that discusses how to fix this can be

Re: SQL 7

2000-07-14 Thread Jonathan McGuire
Okay then, let's take this one step further If my DB has 2 table (many to one), such as product---options linked on product ID. Can anyone think of a way to create a view that will show the option row for a given productid as a single delimited list? Jonathan McGuire - Original

Re: Export to Access

2000-07-14 Thread James Brown
So where are the questions? Miriam Hirschman wrote: Hi, Thanks for helping me out. I hop you don't mind that I am emailing you directly. I have 3 questions. Firstly, the file in excel leaves a blank line between each record. Also before the first field there is a square character.

re:RE:RE:CFTree

2000-07-14 Thread Brian P. Doyle
ok I'm officially a moron. figured it out, thanks/ Ok, newbie question, how can I make sure that they can locate the CFIDE dir? I tried the tree on my production server (I am working off a development server) and they could see it there. I found all of the cfide folders and related folders and

RE: CF hangs

2000-07-14 Thread Neil Robinson
Todd wrote... I had this problem some time ago using a Sybase database. The problem was that I goofed in my code and one of my queries was taking too long to complete. Eventually, it timed out. When the client gave up waiting, it popped up an error message and stopped. This left a

CFPop alternative

2000-07-14 Thread Michael Dinowitz
I've been saving all the lists at House of Fusion over to an archive account on the mail server. The idea was to read out the mail into a DB and provide it online. Problem is, the account has over 45,000 emails in it (way over). CFPOP really doesn't like dealing with this and always returns

RE: hide the file name on addressbar

2000-07-14 Thread Philip Arnold - ASP
One of my client asked abt this. Is there any way to execute the Application after user loggedin by hiding the file name on the address bar. i mean, user can see first the login page. after his successful login to the site, he should not see the file names throughout his navigation on the

RE: Variable IN a list? How to check?

2000-07-14 Thread Philip Arnold - ASP
Try to use the List functions, or extend the CFIf to be; cfif ",#deptID#," contains ",#session.priviliges#," which is faster than the List functions This would only work if the item were not the first or last element in the list. Either you would have to use a reg expression or

HELP CF Insert Problem

2000-07-14 Thread Kelly Matthews
Ok I have a CF Insert statement (its a long one) and then below the statement I will paste the error i am getting. Its appearing that there is a size limit ont he CF Insert statement? Is this true? All of my inserts except the first few are just 1 character. CFQUERY datasource="#DSN#"

RE: SQL Success Return Codes

2000-07-14 Thread DeVoil, Nick
It *will* just "be there". Let's pretend I didn't say that. It'll be there in SQL Server but not in CF, just like Dave said. Nick ** Information in this email is confidential and may be privileged. It is intended for the

RE: CFTree

2000-07-14 Thread Gieseman, Athelene
I've had this problem before with both the CFTree and CFGrid. It happened when I moved my site to a Win2K server. The problem was in how my IIS was setup to recognize the default server. Apparently, one of those settings let's CF know where to find the directory where those things are stored.

RE: New to Cold Fusion

2000-07-14 Thread Scott Becker
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01BFEDA8.98586D30 Content-Type: text/plain; charset="iso-8859-1" Check out "The Guide to Cold Fusion Login Systems" at

Linux Version of Cold Fusion

2000-07-14 Thread Eron Cohen
Hi Everyone, I am wondering if anyone can comment on the Linux version of ColdFusion. I am particularly wondering about the stability of ColdFusion on that platform. I'd especially like to hear from anyone who's moved away from Windows NT running CF or is running both versions. I have been

RE: Categories tree

2000-07-14 Thread Francisco Montes; Spain on Line
Thanks to Chris and Dick... extremely helpful comments! -Mensaje original- De: Chris Montgomery [EMAIL PROTECTED] Para: [EMAIL PROTECTED] [EMAIL PROTECTED] Fecha: viernes 14 de julio de 2000 7:53 Asunto: RE: Categories tree Francisco, There is an article on recursion at the Defusion

CFHEADER HELP NEEDED

2000-07-14 Thread Claremont, Timothy S
I am trying to allow the end user to open CFOUTPUT in excel. It seems to be working OK to a point. When the download file dialog box pops up it wants to download the cfm file itself. Naturally the cfm file is opening in my ColdFusion studio application. I was under the impression that I could

RE: New to Cold Fusion

2000-07-14 Thread Jeremy Allen
Hello Peter, http://www.acfug.org/downloads/acfug062399.zip, Check out this link at the Atlanta ColdFusion Usergroup. There are meetings there every month and one month security was covered and there was some demo code there. Check it out this is just what you were asking for. If you want

Re: Slightly OT: Dumb HTML question

2000-07-14 Thread aimee abbott
At 04:09 PM 7/13/2000 -0700, Gregory Harris wrote: Hello everyone, I was trying to build a table cell TD with it's own border (apart from the rest of the table) in Netscape 4. I tried TD BORDER=1 and that didn't work, I tried a style sheet and that didn't work either, does anyone know how to

RE: session management

2000-07-14 Thread Dan Haley
I'm assuming you were expecting your shopping cart to be gone after an hour? Any session variables are destroyed after an hour, but your CFID is set in a cookie. If your shopping cart was in session variables it would be gone, but I'm assuming you wrote it to a database with an ID of 71, and so

Re: mail transfer agents

2000-07-14 Thread Howie Hamlin
There is also inFusion Mail Server. iMS is the only mail server that uses ColdFusion templates for mail processing which means that the server is completely customizable if you can code in CFML. iMS supports unlimited users, domains, aliases, etc. It also supports RBL and Authenticated SMTP

RE: mail transfer agents

2000-07-14 Thread Steve Pierce
post.office from www.software.com has a 10 user which works great for outbound relay and it is free. - Steve -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, July 14, 2000 10:52 AM To: [EMAIL PROTECTED] Subject: OT: mail transfer agents I need to

  1   2   >