RE: ColdFusion license agreement

2001-09-07 Thread DeVoil, Nick
You know what? I hadn't tried setting up a new datasource since I installed it. You're right, it doesn't work. (NT4.0 here) IO Error on server communication hmm... need to have a look around... Nick -Original Message- From: Freddy [mailto:[EMAIL PROTECTED]] Sent: Thursday,

RE: Message Board Threads confusion

2001-09-07 Thread James Maltby
Hi - you need to get your head around topics, threads and posts matey Topics are the top level - e.g. ColdFusion. Threads are the conversations - e.g. Writing a message board in ColdFusion Posts are the messages based around the thread - e.g. Message Board Thread confusion If you ID the

RE: SQL SERVER Usage Question

2001-09-07 Thread DeVoil, Nick
It's a small record set. As long as the queries are designed properly and it's indexed you'll be fine with a shared SQL Server - unless you mean *really* intensive. The size of the database isn't really as significant as the number of concurrent accesses. Nick -Original Message- From:

Repeated emails - OT thread

2001-09-07 Thread Katherine Maltby
I seem to be getting Billy Cravens message repeatedly about OT posts, I've got about ten so faris there something going on here?! Kath Katherine Maltby Web Production Director -- United Kingdom http://www.thoughtbubble.co.uk/ Ph: +44 (0) 20 7387 8890

RE: Disabling back button

2001-09-07 Thread C. Hatton Humphrey
Is there a possible and simple way to do this - or is it a nightmare to do? Will As far as I can remember, this is not possible to do. Oh sure, you can create a pop-up that turns off arrows and toolbars and things like that, but even then the context (right-click) menu has a Back command.

XML via HTTP, and PROXY Server?

2001-09-07 Thread Carl
Hi, I am using the following to open an HTTP session so that I can send/recieve XML to a server on the Internet. I am on a company LAN, and I have to use Proxy settings in browser to get out to the internet. How do tell the following code to use a Proxy setting when making a connection?

RE: help with moving from access to sql server

2001-09-07 Thread Daniel Lancelot
thats certainly possible... but is it a good idea?? I'd have thought the overhead concerned with storing 4bits (tinyint) rather than 1 bit for each boolean field would be less than running the convert/cast function against each value returned by the query... I may be wrong though - have not run

RE: Disabling back button

2001-09-07 Thread Mark Stewart
I remember some time ago seeing a script (I think it was at www.javascript.com ) that replaced the history of the back button with the current page. This essentialy disables the back button. And if my memory serves me correctly, it was just a little snippet of code. Mark -Original

RE: CF-Community?

2001-09-07 Thread Mark Stewart
I don't know where you're located at but I assume most of the people that post are within the U.S. And judging from the time of your post, it's safe to say that most people are sleeping at 3:30AM :-) Yesterday seemed to be a slow day, but generally, there are quite a few posts there. Mark

RE: SQL SERVER Usage Question

2001-09-07 Thread Mark Stewart
20K is small. We have one SQL Server (2k) with about 10 extranet apps on it. One of our apps in particular is associated with hundreds of thousands of records (about 500,000) - That's still small. I think as long as you have done proper maintenance (indexing, relational, etc.) you should be fine.

RE: Browser client for upload files?

2001-09-07 Thread Mark Stewart
I use something like this: form name=uploadform action=index.cfm enctype=multipart/form-data method=post table tr tdinput type=File name=filename size=60 value=/td tdinput type=submit value=Submit/td /tr

CF Certification

2001-09-07 Thread Jerry Staple
Anyone with any advice for the CF Certified Developer exam? Thanks in Advance Jerry Staple Web Application Developer http://www.biznetprojects.co.uk/complogo.gif Head Office 133-137 Lisburn Road, Belfast Northern Ireland BT9 7AG T +44 (0) 28 9022 3224

RE: Training Recommendations

2001-09-07 Thread Mark Stewart
About a year and a half ago, I took the official Microsoft course, Implementing a Database With SQL Server 7.0 and found that course to be very helpful. The course covers everything you mentioned below. You'll have to check around your area to see if there are any Microsoft training sites near

RE: Message Board Threads confusion

2001-09-07 Thread Thomas Chiverton
If you take the message structure as a tree, a thread is the path from one message to one of its parents (father,grand father etc). Taken the other way, its all the childen (and their children) of a specifc post. Weather you allow subject changes to mean a new thread starts or not is a design

RE: Browser client for upload files?

2001-09-07 Thread C. Hatton Humphrey
You have to set up two things. First you need a form page that has two things: 1. The form tag needs to have method=post and enctype=multipart/form-data. This tells the browser to send the file back to the server correctly. 2. In your form you need an input type=file... tag. This tag will

Re: CF-Community?

2001-09-07 Thread Michael Dinowitz
Someone posted to ask if anyone was there and the machine crashed. I have to change the secret crash password now. :) I just subscribed to CF-Community, thinking that I would ask a question over there because of the rash of OT postings here lately, and I haven't seen a single message thread

cfquery Question

2001-09-07 Thread Edward Chanter
I'm probably being a dunce here but does anyone know a sql query that will list out all the tables in a particular sql7 database...? Thanks in advance... -= Ed ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ:

Re: SQL SERVER Usage Question

2001-09-07 Thread Jeffry Houser
At 11:56 AM 09/05/2001 -0700, you wrote: I have a client who's new site will have a 20,000 record song catalog. One of the sites I work on has a song search catalog that is twice that size. ( www.karaokewh.com ) I think the db is SQL Server 2000, however we have never had any problems

RE: Browser client for upload files?

2001-09-07 Thread Dunwiddie, Bruce
on submitting page... (make sure to include the enctype) FORM ACTION=action.cfm METHOD=Post name=product ENCTYPE=multipart/form-data input type=file name=image /form on the action page cfset path=GetDirectoryFromPath(GetTemplatePath()) cfset path=path 'pdfs\' CFFILE ACTION=Upload

RE: Excel as a datasource .... ?

2001-09-07 Thread Dunwiddie, Bruce
try caching the tables so the time to pull off the queries goes down dramatically. -Original Message- From: Dan Phillips [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 05, 2001 10:15 AM To: CF-Talk Subject: RE: Excel as a datasource ? I agree. Down the road it's going to be

RE: putting values from an array into cfgraph? - double post

2001-09-07 Thread Will Swain
Thanks Don -Original Message- From: Don Vawter [mailto:[EMAIL PROTECTED]] Sent: 05 September 2001 15:49 To: CF-Talk Subject: Re: putting values from an array into cfgraph? - double post piping up I posted this link some time ago http://www.vawter.com/display_popular.cfm but it

RE: CFLOCK and Session variables

2001-09-07 Thread Kwang Suh
IMHO, I think session, application, server variables should be banished to the depths of hell. I recently wrote an application using just the client, variables, request and caller scopes. Gawd, talk about making life easier! Other than not allowing complex data types in client variables, I

RE: Checking for NULL

2001-09-07 Thread Steven Dworman
cfif trim(qQuery.field) eq blah /cfif Steven D Dworman - Web Consultant Systems Administrator ComSpec International - http://www.comspec-intnl.com phone: 248.647.8841 cell: 734.972.9676

RE: Excel as a datasource .... ?

2001-09-07 Thread cf girl
I agree with Dan, look at this; http://allaire.com/Handlers/index.cfm?ID=1540Method=Full http://support.microsoft.com/support/kb/articles/q174/4/96.asp CFGirl From: Dan Phillips [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: RE: Excel as a datasource

RDS Disabling?!

2001-09-07 Thread Neil H.
I have people trying to RDS into servers when the service is disabled. It looks like it is causing problems on my server as sessions aren't lasting but 20 seconds. I think the server is restarting thus killing the sessions. Is there a way to block RDS requests? This looks like a brute force

Slightly OT, MSword--wddx--cf

2001-09-07 Thread Richard Meredith-Hardy
I have developed a way of loading files from MS Word 2000 with one click directly into a CF website. For more info see http://www.flymicro.com/cf/directload If you know about VBA, or perhaps know someone (or somewhere) who could help me then please read further. Otherwise delete! DirectLoad

Re: CFPop problems!

2001-09-07 Thread Richard Meredith-Hardy
1) In CF 3.1 there used to be a problem with deleting email No.1 (especially if it had an attachment). I don't know if this has been fixed in more recent versions of CF, but in any case I always pre-load the mailbox with a dummy No. 1 and then manipulate all mails from no 2 onwards. 2) There is

Re: CFPop problems!

2001-09-07 Thread Tony Hicks
Allaire had a demo site that shipped with 4.5 called Crazycab it was a way to check emails from their site.. it was even on crazycab.com for a while.. Here's what I noticed.. on my computer and my host's server it would check every email address I had accept for my host's*.. And on an old host

RE: CFLOCK and Session variables

2001-09-07 Thread Daniel Lancelot
2 reasons: 1/ if the user has multiple windows open 2/ If the user hits stop before a page finishes executing and executes another page.. Locking when reading prevents a variable being written when it is being read and visa versa -Original Message- From: Gonzo Rock

RE: Training Recommendations

2001-09-07 Thread Daye, Marianne
Hi Jay, I took a class called Implementing a Database on MS SQL 7.0 with Productivity Point Intl (www.propoint.com). It covered everything you're looking for, and you get to keep the lesson binder. It does not related back to ColdFusion, but I think it's important to learn the ins and outs of

RE: CF and MS Word Docs

2001-09-07 Thread Tilbrook, Peter
Apart from using Dreamweaver 4's Clean up word document feature not sure. On a previous project (http://tradewatch.dfat.gov.au) I used a CFX tag called CFX_Doc2HTML with moderate success. It is impossible to find the tag or the tags author now however. I imagine a similar CFX could perhaps

RE: Repeated emails - OT thread

2001-09-07 Thread Tilbrook, Peter
Legend! Have you given any consideration to selling the code you use (or is it dependant on third party software, eg: iMS?). There was a machine problem that I've since fixed. One of the results will be a repeat post or two to a few people. On the plus side, I just rewrote the 'cleaner' and

RE: Disabling back button

2001-09-07 Thread Tilbrook, Peter
As far as I can remember, this is not possible to do. Oh sure, you can create a pop-up that turns off arrows and toolbars and things like that, but even then the context (right-click) menu has a Back command. Also, to add another wrench, the backspace key is aliased to the back command with some

NSOT: Att Master Dinowitz

2001-09-07 Thread Tilbrook, Peter
Michael, are we all receiving copies of messages over and over again? It appears that I am at the moment. Cheers! Peter Tilbrook ColdFusion Applications Developer Australia New Zealand Food Authority Boeing House 55 Blackall Street BARTON ACT 2600 Ph: +61-2-6271 2256 Fax: +61-2-6271 2278

RE: CF Certification

2001-09-07 Thread Tilbrook, Peter
By Ben Forta's (et al) excellent book - Certified Allaire ColdFusion Developer Study Guide. A thin tome for $100 (AUD) but still a handy reference. Check out http://www.forta.com for details and even try the test out for yourself. Peter Tilbrook ColdFusion Applications Developer Australia New

CFQUERY dynamic connection using OLE DB

2001-09-07 Thread Peter Mott
I can see that CF 5.0 CFQUERY attribute ConnectString supports ODBC connection strings, but it does not seem to work with OLEDB. Is there a trick to making it work, or is this a design stuff up? If you have made it go using MS Access and or SQL server, please post a sample of your code! -

RE: CF Certification

2001-09-07 Thread Tangorre, Michael T.
I found that the stufy guide book is very very helpful! Used the study guide book along with the CF 5.0 book and go through the study guide book until you understand it from front to back and back to front...and yur set :-) -Original Message- From: Jerry Staple [mailto:[EMAIL

Username/password attribs on CFQUERY

2001-09-07 Thread Darryl Lyons
Has anyone got any thoughts on what the implications are for using username/password attribs in the CFQUERY tag. Obviously on a shared environment do not want to be placing a username/password on the actual datasource.. Any other ways of securing datasources?

Re: CFLOCK and Session variables

2001-09-07 Thread BEN MORRIS
A user with 2 browser windows open both on your site, or if your site has frames would be 2 situations where there could be a session var conflict. - Ben Gonzo Rock [EMAIL PROTECTED] 09/05/01 12:45PM A couple of questions that I can't seem to sort out from reading the DOCS... 1. Why

RE: Print PDF to Network Printer

2001-09-07 Thread Darren Adams
I think you can do some things with acrobat using com objects. Take a look at www.cfcomet.com they have an acrobat section. -Original Message- From: Richard Colman [mailto:[EMAIL PROTECTED]] Sent: 31 July 2001 22:42 To: CF-Talk Subject: Print PDF to Network Printer Trying to: *

simple array help - newbie

2001-09-07 Thread Amanda Stern
Hello, I am trying to build an array and cannot get around this error message: The element at position 2 in dimension 1 of object aggdata.AggHours cannot be found. The object has elements in positions 1 through 1. Please, modify the index expression. This is my code for

RE: ColdFusion license agreement

2001-09-07 Thread Andrew Scott
Works here fine, never did anything to it but a normal install first time. I assume you mean through CF Admin? Regards, Andrew Scott -Original Message- From: Freddy [mailto:[EMAIL PROTECTED]] Sent: Thursday, 6 September 2001 9:20 AM To: CF-Talk Subject: Re: ColdFusion license

Problem with re-direct to other site.

2001-09-07 Thread Steven Monaghan
All, We are in the process of trying to bring a website currently hosted externally in-house. As part of the process, I removed all hard-coded references to the URL in the code and set up a web server. Instead of using the DNS, I am testing using IP:port. In my development environment, it

RE: Disabling back button

2001-09-07 Thread Lonny Eckert
There is really no way to directly disable the back button. There are workarounds though that can be implemented. Some methods are better than others because some methods can be defeated by backing via right clicking. The better way is to submit your form through a pop-up window. Pop-ups are

Re: OLE-DB Client Storage Problem

2001-09-07 Thread Dina Hess
Well, according to the Advanced ColdFusion Administration documentation for CF 5, the problem with OLE DB is probably related to my Win98 development environment. Apparently, OLE DB is only available on Win NT/2000. (Oddly enough, I didn't notice a problem until I tried using it for client

RE: CF and Exchange Servers

2001-09-07 Thread Will Swain
Is it not possible then to use COM to interact with exchange server?? I thought some of the examples on cfcomet might help?? -Original Message- From: Billy Cravens [mailto:[EMAIL PROTECTED]] Sent: 05 September 2001 16:22 To: CF-Talk Subject: RE: CF and Exchange Servers CFComet is an

RE: CF and Exchange Servers

2001-09-07 Thread Mark Stewart
Study... Ben Forta also has a book on the subject - http://www.forta.com/books/0789725657/ Mark -Original Message- From: Josh Remus [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 05, 2001 10:36 AM To: CF-Talk Subject: RE: CF and Exchange Servers I've done things with pulling

sending string to lpt1 on client

2001-09-07 Thread Adrian Cesana
I remember some posts a while back about talking to devices on the client side. Someone wrote something that could be used with CF, I think it was to communicate with a scale. Anyone remember anything about this? I need to send a print string to the client LPT1 port...any recommendations?

RE: Message Board Threads confusion

2001-09-07 Thread Billy Cravens
You can either have a single-dimensioned thread (like a mailing list) or you could go infinite with your threading. Best way to manage it is in your database. Something like: Messages table -- msgText Parentid Msgid Here's some sample data: |msgID|msgText|Parentid|

Re: Calling CFCONTENT generates 2 hits?

2001-09-07 Thread stas
Wow. This took almost a day to deliver! BTW, I use a personal SMTP server running in my sys tray, ArgoSoft... so there is no problem as far as relaying messages, etc. - Original Message - From: stas [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, September 05, 2001 4:30

RE: Training Recommendations

2001-09-07 Thread Billy Cravens
Bit of a misnomer: what you need has nothing to do with ColdFusion - you need advanced database training. Maybe that'll help your search. I know you want it to relate back to ColdFusion. However, change your mindset a bit - your database is separate tier, not part of ColdFusion. As such, look

RE: CF-Community?

2001-09-07 Thread Russel Madere
That's what you get for using Pink Floyd lyricks. -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 06, 2001 7:59 AM To: CF-Talk Subject: Re: CF-Community? Someone posted to ask if anyone was there and the machine crashed. I have

Repeating Messages

2001-09-07 Thread Bruce Sorge
Is it just me or am I seeing a lot of repeated messages from the list? ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ:

DateDiff Problems

2001-09-07 Thread Chad Gray
Has anyone run into strange problems with DateDiff function? Im getting some strange problems where only a 3 hour difference reports as 3 million minutes. 99% of the time DateDiff works, but every once and while it messes up and reports a very large number of minutes. CF 4.5.1 SP2 on Win2K

RE: .biz domains ... what are the issues?

2001-09-07 Thread Billy Cravens
The same could be said about any TLD. And misspellings. It's cheap, why not? However, make sure your client's aware of the process for registering BIZ (and other new TLD's) There's a whole crop of companies advertising these domains; however, paying them doesn't guarantee the domain. It only

Verity

2001-09-07 Thread Darren Labrum
Does verity index more then just the content of a word or PDF (whatever file it may be). For example, in Word you can specify properties for the document by going to File then Properties. Will verity index those properties along with the content. I would like to be able to search for word docs

RE: 2nd request: RE: CFGRAPH Formatting

2001-09-07 Thread Thomas Chiverton
The graph has to be square, if you try setting values that would make it none-square, the layout goes all odd. Increase the width/height. -Original Message- From: Owens, Howard [mailto:[EMAIL PROTECTED]] Sent: 04 September 2001 20:00 To: CF-Talk Subject: RE: 2nd request: RE: CFGRAPH

RE: Disabling back button

2001-09-07 Thread Noel Flatters
Take a look here... http://www.halhelms.com/index.cfm?fuseaction=newsletters.mar2001 Cheers | Noel. Is there a possible and simple way to do this - or is it a nightmare to do? ~~ Your ad could be here. Monies from ads go to support these lists

RE: Disabling back button

2001-09-07 Thread Langford, Bryan
I have only found one way to do this with a modicum of simplicity. Basically its javascript. You have to open a new window and remove the standard toolbars from the window and include a code to remove right click. Then on unload of the page that opened the new window commit a self.close. I

RE: Training Recommendations

2001-09-07 Thread Dave Watts
I'm hoping someone can recommend some ColdFusion training that focuses on a variety of topics at the database level, especially including: * Database Design Techniques * Implementing Stored Procedures * Designing and Using Triggers * Joins I started using

Re: ColdFusion license agreement

2001-09-07 Thread Dave Hannum
Check to see if RDS is running If not, start it then try again. Dave - Original Message - From: Freddy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, September 05, 2001 7:20 PM Subject: Re: ColdFusion license agreement what did you do to get the browse function to

Re: Disabling back button

2001-09-07 Thread savan . thongvanh
check the archives. there has been extensive discussion on this and i believe a solution. :) W Luke [EMAIL PROTECTED] on 09/05/2001 02:51:08 PM Please respond to [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] cc: Subject: Disabling back button Is there a possible and simple way to

RE: cfquery Question

2001-09-07 Thread Mark Stewart
There is a SqL Server stored procedure that will describe a database for you. Off the top of my head, I can't remember the name of it but you can find it in books on line. If I can remember the name, I'll pass it along. Mark -Original Message- From: Edward Chanter [mailto:[EMAIL

RE: CFHTTP to a new window.

2001-09-07 Thread Billy Cravens
Grab the cfhttp.filecontent, save it somewhere (persistent state variable, or into a database), then open a new window using JS (window.open()) and in that file, grab what you saved. --- Billy Cravens Web Development, EDS [EMAIL PROTECTED] -Original Message- From: Neil H.

Re: Repeated emails - OT thread

2001-09-07 Thread Michael Dinowitz
There was a machine problem that I've since fixed. One of the results will be a repeat post or two to a few people. On the plus side, I just rewrote the 'cleaner' and bridge portion of the list software for more speed and cleaner operation. At 04:44 AM 9/6/01, you wrote: I seem to be getting

RE: Disabling back button

2001-09-07 Thread Dave Watts
Is there a possible and simple way to do this - or is it a nightmare to do? You can do this, but it's almost always a bad idea - people expect the back button to be there, and to work a specific way. The way I typically see this done is by spawning a new browser window with no buttons at all.

Re: Message Board Threads confusion

2001-09-07 Thread John Paitel
hey guys i wanna build a message board, but am having difficulty with the concept of threads. Let's say there is a message, and 10 people respond to that same message. Are those ten people in the same thread? or not? But let's say that person B replied a message From person A, then person C

Re[2]: Disabling back button

2001-09-07 Thread Critter
Hello Mak, on the preceding page you can put in history.forward() and problem solved. -- Critter, MMCP Certified ColdFusion Developer Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion --- Thursday, September 06, 2001, 3:35:49 AM, you wrote:

Re: CFLOCK and Session variables

2001-09-07 Thread Don Vawter
A couple of questions that I can't seem to sort out from reading the DOCS... 1. Why would one need to use cflock when WRITING session.variables ? Because users can open multiple browser windows in the same session or if you have a framed environment the session scope really is shared. 2.

Re: .biz domains ... what are the issues?

2001-09-07 Thread David Hannum \(Ohio University\)
(1) .biz domains are global, so when you've got a name you've got it worldwide, whereas .com, .co.nz, .com.au, .co.uk etc aren't. Coke will own coke.biz and coke.shop just the same. If you register it, they'll sue your butt. So the same scramble will ensue with the .biz and shop names as

CF and MS Word Docs

2001-09-07 Thread Tangorre, Michael T.
Hi all, Does anyone know of a way to save a documtn in word to HTML format without all the ridiculous XML formatting!!! When I include the saved html doc in my cf application the formatting looks horrible. ~~ Structure your ColdFusion code with

DateDiff problems

2001-09-07 Thread Chad Gray
My email didnt seem to hit the list. Sorry if this is a re-post. Im doing a CF DateDiff function on two ODBC compliant date times and every once and a while i get very strange results. I found this one in the MySQL database: Clockin: 2001-09-04 12:06:08 Clockout: 2001-09-04 15:19:51

Re: CFHTTP to a new window.

2001-09-07 Thread Dick Applebaum
No, Not directly... all control of windows is on the client side. What who can do is this: 1. Specify a new window as the target of the link or form, in the page that calls the template that contains the cfhttp... this is before the fact targeting. OR 2. Specify a hidden

Re: CFHTTP

2001-09-07 Thread Dick Applebaum
If I understand you correctly, you will get returned exactly hat you want, Go to the site where you want to post, with your browser. Manually post the form The page that gets returned is what you would get when doing the equivalent with cfhttp. The exception to this is when the page

Mimic clicking on the Reply button of an email

2001-09-07 Thread Larry Juncker
Does anyone know how I can make a text link that would mimic clicking the Reply button, so that I can include a subject for the return email automatically? TIA Larry Juncker Senior Cold Fusion Developer Heartland Communications Group, Inc. ~~ Get

Re: Disabling back button

2001-09-07 Thread Nelson Winters
Try putting the following javascript on your page... may do what you need. script window.history.go(1); /script -Nelson - Original Message - From: Mak Wing Lok [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, September 06, 2001 3:35 AM Subject: Re: Disabling back

RE: Disabling back button

2001-09-07 Thread Rick Lamb
I think this was it: script language=JavaScript type=text/javascript window.history.forward(); /script Rick -Original Message- From: Mark Stewart [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 06, 2001 7:58 AM To: CF-Talk Subject: RE: Disabling back button I remember some time

Re: OT: .biz domains ... what are the issues?

2001-09-07 Thread Jochem van Dieten
Mike Kear wrote: What do you think needs to be considered about pre-registering .biz or .shop or whatever domains? It is no guarantee whatsoever that you get the domain. Here's what I've listed so far . (1) .biz domains are global, so when you've got a name you've got it

automatically generated new site within a forum

2001-09-07 Thread cybergnom
Hi @all, i'm trying to set up a forum with CFML. I have the problem, that i don't know, how i can make CF to generate a new site after i.e.: 10 postings... I wnt CF to generate a new site and a link to this new site after every i.e. 10th post. How can i do that? greez cybergnom

flash uitoolkit

2001-09-07 Thread Will Swain
I'm getting this message when trying to use the calendar control: Template file not found. HTTP/1.0 404 Object Not Found Note: If you wish to use an absolute template path (e.g. TEMPLATE=/mypath/index.cfm) with CFINCLUDE then you must create a mapping for the path using the ColdFusion

CFPop problems!

2001-09-07 Thread Neil H.
I have a program, it will getall from a pop server and then loop through the query that is returned. I will then at the end of each iteration within the loop delete messagenumber 1 since this always the first message. I continue to get no such message errors. Sometimes it works perfectly, but

RE: RDS Disabling?!

2001-09-07 Thread Dave Watts
I have people trying to RDS into servers when the service is disabled. It looks like it is causing problems on my server as sessions aren't lasting but 20 seconds. I think the server is restarting thus killing the sessions. Is there a way to block RDS requests? This looks like a brute

heading on every page?

2001-09-07 Thread Amanda Stern
Hello, I have a CF report that is about 15 pages long.how do I get the headings to print on every page? Thanks again! ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community.

java applets for downloading files

2001-09-07 Thread Will Swain
Hi, I've heard people talk about using java applets to download files. Can any of you recommend one? Cheers Will Swain ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

HTTP 500 Errors

2001-09-07 Thread Ben Koshy
Recently, after a new install of Win 2K, patches etc. And Cold Fusion 5.0, I've been getting the odd Http 500 Server Error Message from IIS 5.0. And sometimes after 1 reload it goes away. Other times I can reload till I'm blue in the face, I have to restart the website that's affected. The

RE: Calling CFCONTENT generates 2 hits?

2001-09-07 Thread stas
Yes, security is the only thing that is stopping me from simply linking to files. -Original Message- From: Mark Stewart [mailto:[EMAIL PROTECTED]] I've seen this happening with my apps that use cfcontent. I don't know if it's been consistent since I haven't been paying attention to it.

Can This be done?

2001-09-07 Thread Ben Densmore
I have a page where I display info on 16 players (I'm running a fantasy football league and trying to have everything automated) This info comes from a DB. The info is displayed like this in an html table. TR BGCOLOR=#7DEDF7 TD class=constant align=center4/TD TD class=constant

using cfsetting enablecfoutputonly

2001-09-07 Thread David Caplan
I am toying with the idea of using cfsetting enablecfoutputonly to suppress whitespace in my site. My question is that if I use this feature to its fullest extent, (like switching cfoutput on and off between conditional statements and having the rest of the entire site encased in cfoutput tags)

RE: CFLOCK and Session variables

2001-09-07 Thread Pete Freitag
You need to use CFLOCK to read and write session variables, the potential problems arise when a person browsing the web double clicks on a link, or someone sends a url out with cfid and cftoken on them. Session variables are shared, because they are accessible to all CF threads. When a person

RE: CF Certification

2001-09-07 Thread Kola Oyedeji
I used cf_buster from centrasoft - really helped me, managed 87%: http://www.centrasoft.com/default.cfm HTH Kola Oyedeji Web developer Macromedia Certified Advanced ColdFusion 5 Developer http://www.Alexandermark.com (+44)020-8429-7300 -Original Message- From: Jerry Staple

Re: Disabling back button

2001-09-07 Thread W Luke
Thanks for everyone's replies - much appreciated Will - Original Message - From: W Luke [EMAIL PROTECTED] Newsgroups: cf-talk Sent: Wednesday, September 05, 2001 8:51 PM Subject: Disabling back button Is there a possible and simple way to do this - or is it a nightmare to do? Will

RE: DateDiff problems

2001-09-07 Thread Raymond Camden
The only issue I ever had w/ DateDiff was when I went over MAXINT doing a DateDiff over 80 or so years and returned it as seconds. Although in the case you describe below, I bet it's something else. Before the datediff, try parsing the dates to get the years, months, etc, and output them. I bet

Re: CF and Exchange Servers

2001-09-07 Thread Larry W. Virden
From: Josh Remus [mailto:[EMAIL PROTECTED]] I've done things with pulling items (calendars, appointments, etc.) from Outlook, it may very well be possible from Exchange directly, though I Has anyone written any tools to pull calendars from Outlook/Exchange and then work with that info and a

Re: ColdFusion license agreement

2001-09-07 Thread freddy
Dave, I did that long before I attempted to contact my support rep on the issue. That didn't help at all they were running already. Dave Hannum wrote: Check to see if RDS is running If not, start it then try again. Dave - Original Message - From: Freddy [EMAIL PROTECTED] To:

Re: ColdFusion license agreement

2001-09-07 Thread freddy
Was this on a win2000 apache install or IIS? I had no trouble with IIS just apache. Thanks, Frederic Andrew Scott wrote: Works here fine, never did anything to it but a normal install first time. I assume you mean through CF Admin? Regards, Andrew Scott -Original Message- From:

RE: OOps, This was meant for (CF Certification)

2001-09-07 Thread Mark Stewart
Yesterday was really long, sorry... Mark -Original Message- From: Mark Stewart Sent: Thursday, September 06, 2001 2:24 PM To: CF-Talk Subject: RE: CF and Exchange Servers Study... Ben Forta also has a book on the subject - http://www.forta.com/books/0789725657/ Mark -Original

RE: Training Recommendations

2001-09-07 Thread Cameron Childress
You might check out www.coldfusiontraining.com Adam's got several pretty intensive database classes listed. -Cameron Cameron Childress elliptIQ Inc. p.770.460.1035.232 f.770.460.0963 -- http://www.neighborware.com America's Leading Community Network Software

RE: SQL SERVER Usage Question

2001-09-07 Thread Darren Adams
In SQL Server terms it is qutie a small record set. -Original Message- From: Brook Davies [mailto:[EMAIL PROTECTED]] Sent: 05 September 2001 19:56 To: CF-Talk Subject: SQL SERVER Usage Question I have a client who's new site will have a 20,000 record song catalog. The site is search

ArrayInsertAt Question

2001-09-07 Thread Kevin Mansel
How would i Insert like 4 values into 2-dimensional array? Anyone had success with this? Like i have an array that contains 3 records with 4 items each. I want to insert a record in spot 2 with the 4 attributes. How can i do this? I'm stumped... ~ Kevin Mansel Senior Web

RE: flash uitoolkit

2001-09-07 Thread Mark Stewart
Take a look at the documentation that comes with it. I believe they make reference to some variables that you need to change. Mark -Original Message- From: Will Swain [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 06, 2001 5:59 AM To: CF-Talk Subject: flash uitoolkit I'm getting

  1   2   >