RE: MX Hosting

2002-12-06 Thread Jeffry Houser
No, he just doesn't want to get paid for it. At 06:17 PM 12/6/2002 -0800, you wrote: >What, you don't have sex? > >At 06:09 PM 12/6/2002 -0800, you wrote: > >Yeah...I agree. It is important to judge a host on what is really > >important, rack, pipe, power, and service...as well as reputation. >

Re: OT:SQL syntax error in mySQL

2002-12-06 Thread Jann VanOver
Your parenthesis look unbalanced. Check them out. On 12/4/02 3:19 PM, "Trace" <[EMAIL PROTECTED]> wrote: > sorry...here is the error I get: > > Error Diagnostic Information > > ODBC Error Code = 42000 (Syntax error or access violation) > [MySQL][ODBC 3.51 Driver][mysqld-3.23.53-max]You have an

Re: MX Hosting

2002-12-06 Thread samcfug
I received a similar offer, and I just referred them to www.rackspace.com the premier porn hosting service. Myself, I agree with you, I do not want to be associated with that type of content. = Douglas White group Manager mailto:[EMAIL PROTECTED] http://www.sa

RE: MX Hosting

2002-12-06 Thread Josh Trefethen
Well, not sure how you would glean that from my comment, but here's a link to my new daughter, ashley, to answer that: http://exciteworks.com/ashley You can contact me off-list if you have any further questions...I'm sure the list would appreciate that. No more flames please... 8^) -- Josh Tref

MS Word/CFOBJECT Help

2002-12-06 Thread Peter Bagnato
Hello, Does anyone have any example code or documentation (other than the basic templates found on CFCOMET) that can show me how to create, set footers, margins, etc. in MS Word files using CFOBJECT? Thanks! Peter ~| Archives:

RE: MX Hosting

2002-12-06 Thread brook
What, you don't have sex? At 06:09 PM 12/6/2002 -0800, you wrote: >Yeah...I agree. It is important to judge a host on what is really >important, rack, pipe, power, and service...as well as reputation. > >I run my own small but incredibly reliable hosting company and was >offered a good some to hos

RE: MX Hosting

2002-12-06 Thread Josh Trefethen
Yeah...I agree. It is important to judge a host on what is really important, rack, pipe, power, and service...as well as reputation. I run my own small but incredibly reliable hosting company and was offered a good some to host a huge amount of adult content on my servers, but turned it down bec

Re: OT: Windows restarting constantly

2002-12-06 Thread Bud
On 12/6/02, Matthew Small penned: >Hi - > Sorryfor the OT, but I've got a situation here - I'm running a >dual P4 Xeon Compaq with windows 2K - 1024M. Until yesterday everything >was great. Then, the guy who runit started it up and it refused to >start. Sorry Matthew. Can't answer your que

Re: Client Variable Question

2002-12-06 Thread Matt Robertson
If I read your message right and this variable state affects multiple users who use your application, then it sounds like maybe something that should be a part of a db query. That way the 'complete' or 'incomplete' state of the form can persist across application (CF) restarts. If its someth

Re: Client Variable Question

2002-12-06 Thread jon hall
Complete is a property of the form, not the user, so neither a session nor a client variable are appropriate, and unless each instance of a form is a unique application (that seems unlikely from your desc.), then an application variable would be inapropriate. I would have a complete bit in a table

RE: Pausing a script

2002-12-06 Thread Luis Lebron
I found this code in Ben Forta's book. It seems to do the trick. -Original Message- From: Jim Davis [mailto:[EMAIL PROTECTED]] Sent: Friday, December 06, 2002 12:25 PM To: CF-Talk Subject: RE: Pausing a script There's no function, but you can do this easily by setting a time (or using

Interested?

2002-12-06 Thread Ray Bujarski
I work for Qualcomm in San Diego, I just wanted to let the locals know that we need you! Position: Sr. Engineer/Engineer Requirements: Computer Science Degree Cold Fusion Perl Oracle DB Javascript If you are interested, or know someone that is please send a resume directly to me. The company has

RE: Java in CF (CFMX) - MM Drivers

2002-12-06 Thread Phil Costa
It's throwing that error because you're trying to access the JDBC drivers in an unlicensed fashion. The DataDirect drivers are licensed for use with ColdFusion, which includes support for JSP as well as CFML, not the scenario you're describing. Phil Costa Sr. Product Manager, ColdFusion Macromed

RE: Pausing a script

2002-12-06 Thread Jim Davis
There's no function, but you can do this easily by setting a time (or using GetTickCount()) and then doing a "While this time is less than whatever, keep looping" Should work fine. Jim Davis > -Original Message- > From: Luis Lebron [mailto:[EMAIL PROTECTED]] > Sent: Friday, December 06,

RE: Regular Expression Help

2002-12-06 Thread Ben Doom
I'd use [[:punct:] ] as the class if you only need to check spaces -- if you need vertical tabs, carriage returns, tabs, etc. use [[:punct:][:space:]] which should give you something like newstring = rereplace(string, "[[:punct:][:space:]]", "_", "all"); Of course, it might be easier (as Rob sugge

RE: Client Variable Question

2002-12-06 Thread Tony Weeg
I would use a session variable that changed upon the decision of an if statement like this... maybe? and a question I have from this, would you need to lock the session var activity inside that server lock? ..tony Tony Weeg Senior Web Developer UnCertified Advanced Col

Client Variable Question

2002-12-06 Thread Janine Jakim
I generally make client variables those that aren't going to change while the user is logged in. (ie:Group type=admin/etc) I have an app that will have several different forms per student. (some with one to many relationships/some with one to one). If a case manager says the forms are complete =Al

RE: Windows restarting constantly

2002-12-06 Thread Matthew Small
Thanks for the help - I've successfully reinstalled Windows and everything seems to be fine. At this point it doesn't seem to be a hardware fault. I sure hope it's not. Matthew Small IT Supervisor Showstopper National Dance Competitions 3660 Old Kings Hwy Murrells Inlet, SC 29576 843-357-1847 h

RE: Regular Expression Help

2002-12-06 Thread Jeff D. Chastain
reReplace(string, "[^A-Za-z0-9]", "_", "ALL") on 'some phrase' returns 'some_phrase' as expected. reReplace(string, "[[:punct:]]|[[:space:]]", "_" "ALL") on 'some phrase' returns '_some_phrase_' which was not expected. The string 'some phrase' really is just that without any extra spaces. Either

Re: Pausing a script

2002-12-06 Thread Randell B Adkins
Are you speaking of a CFSCRIPT for pausing CFScript action or a PAUSE in between processign elements on a CF Page? There is a CF_Sleep or something similar in the Exchange >>> [EMAIL PROTECTED] 12/06/02 12:58PM >>> Does CF have an equivalent of the PHP sleep function. I need to pause s script for

RE: Regular Expression Help

2002-12-06 Thread Joshua Miller
Did you TRIM the variable first? That may help ... Perhaps there's whitespace surrounding the text. Try: ReReplaceNoCase(trim(variable),"[^A-Za-z0-9]","_","ALL") Joshua Miller Head Programmer / IT Manager Garrison Enterprises Inc. www.garrisonenterprises.net [EMAIL PROTECTED] (704) 569-9044 ext.

RE: Windows restarting constantly

2002-12-06 Thread Matt Liotta
By default Windows machines are set to automatically restart on kernel panics. You don't want that as if it is a hardware problem the kernel panic will often tell you what hardware is at fault. It seems to me that your choices are to either use Compaq supplied hardware diagnostics or to real instal

RE: Windows restarting constantly

2002-12-06 Thread Matthew Small
Thanks for the reply, I didn't think I was getting one today. I tried every single configuration I could think of for the RAM. Nothing worked except having all of them in there. I've already started the rebuild. It's only a few months old, dammit. But then, the guy who uses it puts every piece of

It is quiet?

2002-12-06 Thread Mike Brunt
Just making sure we are up and running, it is very quiet today. Kind Regards - Mike Brunt, CTO Webapper Blog http://www.webapper.net Web site http://www.webapper.com Downey CA Office 562.243.6255 AIM - webappermb Web Application Specialists ~~

RE: Pausing a script

2002-12-06 Thread Tony Weeg
cfx_sleep in macromedia desdev area. ..tony Tony Weeg Senior Web Developer UnCertified Advanced ColdFusion Developer Information System Design Navtrak, Inc. Mobile workforce monitoring, mapping & reporting www.navtrak.net 410.548.2337 -Original Message- From: Luis Lebron [mailto:[EMAIL

RE: Windows restarting constantly

2002-12-06 Thread Ryan Kime
How about RAM in pairs? Take two out, try it, then switch and try that pair. If it's a RAM problem, try to isolate it to a particular stick(s). The blue screen you talk about, is it loading system files and then restarts? If so, you might have system file corruption. Sounds like a rebuild coming

RE: Regular Expression Help

2002-12-06 Thread Jeff D. Chastain
Yep, this is probably the safest bet and produces the expected result. Thanks -Original Message- From: Rob Rohan [mailto:[EMAIL PROTECTED]] Sent: Friday, December 06, 2002 11:54 AM To: CF-Talk Subject: RE: Regular Expression Help lastly, you could think backwards [^A-Za-z0-9] Rob ht

OT: Windows restarting constantly

2002-12-06 Thread Matthew Small
Hi - Sorryfor the OT, but I've got a situation here - I'm running a dual P4 Xeon Compaq with windows 2K - 1024M. Until yesterday everything was great. Then, the guy who runit started it up and it refused to start. It stopped at a system message - something about the registry hive. So I f

Pausing a script

2002-12-06 Thread Luis Lebron
Does CF have an equivalent of the PHP sleep function. I need to pause s script for a few seconds. Luis ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/i

RE: Regular Expression Help

2002-12-06 Thread Jeff D. Chastain
When I use your before mention snippet, I am getting an underscore character tacked onto the beginning and ending of each word. There is no space or any other character their, but after executing the regex statement, I have underscores before and after. [[:punct:]]|[[:space:]] on 'some phrase' re

RE: Regular Expression Help

2002-12-06 Thread Joshua Miller
Yeah, that's probably the safest method - anything that's NOT a letter or number. Good call. Joshua Miller Head Programmer / IT Manager Garrison Enterprises Inc. www.garrisonenterprises.net [EMAIL PROTECTED] (704) 569-9044 ext. 254

RE: Regular Expression Help

2002-12-06 Thread Raymond Camden
What is a non-existent space? How could a regex remove a character not there? === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc Email: [EMAIL PROTECTED] WWW : www.camdenfamily.com/morpheus Yahoo IM : morpheus

RE: Regular Expression Help

2002-12-06 Thread Rob Rohan
lastly, you could think backwards [^A-Za-z0-9] Rob http://treebeard.sourceforge.net http://ruinworld.sourceforge.net Scientia Est Potentia -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: Friday, December 06, 2002 9:47 AM To: CF-Talk Subject: RE: Regular Expressio

RE: Regular Expression Help

2002-12-06 Thread Teel, C. Doug
I think you accidentally doubled the pipes between the punct and space. It should be: [[:punct:]]|[[:space:]] Thanks, Doug -Original Message- From: Joshua Miller [mailto:[EMAIL PROTECTED]] Sent: Friday, December 06, 2002 11:43 AM To: CF-Talk Subject: RE: Regular Expression Help Oh, for

RE: Regular Expression Help

2002-12-06 Thread Jeff D. Chastain
How do you not replace a non-existent space before and after the string? Everything else works great. Thanks -Original Message- From: Joshua Miller [mailto:[EMAIL PROTECTED]] Sent: Friday, December 06, 2002 11:43 AM To: CF-Talk Subject: RE: Regular Expression Help Oh, forgot the space

RE: Regular Expression Help

2002-12-06 Thread Raymond Camden
Jeff, definetly use Josh's code - just make sure that the chars you want match the [[:punct:]] char class - from the docs: Matches any punctuation character, that is, one of ! ' # S % & ` ( ) * + , - . / : ; < = > ? @ [ / ] ^ _ { | } ~ =

RE: Regular Expression Help

2002-12-06 Thread Jeff D. Chastain
That was what I was looking for, I just had not found it yet. Thanks -Original Message- From: Joshua Miller [mailto:[EMAIL PROTECTED]] Sent: Friday, December 06, 2002 11:42 AM To: CF-Talk Subject: RE: Regular Expression Help ReReplaceNoCase(string,"[[:punct:]]","_","ALL") Joshua Mill

RE: Regular Expression Help

2002-12-06 Thread Raymond Camden
It's as simple as: \.\?/","_","all")> Notice I had to escape out the # and " for CF and a few character that regex use like . and *. It's possible I may have missed one though. === Raymond Camden, ColdFusion Jedi Master for Mind

RE: Regular Expression Help

2002-12-06 Thread Mike Townend
Something like HTH -Original Message- From: Jeff D. Chastain [mailto:[EMAIL PROTECTED]] Sent: Friday, December 6, 2002 17:31 To: CF-Talk Subject: Regular Expression Help I am trying to use a regular expression to change all possible special characters in a string to underscores bec

RE: Regular Expression Help

2002-12-06 Thread Joshua Miller
Oh, forgot the space use "[[:punct:]]||[[:space:]]" as the RegEX Joshua Miller Head Programmer / IT Manager Garrison Enterprises Inc. www.garrisonenterprises.net [EMAIL PROTECTED] (704) 569-9044 ext. 254 *

RE: Regular Expression Help

2002-12-06 Thread Joshua Miller
ReReplaceNoCase(string,"[[:punct:]]","_","ALL") Joshua Miller Head Programmer / IT Manager Garrison Enterprises Inc. www.garrisonenterprises.net [EMAIL PROTECTED] (704) 569-9044 ext. 254 * Any views expressed i

Regular Expression Help

2002-12-06 Thread Jeff D. Chastain
I am trying to use a regular expression to change all possible special characters in a string to underscores because I am trying to use the string as a variable name. Regular expressions are not my specialty and I am running into problems using some characters in my reReplace function. Could some

RE: CFFTP not working

2002-12-06 Thread Raymond Camden
You would not want to use form.putfile. Rather you want the result of the cffile tag's handling of the file upload. Specifically you want file.serverfile (if I remember right). Remember that cfftp can't touch the client's box. You must use cffile to handle the file upload. This gives you access t

ClientVars/Cookies on Linux

2002-12-06 Thread Kevin Bridges
Sorry for any cross-posting ... getting desperate for an answer. I must be missing something really simple. We are running cfmx (with the service pack applied) on a clustered Linux farm. CFMX is not playing well with Oracle so in order to increase performance/scalability I am trying to switch clie

RE: Mental Block - Structures and CFDUMP

2002-12-06 Thread Joshua Miller
Thank you ... I just tried this: dsService=factory.getDataSourceService(); dsFull=dsService.getDatasources(); dsNames=StructKeyArray(dsFull); #dsFull.cfsnippets.driver# And it worked. Thanks for the help! Joshua Miller Head Programmer / IT Manager Garrison Enterprises Inc. www.garrisonent

CFFTP not working

2002-12-06 Thread Smith, Daron [PA]
We recently upgraded to CFMX from 5 and CFFTP is no longer working the same way as it did before. I use form submission to select the file, then use cfftp to do the upload. This worked fine with 5 but now it seems like it is not recognizing the local file on my machine (The client). It works fro

The Loan Handler" Fields Definition

2002-12-06 Thread Les Mizzell
This is sorta off topic, but does anybody have a "Fields Definition Document" for "The Loan Handler" software that they'd be willing to share? I've got a copy of the "Field Description" document, 1st couple of lines below, but the nice folks that wrote "The Loan Handler" ain't exactly forthcoming

RE: Mental Block - Structures and CFDUMP

2002-12-06 Thread Rob Rohan
you can do to get the sub structure, if I understand your question. Rob http://treebeard.sourceforge.net http://ruinworld.sourceforge.net Scientia Est Potentia -Original Message- From: Joshua Miller [mailto:[EMAIL PROTECTED]] Sent: Friday, December 06, 2002 8:54 AM To: CF-Talk Subject

RE: Mental Block - Structures and CFDUMP

2002-12-06 Thread Raymond Camden
To output a specific subkey of a structure of a structure, you just use dot notation. ie, if foo is a structure that contains name, a key with a simple value, you could do: #foo.name# If foo contained a key called data, a struct itself, and data had a key called name, you would do: #foo.data.na

Mental Block - Structures and CFDUMP

2002-12-06 Thread Joshua Miller
I've been playing again with the coldfusion.server.ServiceFactory object and I've run into a little bit of a mental block. I CFDUMP a specific piece and I'm returned: STRUCT cfsnippets STRUCT driverODBC Socket How do I get to the Struct wi

Re: MX Hosting

2002-12-06 Thread John McKown
Sorry about the muliple posts. My bad. Didn't look like it went throught the first time. Maybe the list was slow, maybe the coffee was cold. :) John McKown ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4

Problem insterting a record

2002-12-06 Thread cftalk cftalk
Hello CF'ers... I have a page that inserts twice sometimes and does it correct (insert only once) every once in a while. I am absolutely clueless as to why. The page does have a few loops but on of the inserts is not in one and it still inserts twice. I put tests info on the screen to show m

AbleCommerce

2002-12-06 Thread paul smith
The Readiness Operation Inc owns a license for an unlimited store version of AbleCommerce (which licenses are no longer available). I'm considering selling The Readiness Operation Inc, which has the ABC license as one of its assets. I don't believe such a sale violates the terms of the ABC lice

RE: IIS or MX Caching Files or some odd thing

2002-12-06 Thread Simon Stanlake
yep, since that one instance would be shared by all users of your application. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 05, 2002 4:28 PM To: CF-Talk Subject: RE: IIS or MX Caching Files or some odd thing If I stored a component instan

Re: MX Hosting

2002-12-06 Thread samcfug
AFAIK I do not see the reason for concern about in what language the hosting companies' web site is. If I am shopping for a host, that is what I want, I just want a host, not design expertise, development, etc. I would be purchasing the space, reliability, the bandwidth, and an FTP account to upl

RE: List of Datasources

2002-12-06 Thread Joshua Miller
This uses the servicefactory information from Ben Forta's CFDJ article. My only beef with the servicefactory is I can't find out how to differentiate what's a SQL database and what's an (ack!) Access database. I'm sure it's there, I just can't find it. Anyway, this mimicks the CFStudio DataSource

CFMAIL and CFQuery

2002-12-06 Thread Luis Lebron
I am writing a small script to send out a newsletter. The recipients email address are stored in a database. I would like to create a loop that would send let's send 50 emails, pause for a few seconds and then send the next 50 in the database. Is this possible? thanks, Luis ~

RE: MX Hosting

2002-12-06 Thread Tony Weeg
true. just what I would call odd. sorry, ill stop now. ..tony Tony Weeg Senior Web Developer UnCertified Advanced ColdFusion Developer Information System Design Navtrak, Inc. Mobile workforce monitoring, mapping & reporting www.navtrak.net 410.548.2337 -Original Message- From: Russ [mai

RE: Better display method?

2002-12-06 Thread A.Little
Depends a bit on what database your using, if your using MSSQL have a look at http://www.sqlteam.com/item.asp?ItemID=2955 as it looks from your query as you're trying to create a crosstab/pivot table (where rows in the query become columns). If you're using MS Access, it's a bit easier as you can u

Re: Fw: Is Coldfusion REALLY multi threaded?

2002-12-06 Thread Jochem van Dieten
Stephen Richards wrote: > > The top output only shows one postgres connection as not being idle. And if you run the offending query from psql and ColdFusion at the same time? > The fake queries separated by a time delay showed interesting results: while > that was executing, I could perform CF

RE: MX Hosting

2002-12-06 Thread Russ
I believe they also offer ASP Hosting, etc. Seems to me as if they templated the sites out and then went with what was most efficient and cost-effective to continue on with instead of simply rebuilding in each technology. I guess it just depends upon how you want to take a look at it--from the pe

RE: CFSET in CFMX

2002-12-06 Thread Kwang Suh
Well, using CFSCRIPT, the first was always unbelieveably slow. > -Original Message- > From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] > Sent: Thursday, December 05, 2002 11:39 PM > To: CF-Talk > Subject: Re: CFSET in CFMX > > > The first or the second? I and others had seen the second ta

RE: Better display method?

2002-12-06 Thread Jeff D. Chastain
A complete unknown ... - Projects are unlimited - Groups are unlimited - Users are unlimited - Status will be In Progress, Complete, or N/A -- Jeff -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Sent: Friday, December 06, 2002 9:18 AM To: CF-Talk Subject: Re:

RE: MX Hosting

2002-12-06 Thread Kris Pilles
Or the fact that it's a php site? -Original Message- From: Candace Cottrell [mailto:[EMAIL PROTECTED]] Sent: Friday, December 06, 2002 10:16 AM To: CF-Talk Subject: RE: MX Hosting You mean the fact that it's a PostNuke site? Candace K. Cottrell, Web Developer The Children's Medical

RE: Using CfQuery tag to establish db connection

2002-12-06 Thread Mike Townend
I believe its because as Jochem said earlier CreateODBCDateTime doesn't play nice with OLEDB, the initial connection you were using was going via OLEDB to connect to the DB, where as the connection string below connects via a DNSless ODBC connection where CreateODBCDateTime will work... As its ODBC

RE: MX Hosting

2002-12-06 Thread Tony Weeg
I thinkthe answer lies in the url .php? man, if I was touting cf hosts, and I was hoping people were going to support me, wouldn't I want to be using cf myself? not knocking whoever is hosting it, just kinda doesn't make sensethats all. ..tony Tony Weeg Senior Web Developer UnCerti

RE: List of Datasources

2002-12-06 Thread Stacy Young
Thanks guys! -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Sent: Friday, December 06, 2002 4:27 AM To: CF-Talk Subject: Re: List of Datasources Stacy Young wrote: > Anyone know how to get list of available datasources in cfmx? Service > Factory? http://spike.oli.

Re: Better display method?

2002-12-06 Thread Jochem van Dieten
Jeff D. Chastain wrote: > > Anybody got a quick, clean, solution? Am I missing > something here? What is the maximum number of different projects, groups, usernames and status'es (statuses?) you are going to have at any one time? Jochem

CF5 MS Access Memo field problem

2002-12-06 Thread Mark Leder
Hi All, HELP - I'm really stumped on this one. A simple form inserts data to an Access table, comprised of numeric, text, autonumber(key), and memo fields. Data writes to db normally (I've checked the db). However, doing a cfquery and cfoutput to display the results returns all fields except for

RE: MX Hosting

2002-12-06 Thread Candace Cottrell
You mean the fact that it's a PostNuke site? Candace K. Cottrell, Web Developer The Children's Medical Center One Children's Plaza Dayton, OH 45404 937-641-4293 http://www.childrensdayton.org [EMAIL PROTECTED] >>> [EMAIL PROTECTED] 12/6/2002 9:59:03 AM >>> whats wrong with this pictur

RE: Using CfQuery tag to establish db connection

2002-12-06 Thread Hirschman, Miriam
Thank you very much. It worked I put the Cfset tags in the application page. If you have time, I was just wondering if you would be able to explain to me why my previous code did not work, should I change it even for the queries that it does work for? Thanks again for your time. -Original M

Re: Better display method?

2002-12-06 Thread Dick Applebaum
Oops, Ignore the previous post-- clicked the wrong button. On Friday, December 6, 2002, at 06:59 AM, Dick Applebaum wrote: > One thing that comes to mind is to do the aggregating ~| Archives: http://www.houseoffusion.com/cf_list

Re: Better display method?

2002-12-06 Thread Dick Applebaum
Jeff One thing that comes to mind is to do the aggregating On Friday, December 6, 2002, at 05:48 AM, Jeff D. Chastain wrote: > I have a single query worth of data that I need to > display in a two-dimensional table. I have written a > fair amount of backwards code trying to get this to > work an

RE: MX Hosting

2002-12-06 Thread Tony Weeg
whats wrong with this picture? http://www.coldfusionhosts.net/modules.php?name=Hosts&rop=showcontent&id =16 just my .02 c ..tony Tony Weeg Senior Web Developer UnCertified Advanced ColdFusion Developer Information System Design Navtrak, Inc. Mobile workforce monitoring, mapping & reporting www.

RE: MX Hosting

2002-12-06 Thread Kris Pilles
-Original Message- From: Russ [mailto:[EMAIL PROTECTED]] Sent: Friday, December 06, 2002 9:51 AM To: CF-Talk Subject: RE: MX Hosting No offense to Ben, but a) competition is good, let's let it thrive and b) I'd probably go with the better design, more professional-looking, easier to use

RE: Using CfQuery tag to establish db connection

2002-12-06 Thread Mike Townend
How about if you connect something like ... HTH -Original Message- From: Hirschman, Miriam [mailto:[EMAIL PROTECTED]] Sent: Friday, December 6, 2002 14:32 To: CF-Talk Subject: RE: Using CfQuery tag to establish db connection No, I have not, but I am not sure how to do

RE: MX Hosting

2002-12-06 Thread Russ
No offense to Ben, but a) competition is good, let's let it thrive and b) I'd probably go with the better design, more professional-looking, easier to use site from a consumer standpoint. > Or the alternative, look them up on the Ben Forta web site, > which has been listing hosting providers for

Re: Fw: Is Coldfusion REALLY multi threaded?

2002-12-06 Thread Stephen Richards
> It is a possibility. top output would help. Also, you could try the > following code: > > > > >SELECT 1; > > > > > > > > > >SELECT 1; > > > > > This will hold on to a connection for 10 seconds. In the mean time, run > a simple "SELECT 1" in another template and see if t

RE: Using CfQuery tag to establish db connection

2002-12-06 Thread Hirschman, Miriam
OK Thank you, but I am not sure what timestamp is OK. I am also confused if I need to use OLEDB or can I use ODBC for Access 97 or 2000 db? Thank you very much. -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Sent: Friday, December 06, 2002 9:39 AM To: CF-Talk Subj

Re: MX Hosting

2002-12-06 Thread samcfug
Or the alternative, look them up on the Ben Forta web site, which has been listing hosting providers for a long time, along with ratings. = Douglas White group Manager mailto:[EMAIL PROTECTED] http://www.samcfug.org = - Or

RE: Using CfQuery tag to establish db connection

2002-12-06 Thread Hirschman, Miriam
No, I have not, but I am not sure how to do this. This is my query, it uses variables, but I pasted the real values for you. SELECT CommentID,Comment, [CommentID] & [Comma] & [niin] & [Comma] & [myDate] & [Comma] & [Author] & [Comma] & [Nomenclature]AS Holder FROM qryComment_Nomenclature Where

Re: Using CfQuery tag to establish db connection

2002-12-06 Thread Jochem van Dieten
Hirschman, Miriam wrote: > > It works fine in most > instances however, when using a query that uses the CreateODBCDateTime I get > an error: Malformed GUID. in query expression. > > providerdsn="#strConn#" > dbtype="OLEDB" ODBCdatetime and OLE DB don't mix. Use whatever timestamp is native t

Consume RSS with CF5 - how?

2002-12-06 Thread Dimo Michailov
Hi All: Can anyone suggest a quick way (preferably without having to install externam tags/modules) to consume RSS news feeds with CF5? Thanks in advance! Dimo Michailov ~| Archives: http://www.houseoffusion.com/cf_lists/index

RE: Using CfQuery tag to establish db connection

2002-12-06 Thread Mike Townend
What does the query look like? Have you tried connecting with a connection string instead... -Original Message- From: Hirschman, Miriam [mailto:[EMAIL PROTECTED]] Sent: Friday, December 6, 2002 14:21 To: CF-Talk Subject: Using CfQuery tag to establish db connection I posted this onc

RE: Just to Report Bug in MX

2002-12-06 Thread Matthew Small
You could just update your database field with the value of 0 where it is null, and from then on just have a default value of 0 for that field (if it's possible in Foxpro, I don't know). This will work if you can consider the values of 0 and null to be equal. I think it would save you a lot of ch

Using CfQuery tag to establish db connection

2002-12-06 Thread Hirschman, Miriam
I posted this once, but did not receive an answer. I would appreciate any help. I am trying to do a cfquery without setting up a DSN on the CF Admin. I am using CF 5. I pasted the code that I am using below. It works fine in most instances however, when using a query that uses the CreateODBCDate

RE: restart the CF MX service

2002-12-06 Thread Chad
Thanks Mike... This seems to work much better then the stock cf stop/start batch files that came with CF MX. > -Original Message- > From: Mike Townend [mailto:[EMAIL PROTECTED]] > Sent: Friday, December 06, 2002 9:08 AM > To: CF-Talk > Subject: RE: restart the CF MX service > > Try cre

RE: restart the CF MX service

2002-12-06 Thread Mike Townend
Try creating a batch file that calls the net stop and net start routines... i.e. StopCF.bat @Echo off Echo. Echo Stopping CF net stop "ColdFusion MX ODBC Server" net stop "ColdFusion MX ODBC Agent" net stop "ColdFusion MX Application Server" StartCF.bat @Echo off Echo. Echo Starting CF net star

Re: Just to Report Bug in MX

2002-12-06 Thread Paul Hastings
> > > > #LSCurrencyFormat(a, "local")# > > Doesn' WORK. > > CFML Reference: LSCurrencyFormat > LSCurrencyFormat(number [, type ]) > > Considering an empty string is not a number, I am not surprised and > would not call it a bug. if it makes you feel any better, java won't swallow empty strings fo

RE: Just to Report Bug in MX

2002-12-06 Thread Tony Weeg
you should/could just check for its existence and numeric properties if isDefined("a") and isNumeric(a) else cfset a = "0" ..tony Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337 -Original Message- F

restart the CF MX service

2002-12-06 Thread Chad
I would like to run a scheduled task under windows to restart the MX service every night at 4am. Our jrun.exe keeps getting bloated with memory... 80+ megs of ram is not unusual. I tried using cfstop.bat and cfstart.bat but something happened and IIS lost track of the JRUN service. I came in thi

Re: CFSET in CFMX

2002-12-06 Thread Gyrus
- Original Message - From: "Michael Dinowitz" <[EMAIL PROTECTED]> > Your index is "&i> > > This is where things get tricky style wise. FWIW, I've settled on the latter. In Homesite+ I have strings set to be light blue and italicised. So with the second one I

Re: Just to Report Bug in MX

2002-12-06 Thread Jochem van Dieten
Shahzad.Butt wrote: > > > #LSCurrencyFormat(a, "local")# > WORKS > > but > > > #LSCurrencyFormat(a, "local")# > Doesn' WORK. CFML Reference: LSCurrencyFormat LSCurrencyFormat(number [, type ]) Considering an empty string is not a number, I am not surprised and would not call it a bug. J

Better display method?

2002-12-06 Thread Jeff D. Chastain
I have a single query worth of data that I need to display in a two-dimensional table. I have written a fair amount of backwards code trying to get this to work and I figure somebody has to know of a better way. Here are the details SELECT username, groupname, project, projectstatu

cfmx and FORM file oddity Part II

2002-12-06 Thread Jaye Morris - jayeZERO.com
Val, Thanks that did the trick. -//- Jaye Morris - Multimedia Developer -//- [EMAIL PROTECTED] - www.navtrak.net -//- [EMAIL PROTECTED] - www.jayezero.com The variable you want to call is actually #File.ServerFile# This is the default name assigned by CF to any just uploaded file. Th

Just to Report Bug in MX

2002-12-06 Thread Shahzad.Butt
Just to let you know that #LSCurrencyFormat(a, "local")# WORKS but #LSCurrencyFormat(a, "local")# Doesn' WORK. I am quering from foxpro DB and getting emply fields for loads of values. Now this bug is causing me to change atleast 300 files as I am migrating from CF5.0 to CFMX. Shahzad

RE: CFX_Image - Quality of images not good when rotating

2002-12-06 Thread Craig Dudley
A few people asked for this to play with, so here goes.. /* * Thumbnail.java (requires Java 1.2+) */ import com.allaire.cfx.*; import com.sun.image.codec.jpeg.*; import java.awt.*; import java.awt.image.*; import java.io.*; public class Thumbnail implements CustomTag{ public void processRe

Re: Personaliztion with Coldfusion ?

2002-12-06 Thread Ian Vaughan
Hi Candace Ok that would be great if you could thanks, Ian - Original Message - From: "Candace Cottrell" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, December 06, 2002 11:17 AM Subject: Re: Personaliztion with Coldfusion ? > Hi there, > > My PC just got moved to

Re: Personaliztion with Coldfusion ?

2002-12-06 Thread Candace Cottrell
Hi there, My PC just got moved to Windows 2000, and I am as of yet unable to PC anywhere to my server. I will try to run a test on this sometime today. Sorry :( Candace K. Cottrell, Web Developer The Children's Medical Center One Children's Plaza Dayton, OH 45404 937-641-4293 http://w

Re: Fw: Is Coldfusion REALLY multi threaded?

2002-12-06 Thread Jochem van Dieten
Stephen Richards wrote: > Thanks for the tips Jochem. But as I say, I know we can tidy the queries up > and make them more efficient, but what I don;t know how to do is make CF not > wait for one query to finish before starting to execute another. No matter > what I do to the queries, unless that

  1   2   >