Re: CFMX - XP SP2 and SQL Server

2004-09-23 Thread Kay Smoljak
Qasim Rasheed [EMAIL PROTECTED] wrote: Recently I installed XP SP2 on my machine and suddenly ColdFusion MX is unable to connect to my SQL server present on the same machine. John Beynon [EMAIL PROTECTED] wrote: i think you have to do something odd like sp3 your SQL server install, I had

Re: New MAX 2004 CF Blackstone Sessions

2004-09-23 Thread Simon Horwith
looking forward to it, Damon. ~Simon Simon Horwith Member of Team Macromedia Macromedia Certified Master Instructor Editor-in-Chief, ColdFusion Developers Journal Blog - http://www.horwith.com [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

Re: ot: jrun ?

2004-09-23 Thread Simon Horwith
that's odd.One thing you might want to do is turn off auto-deploy. You can do this by going to the server's jrun.xml file DeployerService section and commenting out the attribute node that has a name attribute value ofdeployDirectory. If there are any file or url attribute tags (with that value

Re: ot: jrun ?

2004-09-23 Thread dave
i think i will just sit here and kick it awhile Could not create the Java virtual machine. Unrecognized option: -server Could not create the Java virtual machine. Unrecognized option: -server Could not create the Java virtual machine. -- Original Message

RE: Looping....again

2004-09-23 Thread Brant Winter
Thanks for the ongoing help - I am now mapping out the loops and queries, and hope to get started writing the real one soon. I have played with your looping code a little to include a couple of other conditions, mainly being you need a separate piece of paper ( ie a new script ) for Authority

Converting query to comma separated list

2004-09-23 Thread Mark Henderson
My first question, though I suspect this might not be the best approach . Is it possible to turn a query (cfdirectory in this case) into a comma separated list? The reason I ask is bcos currently I have a hardcoded list of folders in my action file, and I loop through and pull all the files from

Re: Converting query to comma separated list

2004-09-23 Thread Andrew Dixon
Why don't you just CFLOOP over the query? You don't need to convert the query to a comma list to loop over it... CFLOOP query=qry_name) ...cf code... /CFLOOP Andrew. - Original Message - From: Mark Henderson [EMAIL PROTECTED] Date: Thu, 23 Sep 2004 21:07:07 +1200 Subject: Converting

RE: Converting query to comma separated list

2004-09-23 Thread Kola Oyedeji
Mark, Not sure if I understand your question but maybe ValueList() May be of some help? Kola -Original Message- From: Mark Henderson [mailto:[EMAIL PROTECTED] Sent: 23 September 2004 10:07 To: CF-Talk Subject: Converting query to comma separated list My first question, though I

Re: Converting query to comma separated list

2004-09-23 Thread Mark Henderson
Thank you for the swift replies Andrew and Kola, and you're right Andrew. I'd already tried something similar, but was making it more complicated than necessary. Here's what works cfdirectory name=getAllFolders action=""> directory=#serverdir# sort=name ASC cfloop query = getAllFolders

Re: Converting query to comma separated list

2004-09-23 Thread Andrew Dixon
That look like what I was thinking of. Just make sure that if you are using an older version of CF (CF4/5 I think) that CFDIRECTORY returned the . and .. directories, but CFMX doesn't do this. As you say it works I'm guess you are on CFMX. Andrew. - Original Message - From: Mark

Disabling request timeouts

2004-09-23 Thread James Smith
I want to have a global request timeout on the server of about 30 seconds but there are a few (3 so far) templates that I need to be able to run for up to 30 minutes.Is there no way to disable the timeout for an individual template or am I going to have to disable it in the administrator and then

RE: Disabling request timeouts

2004-09-23 Thread Robertson-Ravo, Neil (RX)
Just add cfsetting... to your Application.cfm file and all pages will inherit the timeout if required. _ From: James Smith [mailto:[EMAIL PROTECTED] Sent: 23 September 2004 11:55 To: CF-Talk Subject: Disabling request timeouts I want to have a global request timeout on the server of about

RE: Disabling request timeouts

2004-09-23 Thread Robertson-Ravo, Neil (RX)
Though really if you are running a page for 30 mins then I would look at an alternative approach...I would assume that the length of time to run it due to SQL...maybe look at DTS. _ From: James Smith [mailto:[EMAIL PROTECTED] Sent: 23 September 2004 11:55 To: CF-Talk Subject: Disabling

RE: Disabling request timeouts

2004-09-23 Thread James Smith
The time is actually caused by looking up a couple of thousand web pages (by cfhttp) and processing the returned pages to extract some info. -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: 23 September 2004 12:00 To: CF-Talk Subject: RE:

RE: Disabling request timeouts

2004-09-23 Thread James Smith
No good, the templates that require extra time would also inherit the timeout.I could use some cfif logic to use the cfsetting on all pages except a couple listed, i.e cfif CGI.SCRIPT_NAME IS NOT . cfsetting . /cfif But really I want the control to be on the templates for the long

RE: Disabling request timeouts

2004-09-23 Thread Robertson-Ravo, Neil (RX)
Jeez..hefty! _ From: James Smith [mailto:[EMAIL PROTECTED] Sent: 23 September 2004 12:07 To: CF-Talk Subject: RE: Disabling request timeouts The time is actually caused by looking up a couple of thousand web pages (by cfhttp) and processing the returned pages to extract some info.

RE: Disabling request timeouts

2004-09-23 Thread James Smith
Yeah, fortunately most of the time is spent waiting for the http responses which uses no system resources so the templates just run in the background and don't even make a noticeable mark on the CPU usage. -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED]

RE: Disabling request timeouts

2004-09-23 Thread Pascal Peters
You can't disable it, and you shouldn't. Set it to a high value and don't place the tag in the Application.cfm, but in the template that needs it. Pascal -Original Message- From: James Smith [mailto:[EMAIL PROTECTED] Sent: 23 September 2004 13:14 To: CF-Talk Subject: [Spam?] RE:

CFPOP Issues

2004-09-23 Thread phil williams
Hi, One of my hosting clients is having an issue withn CFPOP and I'm not sure how to advise him: I have been accessing the emails coming into my main account ([EMAIL PROTECTED]) for some time now, using CFPOP as it is a requirement for a process within my application. For a time I was getting

CF Webmail

2004-09-23 Thread Neculai Macarie
Hi guys! Do you know a webmail built on CF ? I need it on a BlueDragon server but if it works on CF5 or CFMX I will make it work on BD if the source is available. Thanks, mack / [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: Disabling request timeouts

2004-09-23 Thread Robertson-Ravo, Neil (RX)
Not sure what you mean? If you place it in the Application.cfm page and set the value high then only the pages which need that high value will utilize it...the others will parse as normal You cant disable the timeout. I cannot see why adding it to Application is a problem?! N

Quick and Easy way to submit/enter all form fields

2004-09-23 Thread Claremont, Timothy
I am looking for an easy way of submitting something like 100 form fields into the corresponding fields in a database, assuming that the field names in the database match the field names on the form. Is there a method to grabbing all of the fields from the form and submitting into the equivalent

Re: Quick and Easy way to submit/enter all form fields

2004-09-23 Thread Mark Drew
Tried the wizard in dreamweaver? MD On Wed, 22 Sep 2004 15:55:18 -0400, Claremont, Timothy [EMAIL PROTECTED] wrote: I am looking for an easy way of submitting something like 100 form fields into the corresponding fields in a database, assuming that the field names in the database match the

RE: Quick and Easy way to submit/enter all form fields

2004-09-23 Thread James Smith
Try cfinsert. http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/tags-p66.htm#wp110047 2 -- Jay -Original Message- From: Claremont, Timothy [mailto:[EMAIL PROTECTED] Sent: 22 September 2004 20:55 To: CF-Talk Subject: Quick and Easy way to submit/enter all form fields I am

Re: ot: jrun ?

2004-09-23 Thread Douglas Knudsen
that looks like the error generated when you use the JMC to update your class path or something.Need to edit {jrunhome}/bin/jvm.config and get it fixored.Below is a copy of one from a vanilla install that you can use as a guide perhaps. IIRC, you said you are on linux, the below is from

Re: Quick and Easy way to submit/enter all form fields

2004-09-23 Thread Steve Brownlee
I would say INSERT if you are 100% certain that all field names match up.However, if you want a manual way of doing it, here's a quick hack of a suggestion. cfset columnList = cfset valueList = cfloop index=formField list=#form.fieldnames# delimiters=, cfset columnList = ListAppend(columnList,

Re: Quick and Easy way to submit/enter all form fields

2004-09-23 Thread Douglas Knudsen
ugh, use of cfinsert is commonly disuaded.Like Mark mentioned, check out the wizardy gizmos in DW to generate your insert SQL. Doug - Original Message - From: James Smith [EMAIL PROTECTED] Date: Thu, 23 Sep 2004 13:48:51 +0100 Subject: RE: Quick and Easy way to submit/enter all form

RE: Quick and Easy way to submit/enter all form fields

2004-09-23 Thread James Smith
Something worth noting is that with either this method or the cfinsert method you will have errors generated by the submit button (unless you have a field for it in the BD!) but the simple workaround is to have the submit button with a blank name, ie: input type=submit name= value=Insert That

Re: JAVASCRIPT and textarea

2004-09-23 Thread Asim Manzur
Micheal will you please give me an example how to replace i.e. you mean to do the server side validation??? I need the client side validation. Ryan, does DOM works in mac as well?? thanks I agree.Simply replace after the submit. Also, you can strip complicated things out using DOM. We use the

RE: Quick and Easy way to submit/enter all form fields

2004-09-23 Thread Dave Watts
Is there a method to grabbing all of the fields from the form and submitting into the equivalent fields in the database, or do I need to resort to the mile-long ISERT blah blah blah INTO blah blah blah? I would strongly recommend that you stick with the mile-long INSERT statement. You only

RE: debug question

2004-09-23 Thread Jason Reichenbach
I'm on CF 5 still =( any idea where I can find it on that? _ From: Qasim Rasheed [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 22, 2004 5:41 PM To: CF-Talk Subject: Re: debug question Jason, If you didn't find a custom made function, I think you can take a look at debug.cfm under

RE: Disabling request timeouts

2004-09-23 Thread Dave Watts
Yeah, fortunately most of the time is spent waiting for the http responses which uses no system resources so the templates just run in the background and don't even make a noticeable mark on the CPU usage. While it might not affect CPU usage, it almost certainly affects server throughput.

OT: Reliable SEO company recommendations?

2004-09-23 Thread Rachel Maxim
My company is looking for someone to do search engine optimization on our sites. Can anyone recommend a reliable, reputable company for the job? We're in the DC area. Please reply to me off list. Thanks! Rachel Maxim - - - - - - - - - - - - - - - - - - - - - - - - Creative Director Case

Re: Converting query to comma separated list

2004-09-23 Thread Joe Rinehart
Mark, I posted a CFC called queryTool to my site (http://clearsoftware.net - downloads - queryTool) and to cfcZone.org that converts queries to delimited formats, XML, arrays, and structures.Perfectly free, seems to work pretty well. Cheers, Joe - Original Message - From: Mark

Re: OT: JS Gateway Question

2004-09-23 Thread Rick Mason
Mike, Sure send me the page and I will take a look at it.Friday's are best for me because that's the day I work from home.No less busy, but it's easier to fit in some extra stuff that day. Rick Mason - Original Message - From: Michael T. Tangorre [EMAIL PROTECTED] Date: Thu, 23 Sep

Re: cfc variables

2004-09-23 Thread Douglas Knudsen
Barney suggested adding your DSN, UN, and PW as actual arguments to the function. I've been using the way of the Jedi, Ray Camden :), lately.Setup a config.ini file with your dsn name, un, pw, etc.. and have your CFC read theses values in when its instantiated.I've actually gone a step further

Authorize.net Tag Problem

2004-09-23 Thread E C list
I've never had any problems before, but recently I started getting the following error using the authorize_net_3 custom tag.I am just trying to work out if my server (CF 5) is having a general problem with CFHTTP or if authorize.net made a change, or something like that.The error that's been

RE: Authorize.net Tag Problem

2004-09-23 Thread d.a.collie
May this have something to do with it? http://www.theregister.co.uk/2004/09/23/authorize_ddos_attack/ -- dc [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Authorize.net Tag Problem

2004-09-23 Thread Rick Root
Authorize.net is currently suffering from intermittent outages caused by distributed denial of service attacks. - Rick [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: Converting query to comma separated list

2004-09-23 Thread SStewart
Joe, Got the following error trying to access your site Error Executing Database Query. [Macromedia][SQLServer JDBC Driver][SQLServer]Could not allocate space for object 'clearsoftware_visitors' in database 'clearsoftware_net_01' because the 'PRIMARY' filegroup is full. The error

Re: Authorize.net Tag Problem

2004-09-23 Thread Jerry Johnson
Eron, Are you still using https://www.authorize.net? We were told yesterday by tech cupport that the address needs to be https://secure.authorize.net This instantly speeded up the requests, and many more are going through. (Note: we are still having intermittent problems, but much less than on

Re: Authorize.net Tag Problem

2004-09-23 Thread Jerry Johnson
Darn. That was supposed to go direct. Stupid reply-all! Jerry Johnson [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

OT: Problems with subversion (1.1)?

2004-09-23 Thread Damien McKenna
I'm about to move from Perforce and CVS to using Subversion for our revision management.Has anyone had any problems with it?I'm going to start using the v1.1 release (just 'cause I can)... -- *Damien McKenna* - Web Developer - [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] The Limu Company -

Re: Problems with subversion (1.1)?

2004-09-23 Thread Massimo Foti
I'm about to move from Perforce and CVS to using Subversion for our revision management.Has anyone had any problems with it?I'm going to start using the v1.1 release (just 'cause I can)... I moved from CVS to Subversion and I will never look back. But I avoided v 1.1 so far since it's still a

Re: OT: Problems with subversion (1.1)?

2004-09-23 Thread Damien McKenna
Speaking of which, is anyone else having problems getting through to tigris.org?I was there last night and this morning at home but am completely unable to get to it from work. -- *Damien McKenna* - Web Developer - [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] The Limu Company -

Re: SOT: Windows to Unix Link capitalization problem

2004-09-23 Thread E C list
That would be a good idea, but I don't have access to that server at all...and it would take alot to get them to do it or to get them to let me do it.I was hoping for some kind of automated tool that would go through and look for these case sensitive issues.I guess it may not exist. E C list

Re: CFMX - XP SP2 and SQL Server

2004-09-23 Thread Troy Murray
I had the same problem too, the event log on XP told me that SQL was diabled as it wasn't patched to prevent the SQL slammer and the like. -t - Original Message - From: Kay Smoljak [EMAIL PROTECTED] Date: Thu, 23 Sep 2004 14:23:10 +0800 Subject: Re: CFMX - XP SP2 and SQL Server To:

Re: Authorize.net Tag Problem

2004-09-23 Thread Jacob
Since September 15th... At 07:18 AM 9/23/2004, you wrote: Authorize.net is currently suffering from intermittent outages caused by distributed denial of service attacks. - Rick -- [http://www.houseoffusion.com/lists.cfm/link=t:4Todays Threads]

Re: OT: Problems with subversion (1.1)?

2004-09-23 Thread Pete Freitag
Damien McKenna wrote: I'm about to move from Perforce and CVS to using Subversion for our revision management.Has anyone had any problems with it?I'm going to start using the v1.1 release (just 'cause I can)... I'm using the 1.0 version, and it works quite well. The only difference you will

Distribute cf as java bytecode atop a J2EE server: What do I need?

2004-09-23 Thread Peterson, Andrew S.
Hi, I love the idea of being able to distribute compiled Java bitecode, without CFML source, on top of a J2EE server. Blackstone will let me do this. However, I have no knowledge regarding the building of a J2EE server. What do I need? This J2EE server will be used internally, and the web apps

Question about CFHTTP running on CF4.5

2004-09-23 Thread Ciliotta, Mario
Hi, First let me say I know that it is an old very version of CF but thats what I have to use on these servers as they have not been upgraded yet. My problem is that my one server is running 4.5.1 and the other is running 4.5 and I trying to do a CFHTTP call to an internal server to get a

SOT - Crystal Reports Training

2004-09-23 Thread Todd
I am looking for Crystal Reports training.Has anyone ever taken any classes like this?What companies would you reccomend?Cost isn't really an issue.I would like something in either N.C. or S.C, but anywhere will do.Time is the most important factor here.The sooner I can find a class, the better.

OT: Oracle 9i

2004-09-23 Thread djones
If I have am building an extremely large string (40,000 chars) in a PL/SQL stored procedure.Would it be better to keep concatenating a variable of a CLOB datatype?Or build 10 varchars and concatenate them at the end into a CLOB? I have noticed that my stored procedure runs very slow using the

Doug White - clickdoug.com

2004-09-23 Thread Burns, John D
I noticed there was a thread in CF-Community from a few weeks ago of people who were hosting with Doug White (www.clickdoug.com) who had experienced his outage that never came back up and are having trouble contacting him.Has anyone had any luck with this?We were hosting with him and moved all of

RE: Question about CFHTTP running on CF4.5

2004-09-23 Thread Dave Watts
My problem is that my one server is running 4.5.1 and the other is running 4.5 and I trying to do a CFHTTP call to an internal server to get a list of stock quotes. The problem is that it works on 4.5.0 but not on 4.5.1.On the 4.5.1 box I get a connect refused error but on the 4.5.0 I do

RE: Doug White - clickdoug.com

2004-09-23 Thread Kristopher Pilles
Yikes... Good luck with getting your files... -Original Message- From: Burns, John D [mailto:[EMAIL PROTECTED] Sent: Thursday, September 23, 2004 11:17 AM To: CF-Talk Subject: Doug White - clickdoug.com I noticed there was a thread in CF-Community from a few weeks ago of

Re: OT: Oracle 9i

2004-09-23 Thread Adrocknaphobia
Have you tried using the DBMS_LOB.Append function? -Adam - Original Message - From: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Thu, 23 Sep 2004 11:16:02 -0400 Subject: OT: Oracle 9i To: CF-Talk [EMAIL PROTECTED] If I have am building an extremely large string (40,000 chars) in a PL/SQL

Re: Doug White - clickdoug.com

2004-09-23 Thread Adrocknaphobia
John, contact me off list. -Adam - Original Message - From: Burns, John D [EMAIL PROTECTED] Date: Thu, 23 Sep 2004 11:17:24 -0400 Subject: Doug White - clickdoug.com To: CF-Talk [EMAIL PROTECTED] I noticed there was a thread in CF-Community from a few weeks ago of people who were

RE: Reliable SEO company recommendations?

2004-09-23 Thread Scott Mulholland
Rachel, The company I work for offers this, would it be ok to contact you off list? Thanks, Scott -Original Message- From: Rachel Maxim [mailto:[EMAIL PROTECTED] Sent: Thursday, September 23, 2004 8:37 AM To: CF-Talk Subject: OT: Reliable SEO company recommendations? My company is

Re: Doug White - clickdoug.com

2004-09-23 Thread Charlie Griefer
I'm actually right in the middle of trying to get the 'situation' resolved myself.I lost a little data...but it's personal stuff, not business related...so there's no money loss there (or customers to deal with). But on Aug 5, I paid for 1 year of hosting.Doug and his servers disappeared about 1

Re: print output

2004-09-23 Thread Larry Lyons
I am looking at using CFX_PDF to generate the output for my prescription application as I can use it to accurately place text element on the page, and generate new pages etc based on cfif statements. Is there any other way ?? I have considered using a Crystal Reports file, but then I

RE: Doug White - clickdoug.com

2004-09-23 Thread Kristopher Pilles
Call up and get a new CC # then Paypal can't charge you. KP -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: Thursday, September 23, 2004 11:28 AM To: CF-Talk Subject: Re: Doug White - clickdoug.com I'm actually right in the middle of trying to get

Re: Question about CFHTTP running on CF4.5

2004-09-23 Thread Matt Robertson
IIRC CFHTTP was changedin 4.5.1 to fix a number of issues that cropped up in 4.5.Then it got changed again in the 2 SP's (or maybe just SP2?)to fix the fixes.Or something like that.I ran 4.5.1sp2 as recently as January of this year and cfhttp worked great. If you aren't running on SP2, I still

RE: OT: Oracle 9i

2004-09-23 Thread djones
I have not, will this increase the performance? I read that clobs could be used the same as varchars so I didn't think I would have to. Thanks, David -Original Message- From: Adrocknaphobia [mailto:[EMAIL PROTECTED] Sent: Thursday, September 23, 2004 11:23 AM To: CF-Talk Subject: Re: OT:

Re: Doug White - clickdoug.com

2004-09-23 Thread Thomas Chiverton
On Thursday 23 Sep 2004 16:17 pm, Burns, John D wrote: with him and moved all of our sites to rackspace.com but are in serious need of some files and stuff off of the server that Doug White has. Repeat after me: Back up, back up, back up. Not that that helps :-) -- Tom Chiverton Advanced

Re: OT: Reliable SEO company recommendations?

2004-09-23 Thread Adrocknaphobia
I doubt you will find a company that will do a better job than yourself. -Yours - Original Message - From: Rachel Maxim [EMAIL PROTECTED] Date: Thu, 23 Sep 2004 09:36:59 -0400 Subject: OT: Reliable SEO company recommendations? To: CF-Talk [EMAIL PROTECTED] My company is looking for

Re: OT: Oracle 9i

2004-09-23 Thread Adrocknaphobia
I'm not sure what the performance measurments are vs. concat. I've never had to build a LOB in that way. Are you trying to combine multiple columns or somthing? -Adam - Original Message - From: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Thu, 23 Sep 2004 11:34:32 -0400 Subject: RE: OT:

Re: Doug White - clickdoug.com

2004-09-23 Thread Charlie Griefer
On Thu, 23 Sep 2004 11:31:08 -0400, Kristopher Pilles [EMAIL PROTECTED] wrote: Call up and get a new CC # then Paypal can't charge you. KP Well, PayPal really shouldn't get screwed in this...they weren't at fault anywhere. Plus, I just recently made a purchase on ebay, and told the seller I'd

Backing Up off of server (WAS RE: Doug White - clickdoug.com)

2004-09-23 Thread Andy Ousterhout
OK,I back-up, but to my current service provider's stuff (Please, CFDynamics, don't pull a Dougie!). Question:How could I perform a backup to my computer.MS SQL.I am looking for data, tables, indices and relationships. Andy -Original Message- From: Thomas Chiverton [mailto:[EMAIL

Re: Doug White - clickdoug.com

2004-09-23 Thread Damien McKenna
Charlie Griefer wrote: Well, PayPal really shouldn't get screwed in this...they weren't at fault anywhere. Other payment services will get involved in situations like this, but Paypal won't.They act like a bank / credit card company but don't follow the regulations associated with those

Re: Distribute cf as java bytecode atop a J2EE server: What do I need?

2004-09-23 Thread Thomas Chiverton
On Thursday 23 Sep 2004 16:03 pm, Peterson, Andrew S. wrote: this. However, I have no knowledge regarding the building of a J2EE server. What do I need? This J2EE server will be used internally, and Apache have built one for you (tomcat), as have Macromedia (jrun) and many others. All are

Re: Reliable SEO company recommendations?

2004-09-23 Thread Bryan Stevenson
www.stepforth.com Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com [Todays Threads] [This Message] [Subscription] [Fast

Re: Backing Up off of server (WAS RE: Doug White - clickdoug.com)

2004-09-23 Thread Bryan Stevenson
Well if you use SQL Server you must have Enterprise Managerif so then whenever you feel like it your should be able to use DTS to suck a copy to your local machine (of course now that there seems to be no server to suck from...well...life just sucks) Cheers Bryan Stevenson B.Comm. VP

Re: Doug White - clickdoug.com

2004-09-23 Thread Adrocknaphobia
Well it seems that the vast majority of User Group sites were being hosted by Doug so this topic has been brought up a billion times on that list. Here are some of the relevant post: The following was posted by Tom May on Aug 19: Doug reports his provider (SBC) has incurred a major fiber cable

RE: Question about CFHTTP running on CF4.5

2004-09-23 Thread Ciliotta, Mario
Doug, That was the exact problem, Thanks Mario -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Thursday, September 23, 2004 11:26 AM To: CF-Talk Subject: RE: Question about CFHTTP running on CF4.5 My problem is that my one server is running 4.5.1 and the other

Re: Converting query to comma separated list

2004-09-23 Thread Larry Lyons
My first question, though I suspect this might not be the best approach . Is it possible to turn a query (cfdirectory in this case) into a comma separated list? Mark, There's a UDF on CFLib called QueryToCsv that does exactly that, turn query results into a CSV list:

Re: JAVASCRIPT and textarea

2004-09-23 Thread Asim Manzur
here is the function. It like that fuction is working, but only problem I am having that I need to change the value in the textarea as well so user can see that what his output will be. And those textarea(s) are dynamic. so I am passing two values to the function. rcv=what ever they typed and

Re: Reliable SEO company recommendations?

2004-09-23 Thread Adrocknaphobia
Do either companies (stepforth or accurateimaging) offer a gaurantee that your ranking will increase. IE if your ranking dont improve, you dont get billed? -Ada, - Original Message - From: Bryan Stevenson [EMAIL PROTECTED] Date: Thu, 23 Sep 2004 08:46:13 -0700 Subject: Re: Reliable SEO

RE: JAVASCRIPT and textarea

2004-09-23 Thread Ryan Duckworth
Yes.This is possible. 1.Create 2 hidden DIVs on the page. 2.Use code similar to this to copy to temp area, fix, then copy back to original area. fullCleanWorkSpace.innerHTML ='div' + aeObject.DOM.body.innerHTML + '/div'; removeAllTags(fullCleanWorkSpace,fullCleanWorkSpace2);

Re: Reliable SEO company recommendations?

2004-09-23 Thread Bryan Stevenson
To be honest I'm sure if StepForth (or any other SEO company for that matter) offers such a gaurantee.I think this may be due to the fact that they generally advise you on what changes to make on your site, but don't have control to force their implementation.So if they don't have full control

Re: SQL: Passing vars to a LIKE statement

2004-09-23 Thread Ali Awan
Eric, Can you try just doing this first? AND demographicvaluedesc LIKE @month+'%' And do you still get the error? Then also try this, don't know if it will solve the problem, but it looks like SQL is actually trying to do an arithmetic add on the values, rather than concatenating the strings in

Reply-To Header observance

2004-09-23 Thread Scott Brady
We have a fairly large web application used by multiple corporations/organizations.The application is a web-based mentoring application (where mentees find mentors and communicate with each other). The application is designed to send out e-mails (using CF-MAIL) to one group (say the mentor) so

Re: Doug White - clickdoug.com

2004-09-23 Thread Jeff Langevin
If you went this route, Paypal can then place a negative mark on your credit report.They can also send it to collections which will further negatively impact your credit.So if you're looking to buy a home or car or get life insurance (worse credit = worse rates) or approval for any other line

RE: SQL: Passing vars to a LIKE statement

2004-09-23 Thread Eric Creese
Ok that worked Horray! and thank you so much for stating the obvious that I was too blind to see. Ok with that I have another problem kind of the same thing, but I ma now building a date sting to filter but I keep getting an error: Syntax error converting datetime from character string.

RE: JAVASCRIPT and textarea

2004-09-23 Thread Ryan Duckworth
Yes.This is possible. 1.Create 2 hidden DIVs on the page. 2.Use code similar to this to copy to temp area, fix, then copy back to original area. fullCleanWorkSpace.innerHTML ='div' + aeObject.DOM.body.innerHTML + '/div'; removeAllTags(fullCleanWorkSpace,fullCleanWorkSpace2);

RE: Backing Up off of server (WAS RE: Doug White - clickdoug.com)

2004-09-23 Thread Andy Ousterhout
Tried that, copied data, but not indices, stored proc's, relationships, etc...How do I do that? Andy -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Thursday, September 23, 2004 10:49 AM To: CF-Talk Subject: Re: Backing Up off of server (WAS RE: Doug White -

Re: SOT - Crystal Reports Training

2004-09-23 Thread Adam Churvis
We teach one, though it's not listed on ColdFusionTraining.com.We had used CR since V4 days (it's now at V10), and we needed to support some pathologists that wanted to learn the product, so it was relatively straightforward for us to develop a curriculum and teach a very nice two-day course.

Re: Backing Up off of server (WAS RE: Doug White - clickdoug.com)

2004-09-23 Thread Bryan Stevenson
Ahhh...you didn't pick the right optiondon't just pick the copy all tables option (or whatever it's called...it's the default selection)...there's another option on the same screen that says something along the lines of Copy objects and data After picking that you can pick which objects

RE: Doug White - clickdoug.com

2004-09-23 Thread Cary Gordon
All you can do is take him to small claims court.You will win, but then it's on you to find him and collect. Unless this service was phenomenally expensive and you can find a few thousand other users, a class action suit is not going to happen. Caveat: I have been through all manner of legal

RE: CFPOP Issues

2004-09-23 Thread Paul Vernon
If you're running on Windows, you could try CFX_POP3. If you want to try before you buy, then contact me offlist! Paul [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: print output

2004-09-23 Thread Jim Louis
Make sure you have access to using cfexecute for their product to work. How about this http://gilgamesh-solutions.com/products.cfm#p1 - Original Message - From: Brant Winter [EMAIL PROTECTED] Date: Wed, 22 Sep 2004 15:00:32 +1000 Subject: RE: print output To: CF-Talk [EMAIL PROTECTED]

Re: SQL: Passing vars to a LIKE statement

2004-09-23 Thread Ali Awan
Eric, Glad that worked :) I have a suggestion as to your next problem. First create a new variable Then set the variable to the string you were converting. Then do a convert on that variable. @string_to_convert varchar(10) SELECT @string_to_convert = @AdvMonth + '/01/'+ @rptyear SELECT

Re: Converting query to comma separated list

2004-09-23 Thread Joe Rinehart
Thanks Scott, This pops up every 24-36 hours until I run a script to empty some logs, as CF-Dynamics still hasn't completed a help desk ticket I left with them a while back... I'll be moving to a completely new service over the next few weeks, and this should all go away. Cheers, Joe -

RE: Backing Up off of server

2004-09-23 Thread Andy Ousterhout
I am getting error on NT User cfd/Kruyon.Not sure why.Don't know who this user is or why Export is looking for this name.Any suggestions would be appreciated -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Thursday, September 23, 2004 12:21 PM To: CF-Talk Subject:

RE: Converting query to comma separated list

2004-09-23 Thread SStewart
No problem Joe,I saw that you're CFC will do something that I need, and when the page choked But I downloaded it from CFZone, I'll let ya know how it works out. sas Scott A. Stewart, Web Application Developer Engineering Consulting Services, Ltd. (ECS) 14026 Thunderbolt Place, Suite 100

Data returned from a cfc function

2004-09-23 Thread Don
Here's a simple cfc function: !--- List users method --- CFFUNCTION NAME=List RETURNTYPE=query HINT=Get complete user list !--- Get users --- CFQUERY NAME=users DATASOURCE=exampleapps SELECT EmployeeID AS UserID, FirstName, LastName FROM tblEmployees ORDER BY LastName, FirstName /CFQUERY

RE: Quick and Easy way to submit/enter all form fields

2004-09-23 Thread Ewok
cfinsert ? _ From: Claremont, Timothy [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 22, 2004 3:55 PM To: CF-Talk Subject: Quick and Easy way to submit/enter all form fields I am looking for an easy way of submitting something like 100 form fields into the corresponding fields in a

Re: Backing Up off of server

2004-09-23 Thread Bryan Stevenson
Hmmm...best guess is that there could be some sort of restriction on the use of DTS or perhaps there is a table or something else in the remote DB that is put there and only accessible by the ISP. Basically you're at the point where you should contact your ISPs tech support and pass along that

Re: Quick and Easy way to submit/enter all form fields

2004-09-23 Thread Bryan Stevenson
and of coures when using CFINSERT you had better make dang sure EVERYTHING matches and ALL data is verified before trying to insert or it's gonna be a major PITA for ya ;-) Personally I'd resort to the mile long approach...far easier to debug and you can use CFQUERYPARAM (which I highly suggest

RE: Backing Up off of server

2004-09-23 Thread Andy Ousterhout
Thanks.This will help keep what little hair I have left on my head and out of my hands. Andy -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Thursday, September 23, 2004 1:14 PM To: CF-Talk Subject: Re: Backing Up off of server Hmmm...best guess is that there

  1   2   >