Re: hosting

2002-04-08 Thread Simon Whittaker
What about www.biznet-hosting.com - 2nd runner up in cfdj awards - 30 days free and well worth a go HTH Simon - Original Message - From: Clint Tredway [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, April 08, 2002 5:26 AM Subject: RE: hosting I know, I was just stating

parsing CFML

2002-04-08 Thread James Sleeman
Hi all, this is a bit of a strange request I guess. I want to parse CFML files like they were XML files, so that I can access the structure of the (well formed, no overlapping with html etc) cfml. For example, so that I can do something like CF_PARSECF FILE=mycf.cfm

Re: hosting

2002-04-08 Thread Cold Fusion
Well after viewing some of what the other hosting companies offer and for the price as well. I still find that ATSwebnet has performed better, offers more, and well honestly at a better price. Compare the features. I have been running 2 sites there and soon to be doing a 3rd. There uptime and

RE: restart CF on web/http

2002-04-08 Thread Craig Dudley
In NT/2K You can stop/start almost anything that's installed to run as a service with the NET STOP and NET START commands, use a batch file and execute it with cfexecute. Eg. Stop.bat NET STOP service name Start.bat NET START service name I don't know the name of the cf service off hand,

RE: restart CF on web/http

2002-04-08 Thread Carlisle, Eric
Probably want to cfexecute a single batch file with all the service restart commands. When you net stop the ColdFusion application server you can't use ColdFusion to start it again. Also bear in mind that services have dependancies on other services. Sometimes you have to stop start in a

Re: Web Hosting

2002-04-08 Thread phumes1
Hi, I found a web hosting company http://www.parcom.net/ which in its standard list of features includes ColdFusion Express Support. Whats the difference from this and just CF support? __ This list and all House of Fusion

SQL server and regular expressions

2002-04-08 Thread Tony_Petruzzi
Off the wall question here. does anyone know if sql server supports regular expressions? I have some text that gets entered into a database that i would like to parse inside a stored procedure instead of doing it in CF. please give some examples if you can. Anthony Petruzzi Webmaster

Displaying an expandable directory tree

2002-04-08 Thread Carlisle, Eric
Can anyone suggest custom tags for displaying a filesystem in an expanable/collapsable tree display (similar to windows explorer). I would use CFTREE, but I'm trying to stay away from applets for this project. Thanks :) EC .

RE: restart CF on web/http

2002-04-08 Thread Craig Dudley
Yes Eric, I think it does have a restart option in 2K. So the command would be --- Net restart Cold Fusion Application Server --- -Original Message- From: Carlisle, Eric [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002 1:27 PM To: CF-Talk Subject: RE: restart CF on web/http

RE: CF Will Not Start

2002-04-08 Thread Matthew R. Small
I know it's too late but for future reference... There's a known bug in CF4.5 that deals with the CFAS crashing on startup if it has a problem finding the JVM. It's in the knowledge base, just look for it. - Matt Small -Original Message- From: Gordon Burns [mailto:[EMAIL PROTECTED]]

Calendar where events span more than one day...

2002-04-08 Thread JamesEdmunds
I am working on a calendar implentation for a client who wants to be able to show events that span more than one day, but show them on a traditional month-grid calendar. I have had good luck in another project adapting Ben Forta's CF_Calendar from the Advanced CF Development book, including

Date Range

2002-04-08 Thread Paul Ihrig
Ok 3 Questions... if you have some time. 1.] below i have a range in a select that shows Next month, Every month for a year. Bt i cant seem to show this month. i have tried -1 in the DateAdd, but that just makes the range count back wards. have also tried removing the date add. 2.] Also If i

RE: hosting

2002-04-08 Thread Yager, Brian T Contractor/NCCIM
www.advances.com Brian Yager President - North AL Cold Fusion Users Group Sr. Systems Analyst NCCIM/CIC [EMAIL PROTECTED] (256) 842-8342 -Original Message- From: Heidi Belal [mailto:[EMAIL PROTECTED]] Sent: Sunday, April 07, 2002 11:31 AM To: CF-Talk Subject: hosting didn't get an

RE: Code Commenting

2002-04-08 Thread Mark A. Kruger - CFG
I like fusedoc as well - even when I'm using an alternate framework. It makes it easy to get a handle on a particular code block. However, you really must be doing some form of code separation to make it work effectively. Mark -Original Message- From: Douglas Brown [mailto:[EMAIL

RE: hosting

2002-04-08 Thread Matthew R. Small
Yes, I use Advances.com for about 6 websites. These guys have the best tech support I've ever seen. You can get them via ICQ and they'll actually answer back. Their prices are reasonable as well. - Matt Small -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL

Re: ADVANCED - Expression results - Please Help !!!

2002-04-08 Thread Ian Vaughan
Hi Kevan Folks It has only stopped working since I upgraded the CF Server from 4.0 to 4.5 ? Would this have anything to do with it ? This is the code I am using in my action page. any help would be most appreciated - cftransaction cfquery name=LOOKUP datasource=intranetv8

Re: Code Commenting

2002-04-08 Thread Alex
A howto on commenting? Try Xtreme Commenting or Commenting Patterns. On Sun, 7 Apr 2002, Paul Giesenhagen wrote: Does anyone have a good resource(s) for examples of good code commenting? I am trying to find some various ways/practices people are commenting code. Thanks Paul

RE: Date Range

2002-04-08 Thread Carlisle, Eric
1.] Try this... cfparam name=startDate default=#now()# select name=KidDate cfloop from=0 to=12 index=ii cfset tempDate = dateAdd('M',ii,startDate) cfoutput option value=#tempdate##dateFormat(tempDate,' ')#/option

Re: Code Commenting

2002-04-08 Thread Paul Giesenhagen
Do you have any url's to look at? Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder A howto on commenting? Try Xtreme Commenting or Commenting Patterns. On Sun, 7 Apr 2002, Paul Giesenhagen wrote: Does anyone have a good resource(s) for

RE: ADVANCED - Expression results - Please Help !!!

2002-04-08 Thread Kevan . Windle
I would try putting specifiers in front of all your variables. -Original Message- From: Ian Vaughan [mailto:[EMAIL PROTECTED]] Sent: 08 April 2002 14:43 To: CF-Talk Subject: Re: ADVANCED - Expression results - Please Help !!! Hi Kevan Folks It has only stopped working since I

RE: Query a Query or SQL Syntax (Not IN)

2002-04-08 Thread Paul Sizemore
I was out of the office on Friday, but this worked like a charm. Thanks for all your help. On the name thing, I'm just following SOP here. If you can make someone else have a potty mouth, do it (it's great fun in meetings). At least I don't need a header table or variable (maybe I can work that

RE: ADVANCED - Expression results - Please Help !!!

2002-04-08 Thread Matthew R. Small
Are you getting error messages? - Matt Small -Original Message- From: Ian Vaughan [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002 9:43 AM To: CF-Talk Subject: Re: ADVANCED - Expression results - Please Help !!! Hi Kevan Folks It has only stopped working since I upgraded the

Re: ADVANCED - Expression results - Please Help !!!

2002-04-08 Thread Ian Vaughan
Please ingnore my ignorance but what do you mean by 'specifiers' ?? Also could upgrading the server have caused this ? - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, April 08, 2002 3:05 PM Subject: RE: ADVANCED - Expression results - Please

CFFTP Problem

2002-04-08 Thread Mark Leder
The following code is able to open and close the connection to my remote server fine (permissions are set properly). However, it skips over (or doesn't find) the file on the remote server in the GETFILE action. What am I doing wrong? Thanks for your help. Mark

Re: CF Web Hosting

2002-04-08 Thread phumes1
Can someone tell me what it means when the web hosting company offers ColdFusion Express? Whats the difference between that and just ColdFusion Server?? +---+ Philip Humeniuk [EMAIL PROTECTED] [EMAIL

Re: CF Web Hosting

2002-04-08 Thread James
It means the web hosting company is a joke. CF Express has limited features of Server. Don't bother with that web host. At 10:29 AM 4/8/2002 -0400, you wrote: Can someone tell me what it means when the web hosting company offers ColdFusion Express? Whats the difference between that and

Re: ADVANCED - Expression results - Please Help !!!

2002-04-08 Thread Ian Vaughan
Yes this the error I am getting when trying to add a new record to my Oracle 8 database. -- Error Occurred While Processing Request Error Diagnostic Information Expression result cannot be converted to a string Expressions used inside tags like CFOUTPUT, CFQUERY, CFMAIL, etc. must

Re: CF Web Hosting

2002-04-08 Thread Tomo Smith
sh*t loads - Original Message - From: phumes1 [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, April 08, 2002 3:29 PM Subject: Re: CF Web Hosting Can someone tell me what it means when the web hosting company offers ColdFusion Express? Whats the difference between that

Re: hosting

2002-04-08 Thread Sam Farmer
They look really good. Out of interest which version of ColdFusion do they run? Thanks, Sam - Original Message - From: Matthew R. Small [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, April 08, 2002 9:48 AM Subject: RE: hosting Yes, I use Advances.com for about 6

RE: restart CF on web/http

2002-04-08 Thread Christine Lawson
Hi, also take a look at this KB for the full list of services and batch file: http://www.macromedia.com/v1/handlers/index.cfm?ID=21976Method=Full. Christine -Original Message- From: Craig Dudley [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002 8:40 AM To: CF-Talk Subject: RE:

Re: CF Web Hosting

2002-04-08 Thread phumes1
Thanks for the info. Who would you suggest? What about www.media3.net? At 12:34 AM 4/9/2002 +1000, you wrote: It means the web hosting company is a joke. CF Express has limited features of Server. Don't bother with that web host. At 10:29 AM 4/8/2002 -0400, you wrote: Can someone

RE: ADVANCED - Expression results - Please Help !!!

2002-04-08 Thread Matthew R. Small
URL is a structure and scope identifier. You can't use it as a simple variable. - Matt Small -Original Message- From: Ian Vaughan [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002 10:37 AM To: CF-Talk Subject: Re: ADVANCED - Expression results - Please Help !!! Yes this the

RE: hosting

2002-04-08 Thread Matthew R. Small
It's 5.0. -Original Message- From: Sam Farmer [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002 10:16 AM To: CF-Talk Subject: Re: hosting They look really good. Out of interest which version of ColdFusion do they run? Thanks, Sam - Original Message - From: Matthew

RE: ADVANCED - Expression results - Please Help !!!

2002-04-08 Thread Dave Watts
Yes this the error I am getting when trying to add a new record to my Oracle 8 database. -- Error Occurred While Processing Request Error Diagnostic Information Expression result cannot be converted to a string Expressions used inside tags like CFOUTPUT, CFQUERY, CFMAIL,

Re: CF Web Hosting

2002-04-08 Thread Hatton Humphrey
To be more precise, CF Express is a limited older version of ColdFusion server. There are several features that are not supported in Express. It was the 4.x answer to a developer's version of CF. Hatton James wrote: It means the web hosting company is a joke. CF Express has limited

Re: CF Web Hosting

2002-04-08 Thread James
phumes, scroll back up the msg list and check out the other posts made under this topic, there is quite a few references made to other hosts that make the grade.and others that don't :-) At 10:48 AM 4/8/2002 -0400, you wrote: Thanks for the info. Who would you suggest? What about

RE: hosting

2002-04-08 Thread Yager, Brian T Contractor/NCCIM
They are running CF 5 right now. They have the best tech support and a great all around guy (Quinn). I doubt I would ever take my business anywhere. They have always done whatever it took to make me happy. Brian Yager President - North AL Cold Fusion Users Group Sr. Systems Analyst NCCIM/CIC

OT: Project Planner

2002-04-08 Thread Yves Arsenault
Would anyone have any suggestions on project planning software. I have been exposed to Mind Mapper a little bit, I was wondering if there was any others out there. Thanks, sorry for the OT... Yves Arsenault Carrefour Infotech 5,promenade Acadian Charlottetown, IPE C1C 1M2 [EMAIL

CF Express vs ColdFusion

2002-04-08 Thread Jeffry Houser
ColdFusion Express is a limited version based off of 4.5. It is (or was) given out free by Macromedia (Or Allaire). It is not fully functional. At 08:44 AM 4/8/2002 -0400, you wrote: Hi, I found a web hosting company http://www.parcom.net/ which in its standard list of features includes

Administration problem

2002-04-08 Thread Mario Martinez R.
Hi All: Please check the site underneath http://skillport.nywired.org/test/cfusionss/end/index.cfm?userID=1552 coldfusion server is pushing up a line :*** in each template I request. Does anyone has had this problem before???. I have reviewed the settings in the administration page

RE: Administration problem

2002-04-08 Thread Matthew R. Small
I get a session error when I view this page. -Original Message- From: Mario Martinez R. [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002 11:03 AM To: CF-Talk Subject: Administration problem Hi All: Please check the site underneath

RE: ADVANCED - Expression results - Please Help !!!

2002-04-08 Thread Kevan . Windle
Please ingnore my ignorance but what do you mean by 'specifiers' ?? Prefix your variables with their scope so that: url variables are: #url.varname# form variables are: #form.varname# local variables are: #variables.varname# query variables are: #queryname.varname# To Cf #url# is the structure

Odd can't log in behavior

2002-04-08 Thread Janine Jakim
I have a login page- first it checks the user/password. If there is no match it sends the user back to the login page with a message... If there is a match it checks what group the user is in and what quarter they should have access to. (Current quarter or past quarters). It is only on occassion

RE: Query a Query or SQL Syntax (Not IN)

2002-04-08 Thread Christopher Olive
no problem, man. WHERE head IN (ass)? :) christopher olive cto, vp of web development, vp it security atnet solutions, inc. 410.931.4092 http://www.atnetsolutions.com -Original Message- From: Paul Sizemore [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002 10:14 AM To: CF-Talk

Re: CFFTP Problem

2002-04-08 Thread Mario Martinez R.
1_Is that a valid file name??? CFSET remotefile1 = foo.mdb 2_Is that TRANSFERMODE=AUTO or TRANSFERMODE=AUTODETECT ?? I'm posting the completely help from Coldfusion studio down here to see if it can help.See and compare againsts the tested samples. Regards Mario. CFFTP CFFTP allows users to

Creating Virtual Directories using CF

2002-04-08 Thread Mike Connolly
Fellow CFers, Has anyone ever tried to connect to IIS using CFObject in order to create a low-pooled virtual directory? If so, how? Regards Mike Connolly __ Signup for the Fusion Authority news alert and keep up with the

Finding a whole number

2002-04-08 Thread Tristram Charnley
Does anyone know of a CF function to detect whether a number is a whole number or a fraction? Tris __ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community.

RE: CF Web Hosting

2002-04-08 Thread Dowdell, Jason G
I have clients running on advances.net, media3.net and cfdynamics.com. My experience with advances.net is that they do not have enough experience hosting ColdFusion applications to keep the servers running at optimum speeds at all times. They are good people but I wouldn't recommend them. I

Multiple CFMail Problem

2002-04-08 Thread Willy Ray
Hey All, Here's my situation. I have an application that generates 3 total emails. User clicks submit, it generates one email, then they're taken to another page on which they can submit additional info. If they do this, two more emails are created, one to the person who is gathering the

RE: Finding a whole number

2002-04-08 Thread David Schmidt
Several ways... cfif find(.,yournumber) --- looks for a ., which is a dead givaway cfif yournumber IS int(yournumber) --- detects if it is an integer value -Original Message- From: Tristram Charnley [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002 9:02 AM To: CF-Talk

RE: CF Web Hosting

2002-04-08 Thread Eric J Hoffman
I second CFDynamics in a heartbeat. Been with others including Media3...CFD blows them away. Been in process of moving all clients there...check out their developer accounts and specials. Regards, Eric J. Hoffman Director of Internet Development DataStream Connexion, LLC (formerly Small Dog

RE: Creating Virtual Directories using CF

2002-04-08 Thread Dave Watts
Has anyone ever tried to connect to IIS using CFObject in order to create a low-pooled virtual directory? When you mention low-pooled, that implies that you're really creating a virtual application rather than a regular virtual directory. Typically, when you create a virtual directory, you

RE: Calendar where events span more than one day...

2002-04-08 Thread Trusz, Andrew
Don't know about Forta's version but I do know that Jeffry Houser's will do multiple days. That would be Chapter 15 in Instant Cold Fusion 5, Osborne. andy -Original Message- From: JamesEdmunds [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002 9:29 AM To: CF-Talk Subject: Calendar

OT - JS Select Menu...

2002-04-08 Thread Houk, Gary
I have two select menus, one is for pobox and one for shipping method. I want to automatically select the shipping method usps (value of that option is 11.95) when a user selects pobox (value of 1). I could get it to update a regular text box, but not a select menu. Any help/code would be great.

RE: OT - JS Select Menu...

2002-04-08 Thread Christine Lawson
Hi Gary, There are two tags on the Developer Exchange that accomplish this, CF_TwoSelectsRelated tag by Nate Weiss: http://devex.macromedia.com/developer/gallery/info.cfm?ID=CA347197-2830-11D4-AA9700508B94F380method=Full and CF_JSelect by Josh Black:

RE: OT - JS Select Menu...

2002-04-08 Thread Houk, Gary
Let me explain further...I'm not trying to auto-populate the selects. I have 2 static select menus on my page. If a user selects Yes (value of 1) on the first select menu, I need the second select menu to then automatically switch to USPS (value of 11.95). They are not related any other way than

RE: SQL server and regular expressions

2002-04-08 Thread Dave Watts
does anyone know if sql server supports regular expressions? I have some text that gets entered into a database that i would like to parse inside a stored procedure instead of doing it in CF. please give some examples if you can. You can use string patterns within a LIKE or PATINDEX

RE: CF Web Hosting

2002-04-08 Thread phumes1
I just tried http://www.cfdynamics.com and http://cfdynamics.com I can't find the server. This is not a good start. :-) At 12:04 PM 4/8/2002 -0400, you wrote: I have clients running on advances.net, media3.net and cfdynamics.com. My experience with advances.net is that they do not have enough

listing all form variables

2002-04-08 Thread nerd
Can CF output a list of all the form variables passed to a page? I vaguely remember this being possible but i don't remember how to do it. jim __ This list and all House of Fusion resources hosted by CFHosting.com. The place

RE: Finding a whole number

2002-04-08 Thread Smith, Matthew P -CONT(DYN)
cfset myNumber = 3.4 cfif mynumber eq int(myNumber) It is a whole number! cfelse Those sneaky fractions! /cfif Matthew P. Smith Web Developer, Object Oriented -Original Message- From: Tristram Charnley [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002 11:02 AM To: CF-Talk

RE: listing all form variables

2002-04-08 Thread Lon Lentz
#form.fieldnames# -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002 12:43 PM To: CF-Talk Subject: listing all form variables Can CF output a list of all the form variables passed to a page? I vaguely remember this being

Re: listing all form variables

2002-04-08 Thread Critz
oi nerd!! form is a structure..just loop the collection. -- Critz Certified Adv. ColdFusion Developer Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion - Monday, April 8, 2002, 12:43:15 PM, you wrote: nnc Can CF output a list of all the form

RE: listing all form variables

2002-04-08 Thread Houk, Gary
#form.fieldnames# should get it... - Gary -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002 12:43 PM To: CF-Talk Subject: listing all form variables Can CF output a list of all the form variables passed to a page? I vaguely remember

RE: OT - JS Select Menu...

2002-04-08 Thread Tony_Petruzzi
go to www.cfug-sfl.org. look at the article entitle a little javascript never hurts. i explain how to this in that article. Anthony Petruzzi Webmaster 954-321-4703 http://www.sheriff.org -Original Message- From: Houk, Gary [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002 12:40

Re: listing all form variables

2002-04-08 Thread Brian Scandale
Sure Jim, try this !--- Form variables --- H4Form Variables/H4 CFIF NOT IsDefined(Form.FieldNames) PThere are no form variables/P CFELSE CFLOOP LIST=#Form.FieldNames# INDEX=Key Form.#Key#: #Evaluate(Form. Key)#BR /CFLOOP /CFIF At 12:43 PM 4/8/02

Deleting attachement after upload (cfmail)

2002-04-08 Thread Douglas Brown
I am attaching files for cfmail and uploading the files to the server for the attachment process. What I want to do is delete the uploaded file after the attachment sends. Is this possible? I have tried using cffile action=delete file=C:\mail_uploads\#file.serverfile# after the /cfmail tag, but

RE: CF Web Hosting

2002-04-08 Thread Lee Fuller
They're there. Although we're a competitor.. I know they're around. grin Lee Fuller Chief Technical Officer PrimeDNA / AAA Web Hosting Corporations | -Original Message- | From: phumes1 [mailto:[EMAIL PROTECTED]] | Sent: Monday, April 08, 2002 9:47 AM | To: CF-Talk | Subject:

RE: listing all form variables

2002-04-08 Thread Yves Arsenault
cfoutput#FORM.FieldName#/cfoutput -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: April 8, 2002 1:43 PM To: CF-Talk Subject: listing all form variables Can CF output a list of all the form variables passed to a page? I vaguely remember this being possible

RE: listing all form variables

2002-04-08 Thread Shawn McKee
If you want the field names they are also in form.fieldnames. Shawn McKee -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002 11:43 AM To: CF-Talk Subject: listing all form variables Can CF output a list of all the form variables passed

RE: CF Web Hosting

2002-04-08 Thread Ken Wilson
http://www.cfdynamics.com/ loads right away for me. Ken -Original Message- From: phumes1 [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002 12:47 PM To: CF-Talk Subject: RE: CF Web Hosting I just tried http://www.cfdynamics.com and http://cfdynamics.com I can't find the

RE: Deleting attachement after upload (cfmail)

2002-04-08 Thread Clint Tredway
I believe that you will have to wait until the mail is actually sent before you delete the file. I would have a routine that ran a few minutes later that deleted the files. Thats my 2 cents... Clint -Original Message- From: Douglas Brown [mailto:[EMAIL PROTECTED]] Sent: Monday, April

Re: listing all form variables

2002-04-08 Thread ksuh
CF5: cfdump var=#form# not CF5: use form.fieldnames. - Original Message - From: [EMAIL PROTECTED] Date: Monday, April 8, 2002 10:43 am Subject: listing all form variables Can CF output a list of all the form variables passed to a page? I vaguely remember this being possible but i

Re: Stop/restarting CF from a web page

2002-04-08 Thread phumes1
Hi, How can I stop and start the CF server from within a webpage? +---+ Philip Humeniuk [EMAIL PROTECTED] [EMAIL PROTECTED] ++

CFX_JSocket (cfdev.com)

2002-04-08 Thread Critz
oi CF-Talk,!! I see in the tag reference. there is the option KeepAlive my question is, can I use this to login to an ftp server and issue some commands and how do I keep that connection alive and linked -- Critz Certified Adv. ColdFusion Developer Crit[s2k] - CF_ChannelOP

(OT) Web server co-location

2002-04-08 Thread Paul Campano
I'm looking to co-locate a server that will be running ColdFusion, among other things. Does anyone have recommendations where the best places are to colo? Thanks for your help. Paul Campano FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

RE: Deleting attachement after upload (cfmail)

2002-04-08 Thread Tony_Petruzzi
what i would do is have two pages.first one has the cfmail tag sending the attachment. then after it is done, it do a cflocation to a second page that deletes the files. Anthony Petruzzi Webmaster 954-321-4703 http://www.sheriff.org -Original Message- From: Douglas Brown

RE: CF Web Hosting

2002-04-08 Thread phumes1
Yea...I just tried it and got on. Server must have went down. :-) At 12:58 PM 4/8/2002 -0400, you wrote: http://www.cfdynamics.com/ loads right away for me. Ken -Original Message- From: phumes1 [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002 12:47 PM To: CF-Talk Subject:

Re: CF Web Hosting

2002-04-08 Thread Neil H.
I am biased but you might want to take a look at www.HostMySite.com If you have any questions you can email me directly at [EMAIL PROTECTED] Thanks, Neil - Original Message - From: Ken Wilson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, April 08, 2002 12:58 PM

RE: (OT) Web server co-location

2002-04-08 Thread Jim Curran
I love Rackspace... There service is unparalleled. I think they colo, but not 100% sure. I have 2 dedicated boxes there and have had no issues. - j -Original Message- From: Paul Campano [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002 1:24 PM To: CF-Talk Subject: (OT) Web

Re: (OT) Web server co-location

2002-04-08 Thread Bryan Stevenson
try www.wedohosting.com Great service...Canadian ratesneed I say more ;-) Bryan Stevenson VP Director of E-Commerce Development Electric Edge Systems Group Inc. p. 250.920.8830 e. [EMAIL PROTECTED] - Macromedia Associate Partner

Re: Stop/restarting CF from a web page

2002-04-08 Thread Douglas Brown
Here is a custom CFX tag for this, but i believe it is for NT http://devex.macromedia.com/developer/gallery/info.cfm?ID=A155CF05-7445-11D4-AAA 400508B94F380method=Full Success is a journey, not a destination!! Doug Brown - Original Message - From: phumes1 [EMAIL PROTECTED] To:

RE: CF Web Hosting

2002-04-08 Thread Tony_Petruzzi
hostmysite.com Best thing since slices bread. we have about 40 websites with them and 3 co-located servers. one of the owners is a CF master and all of the staff is quick and friendly. they use liveperson so you can get questions answered quickly. have THE MOST COMPLETE administrative backend

RE: Administration problem

2002-04-08 Thread Mario Martinez R.
I'm sorry this page can not be accessed directly. Please try this new URL http://skillport.nywired.org/test/cfusionss/end/Test.cfm Thanks for your concern Mario --- Matthew R. Small [EMAIL PROTECTED] escribió: I get a session error when I view this page. -Original Message- From:

RE: (OT) Web server co-location

2002-04-08 Thread Neil Giarratana
I second the rackspace opinion...they are fantastic. However, I think they only provide dedicated hosting...not colo. Regards, Neil -Original Message- From: Jim Curran [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002 1:13 PM To: CF-Talk Subject: RE: (OT) Web server co-location

RE: (OT) Web server co-location

2002-04-08 Thread Eric Mathews
Totally agree, can't say enough good things about these guys. Prices are good, service is more than you could ask for. You can run almost any sort of software you'd like including your own DNS (read: multiple domain hosting on one box). If you can foot the bill it's the only way to fly.

RE: OT - JS Select Menu...

2002-04-08 Thread Matthew R. Small
Hi Gary, select name=pobox onchange=if (pobox.selectedIndex==(index of 1) shipbox.selectedIndex = (index of 11.95); Matt Small -Original Message- From: Houk, Gary [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002 12:28 PM To: CF-Talk Subject: OT - JS Select Menu... I

RE: Administration problem

2002-04-08 Thread Neil Giarratana
ok...I can confirm that you have an annoying line made out of asterisks (though I don't see the : at the beginning. On the assumption that it always falls after the template, do a search on your server for onrequestend.cfm. It could be anywhere from the current page directory all the way back

RE: Administration problem

2002-04-08 Thread Dave Watts
coldfusion server is pushing up a line :*** in each template I request. Does anyone has had this problem before???. Look for a file named OnRequestEnd.cfm in the same directory as your Application.cfm file. If you have one, see what's in it. Dave Watts, CTO, Fig Leaf Software

RE: (OT) Web server co-location

2002-04-08 Thread Jim Curran
Actually, I have multiple domains on one box AND don't run DNS... I use their DNS manager that gives me complete control over all my zone files with less than one hour refresh rate. Fantastic And I don't have to maintain the DNS boxes. ;) -j -Original Message- From: Eric Mathews

Where Can I find this tag which reads the links in a file?

2002-04-08 Thread Chakka, Sudheer
Hi, Once I found a tag which reads all the hyperlinks in a given file on Allaires Development site. I am not able to locate it know. Can any send me the link where I can find it ?? Thanks, Sudheer Chakka. __ Signup

RE: Administration problem

2002-04-08 Thread Matthew R. Small
Have you checked to see if there is anything in your application.cfm file... maybe like a comment line that you forgot to comment? - Matt Small -Original Message- From: Mario Martinez R. [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002 1:18 PM To: CF-Talk Subject: RE:

RE: Administration problem

2002-04-08 Thread Matthew R. Small
Oh yeah, good point... not application.cfm, but onrequestend.cfm - Matt Small -Original Message- From: Neil Giarratana [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002 1:24 PM To: CF-Talk Subject: RE: Administration problem ok...I can confirm that you have an annoying line

Re: listing all form variables

2002-04-08 Thread nerd
ahh... #form.fieldnames# ...I knew there was a way to do it. Thanks everybody, jim __ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. FAQ:

RE: Multiple CFMail Problem

2002-04-08 Thread Trey Rouse
We experienced this problem with all versions of 4.5. Allaire never did 'fix' the error. They claimed it was fixed in 4.5.1, however it still existed, just wasn't as persistent as earlier versions. Our own diagnosis determined that the cause of the error was the cfmail.dll(I forget the actual

RE: OT - JS Select Menu...

2002-04-08 Thread Houk, Gary
Hi Matt, I just tried this, but it's still asking for ) ...any thoughts? select name=pobox onchange=if (pobox.selectedIndex==(index of 1)) shippingmethod.selectedIndex = (index of 11.95); -Original Message- From: Matthew R. Small [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002

RE: (OT) Web server co-location

2002-04-08 Thread Eric Mathews
But I like the pain and agony of running my own DNS! Gives me something (else) to complain about... --E -Original Message- From: Jim Curran [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002 1:26 PM To: CF-Talk Subject: RE: (OT) Web server co-location Actually, I have multiple

RE: Multiple CFMail Problem

2002-04-08 Thread Kevin Langevin
ODS' iMS Mail server has a bundled CFX_iMSMail tag which is a vast improvement over CFMail. I haven't encountered the types of problems you're describing at all, and I've been using iMS for about two years now. Howie Hamlin (from ODS) can probably speak more on this, but check out iMS at

RE: Multiple CFMail Problem

2002-04-08 Thread cftalk
Hi, Thanks for shedding some light on this subject. Just for the record it is not fixed in CF5 as we experience this same behavior you described and have solved it somewhat by adding in a delay. Thanks Chuck Rodgers At 12:30 PM 4/8/02 -0500, you wrote: We experienced this problem with all

RE: OT - JS Select Menu...

2002-04-08 Thread Matthew R. Small
Sorry... select name=pobox onchange=if (pobox.selectedIndex== XXX ) shippingmethod.selectedIndex = YYY; where I have XXX you need to replace it with the numbered index that the value of 1 is in your pobox select box. Where I have YYY you need to replace it with the numbered index that the

RE: Stop/restarting CF from a web page

2002-04-08 Thread Tony_Petruzzi
use cfexecute tag. Stopping cfexecute name=c:\winnt\system32\net.exe arguments='stop Cold Fusion Application Server'/cfexecute cfexecute name=c:\winnt\system32\net.exe arguments='stop Cold Fusion Executive'/cfexecute cfexecute name=c:\winnt\system32\net.exe

  1   2   3   >