Verity file indexing

2003-03-11 Thread Kay Smoljak
If you specify make this document xhtml compliant, it does. Sorry, I should have said, Dreamweaver puts it in my default when creating an xhtml file. It's the first thing I normally take out because it puts IE6 into quirks mode, but for this site we wanted to use a DHTML menu that needed quirks

Verity file indexing

2003-03-11 Thread Kay Smoljak
Sorry about the previous message - I'm using the archives and I forgot to quote the previous message. The .cfm files had an xml prolog - ?xml version=1.0 encoding=iso-8859-1?. Yes, that prolog is Part of what makes an xml document valid. I dont think DWMX puts that in any file, unless you

RE: Macromedia DONT help me now. so where do i turn now?

2003-03-11 Thread Michael Kear
I'm starting to think that perhaps the problem might lie in the Windows. Does anyone know if there is a self-repair kind of thing in WinXPPRo? If I do a reinstall, will it safely install with all my tweaks and setting or will it take me all the way back to the initial installation again and I'll

Lockdown CFMX

2003-03-11 Thread Shahzad.Butt
Hi Does someone know how to lock down Coldfusion Server? Idea is that we are going to be on internet through https. Now we need to secure our server. We'd already locked down IIS etc, only bit left is to secure Coldfusion Server. What sort of vulnerabilities we can have through our CFMX server.

Re: Macromedia DONT help me now. so where do i turn now?

2003-03-11 Thread Matthew Walker
You could try the files and settings transfer wizard - it won't install your apps but it will keep your basic settings. You could then try installing IIS etc first - before running the wizard the second time. You need to leave the wizard running overnight to save your settings initially. Matthew

OT: Scripting Internet Explorer

2003-03-11 Thread Aidan Whitehall
I'm being cheeky and reposting this as it didn't receive any replies last time, but I find it hard to believe nobody has any ideas on automating IE. If not, I'll find an IE newsgroup. Thanks. = Does anyone know how to script IE to open a web page, save it locally

Re: Macromedia DONT help me now. so where do i turn now?

2003-03-11 Thread Jochem van Dieten
Michael Kear wrote: Regular readers to this list will be aware that I have been wrestling with installing CFMX since last Friday to no avail. I decided to see if Macromedia would back me up as a reseller and developer, and I called their support line. I got connected to their Manilla

RE: Macromedia DONT help me now. so where do i turn now?

2003-03-11 Thread Tim Laureska
In my experience, the only solid way to do it is to backup whatever data settings you can, make sure you have all the hardware drivers/application software disks you need, then reformat the drive and do a fresh resinstall of everything and restore your data. I'm not a big fan of trying to

RE: Macromedia DONT help me now. so where do i turn now?

2003-03-11 Thread Robertson-Ravo, Neil (RX)
I tend to reformat every 6-8 months on my home machine as I back everything up anyway -Original Message- From: Tim Laureska [mailto:[EMAIL PROTECTED] Sent: 11 March 2003 10:46 To: CF-Talk Subject: RE: Macromedia DONT help me now. so where do i turn now? In my experience, the only

RE: Scripting Internet Explorer

2003-03-11 Thread Tangorre, Michael
Im sure if someone could have helped you, they would have offered some solutions or insight. This might get you started... http://www.tucows.com/preview/193807.html -Original Message- From: Aidan Whitehall [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 4:54 AM To: CF-Talk

RE: Macromedia DONT help me now. so where do i turn now?

2003-03-11 Thread Kay Smoljak
Tim Laureska wrote: Quite honestly this is usually a good thing every couple years anyway... In addition this may be a good exercise in preparing for the possibility of a serious crash. Windows seems to self corrupt over time or get corrupted thru various software installs. Every couple of

Re: Lockdown CFMX

2003-03-11 Thread Jochem van Dieten
Shahzad.Butt wrote: Does someone know how to lock down Coldfusion Server? Idea is that we are going to be on internet through https. Now we need to secure our server. We'd already locked down IIS etc, only bit left is to secure Coldfusion Server. What sort of vulnerabilities we can have

Re: Where did my CFMX files go?

2003-03-11 Thread Critz
oi jonhall!! well CFMX just started acting funny yesterday... jrun would peg 100% compile pages were throwing errors, saying they were not legitimate. So I thought uninstall/reinstall. Ok this is weird. somebody sent me their 1 directory. I dropped it in, ran updater_2 and now the bloody

Re: Creating custom tag?

2003-03-11 Thread FlashGuy
Hi, I have a box that I created that appears multiple times in my template. The only thing that gets modified is the text and the width in pixels based on ths ize on my input box. Is it possible to create a custom tag where I can enter in only the text and width measurements? For examle:

RE: Macromedia DONT help me now. so where do i turn now?

2003-03-11 Thread Tim Laureska
Yea... ghost is great for that purpose -Original Message- From: Kay Smoljak [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 6:30 AM To: CF-Talk Subject: RE: Macromedia DONT help me now. so where do i turn now? Tim Laureska wrote: Quite honestly this is usually a good thing

Re: Creating custom tag?

2003-03-11 Thread Randell B Adkins
Sure. You can call the CustomTag such as CF_MyTag or using CFModule: CustomTag: CF_MyTag Text=Whatever you want to say bxheight=100 bxwidth=200 CFMODULE TEMPLATE=../CustomTags/MyTag.cfm TEXT=Whatever you want to say BXHEIGHT=100 BEWIDTH=200 Just remember now in your custom tag that the values

RE: Macromedia DONT help me now. so where do i turn now?

2003-03-11 Thread Jaye Morris - jayeZERO.com
If you have been fooling around with this since Friday, you are investing more time that you had initially planned. You might better use your time rebuilding the machine. Just using it for CF and putting the IDE on it should only take at max 3-4 hours. In that way you would know that your

Re: Creating custom tag?

2003-03-11 Thread FlashGuy
OK...so I don't have to do anything fancy. Just cut my code below into two files. Like so: CFMODULE TEMPLATE=../CustomTags/dialog_start.cfm TEXT=Whatever you want to say BXHEIGHT=100 BEWIDTH=200 input... input... input... CFMODULE TEMPLATE=../CustomTags/dialog_end.cfm ?? On Tue, 11 Mar 2003

Re: Creating custom tag?

2003-03-11 Thread Randell B Adkins
Yes just considering that the dialog_start would be the beginning part of your tabel then your inputs are within that table elements itself. Then you will need to close your tables thus I am assuming that is the reason for the dialog_end [EMAIL PROTECTED] 03/11/03 07:25AM OK...so I don't

Re: Creating custom tag?

2003-03-11 Thread FlashGuy
Correct. It works great. Thanks On Tue, 11 Mar 2003 07:47:01 -0500, Randell B Adkins wrote: Yes just considering that the dialog_start would be the beginning part of your tabel then your inputs are within that table elements itself. Then you will need to close your tables thus I am

RE: Creating custom tag?

2003-03-11 Thread Everett, Al
Just remember now in your custom tag that the values of TEXT, BXHEIGHT and BXWIDTH should be referenced in the ATTRIBUTE Scope: Attributes scope, actually. ~| Archives:

Re: Creating custom tag?

2003-03-11 Thread FlashGuy
Opps...not quite. Would I put these in my application.cfm along with my APPLICATION. stuff? referenced in the ATTRIBUTE Scope: ATTRIBUTE.TEXT ATTRIBUTE.BXHEIGHT ATTRIBUTE.BXWIDTH On Tue, 11 Mar 2003 07:48:47 -0500, FlashGuy wrote: Correct. It works great. Thanks On Tue,

Re: Creating custom tag?

2003-03-11 Thread FlashGuy
I'm not sure where to define the attributes. Below is my code split up into files (dialog_start.cfm, dialog_end.cfm) and test.cfm contains the CFMODULE stuff. What am I doing wrong? The CFMODULE attributes (bxtext, bxwidth) are not being inserted. dialog_start.cfm --- !---

Re: Macromedia DONT help me now. so where do i turn now?

2003-03-11 Thread Dave Lyons
a clean install is the best way to go, as I suggested too you a few days ago. but xp also has a repair feature to where it goes over your install and fixes its files but I'm not sure I'd trust that. - Original Message - From: Michael Kear [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED]

RE: FoxPro databases: does CF use indexes?

2003-03-11 Thread Bill Grover
CF will access FoxPro efficiently, we do it all day every day. If you submit a poorly written query it will perform poorly, but if you write an optimized query it will fly. For example, we have an inventory table with an index defined as UPPER(stockno). I had a programmer write a query on his

Re: Javascript Signed Scripting Re: window.close question?

2003-03-11 Thread James Blaha
Jann, Thanks a million for the information. I'll look through it all soon. Regards, James Blaha Jann VanOver wrote: Mozilla has a write up on signed javascripting: http://www.mozilla.org/projects/security/components/signed-scripts.html There's an old (Netscape 4.0) article here:

RE: FoxPro databases: does CF use indexes?

2003-03-11 Thread Robertson-Ravo, Neil (RX)
not just the driver...the server as impacts on performance also. -Original Message- From: Bill Grover [mailto:[EMAIL PROTECTED] Sent: 11 March 2003 13:35 To: CF-Talk Subject: RE: FoxPro databases: does CF use indexes? CF will access FoxPro efficiently, we do it all day every day. If

Re: Creating custom tag?

2003-03-11 Thread Randell B Adkins
Anytime you need to reference the BXHEIGHT you use: Attributes.bxheight table border=0 cellpadding=12 cellspacing=0 width=#ATTRIBUTES.bxwidth# And the same for all other attributes that is being used in the CFMODULE call. [EMAIL PROTECTED] 03/11/03 08:15AM I'm not sure where to define the

RE: Macromedia DONT help me now. so where do i turn now?

2003-03-11 Thread Michael Kear
Yes, thanks Dave, and the others who are giving me the benefit of their experience in these things. Dave I did see your advice about rebuilding the system. I took so long to build it the first time - only a couple of months ago, that I really want to exhaust all the other possibilities first.

Custom Tag Question

2003-03-11 Thread John Stanley
I am creating a custom tag that will display the results of a query. I know there are already some out there, but I wanna do it myself. I have an attribute called queryname that i refer to in the call of the custom tag. cf_mytag queryname=get_users inside the custom tag i refer to it as

RE: Custom Tag Question

2003-03-11 Thread Raymond Camden
That is because you did not pass the query to the custom tag, but the name of the query. You can fix this two ways. 1) In your custom tag, do cfoutput query=caller.#attributes.queryname#, however, in general, it's not good practice to refer to variables outside the custom tag. 2) Pass the actual

OT:: Public (free) Newsfeeds...

2003-03-11 Thread Che Vilnonis
Does anyone know of a resource for Martial Arts/Karate newsfeeds? Any links would be appreciated. Ché Vilnonis Application Developer Advertising Systems Incorporated 8470C Remington Avenue Pennsauken, NJ 08110 p: 856.488.2211 f: 856.488.1990 www.asitv.com

RE: Creating custom tag?

2003-03-11 Thread Raymond Camden
Your custom tags need to use Attributes.Foo instead of Foo. For example, change bxwidth to attributes.bxwidth. === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc Member of Team Macromedia Email: [EMAIL PROTECTED]

Sorting XML without XSLT (Running it brain meltdown)

2003-03-11 Thread Michael J. Sammut
Hi again, I am reposting again in case anyone can elaborate on a solution. I am running in to brain meltdown and simple cannot figure out how to manipulate this data. I am storing XML in a SQL database and using GetContent.XmlFeed[getcontent.currentrow].contentdata.XmlChildren[1].date.XmlText

RE: Custom Tag Question

2003-03-11 Thread Andre Mohamed
Try something LIKE this inside of your custom tag: cfset theQuery = caller.#attributes.queryname# cfoutput query=theQuery blah blah /cfoutput Thanks, André -Original Message- From: John Stanley [mailto:[EMAIL PROTECTED] Sent: 11 March 2003 14:29 To: CF-Talk Subject: Custom

Re: Lockdown CFMX

2003-03-11 Thread Thomas Chiverton
On Tuesday 11 Mar 2003 09:45 am, Shahzad.Butt wrote: Does someone know how to lock down Coldfusion Server? Idea is that we are going to be on internet through https. Now we need to secure our server. We'd already locked down IIS etc, only bit left is to secure Coldfusion Server. What sort of

session timeout clarification

2003-03-11 Thread Kelly Tetterton
Folks -- a colleague of mine asked me to help him with some changes to the way he was treating his session variables, but in doing so, I've run into something of a misunderstanding of how I *thought* session variables worked. Specifically, in the test code below, I would expect that 1) when

RE: Custom Tag Question

2003-03-11 Thread John Stanley
Raymond, thank you very much for your help. that was it. -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 9:38 AM To: CF-Talk Subject: RE: Custom Tag Question That is because you did not pass the query to the custom tag, but the name of

Re: Macromedia DONT help me now. so where do i turn now?

2003-03-11 Thread Dave Lyons
believe me I know how you feel! I have gone through it many times! haha but in the end its a good habit to do. I run several companies off of my comp, so the rebuilding used to takes several days, I have gotten it down to a few hours now. heres what i do go get a stack of cdr's then I make a

Re: Custom Tag Question

2003-03-11 Thread Info
cf_mytag queryname=#get_users# Looks like you need to put # around the variable that you are passing to the tag otherwise the tag will see it as a text string. - Original Message - From: John Stanley [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 7:28 AM

RE: Creating custom tag?

2003-03-11 Thread FlashGuy
That worked. Thanks On Tue, 11 Mar 2003 08:39:28 -0600, Raymond Camden wrote: Your custom tags need to use Attributes.Foo instead of Foo. For example, change bxwidth to attributes.bxwidth. === Raymond Camden, ColdFusion

RE: Lockdown CFMX

2003-03-11 Thread Scott Wilhelm
Why not read the logs via the administrator? How else should I read my logs? -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 9:41 AM To: CF-Talk Subject: Re: Lockdown CFMX On Tuesday 11 Mar 2003 09:45 am, Shahzad.Butt wrote:

RE: Lockdown CFMX

2003-03-11 Thread Richmond, Pamela
Tom C wrote: Never read the logs via the administrator. I haven't heard this before. What is the reason? Pam ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: cfgrid issues

2003-03-11 Thread Jack Ince
I have the same problem. Old cfgrid worked (slow) and I could insert, delete, and update. Now I can not update -- the form fields do not get filled out correctly. I have asked about this on several different forums, but no one answers. These people have a product that is supposed to be good.

Re: Sorting XML without XSLT (Running it brain meltdown)

2003-03-11 Thread Thomas Chiverton
On Tuesday 11 Mar 2003 14:39 pm, Michael J. Sammut wrote: Can anyone lend some help in explaining how I may sort this without XSLT? Create a list of all the primary key id's of the record set, sorted by whatever you need, then loop over that list and pull out the records with it. i.e. var

Re: Macromedia DONT help me now. so where do i turn now?

2003-03-11 Thread Pete Ruckelshaus
Something to consider -- buy a spare hard drive, pull out your current one, put in the new one, and start your installation process. If you need to get back to business, stop at a convenient point in the installation process, shut down your PC, and switch back to your old hard drive. Shoot me a

Re: OT:: Public (free) Newsfeeds...

2003-03-11 Thread David Groth
Have you looked at http://www.newsisfree.com ? David Groth, Analyst/Programmer III HSC Library Informatics Center, University of New Mexico 505.272.8406 e-mail: [EMAIL PROTECTED] [EMAIL PROTECTED] 03/11/03 07:38AM Does anyone know of a resource for Martial Arts/Karate newsfeeds? Any links

RE: Lockdown CFMX

2003-03-11 Thread Douglas.Knudsen
Never read the logs via the administrator. ? I never heard this one before. Why not? Doug -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 9:41 AM To: CF-Talk Subject: Re: Lockdown CFMX On Tuesday 11 Mar 2003 09:45 am, Shahzad.Butt

Re: Lockdown CFMX

2003-03-11 Thread Thomas Chiverton
On Tuesday 11 Mar 2003 14:55 pm, Scott Wilhelm wrote: Why not read the logs via the administrator? Because Evil Hacker can insert anything they like in them, unless Macromedia have tidied that one up recently. And if I can do that, on IE, I own you ;-) On Netscape/Mozilla it isn't as bad, but

RE: Macromedia DONT help me now. so where do i turn now?

2003-03-11 Thread Josh Remus
On that line (which has nothing to do with your problem). On a couple of our multi-purpose machines (sometimes used as dev servers, sometimes used as testing machines, etc) we have hard-drive drawers installed, and we've bought the cheapest, smallest drives we could find. The drawer hardware is

RE: ASP.NET

2003-03-11 Thread Kris Pilles
Why do you favor c# over VB by so much? KP -Original Message- From: Gary W. Sullivan II [mailto:[EMAIL PROTECTED] Sent: Monday, March 10, 2003 6:38 PM To: CF-Talk Subject: RE: ASP.NET As a MCAD.NET, I can safely recommend the majority of MS Press books dealing with .NET, seeing as

FW: ASP.NET

2003-03-11 Thread Scott Mulholland
Which MS Press book would you recommend as the best to start with? -Original Message- From: Gary W. Sullivan II [mailto:[EMAIL PROTECTED] Sent: Monday, March 10, 2003 6:38 PM To: CF-Talk Subject: RE: ASP.NET As a MCAD.NET, I can safely recommend the majority of MS Press books dealing

RE: Lockdown CFMX

2003-03-11 Thread Mark A. Kruger - CFG
Well... if your code is crap the application log can be pretty dang big g. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 9:03 AM To: CF-Talk Subject: RE: Lockdown CFMX Never read the logs via the administrator. ? I never heard

Re: Lockdown CFMX

2003-03-11 Thread Thomas Chiverton
On Tuesday 11 Mar 2003 15:10 pm, Thomas Chiverton wrote: On Tuesday 11 Mar 2003 14:55 pm, Scott Wilhelm wrote: Why not read the logs via the administrator? Also, do you *know* there isn't a buffer overflow or something in ColdFusion's log displayer ? -- Tom C Land of the free, home of the

Re: Lockdown CFMX

2003-03-11 Thread Thomas Chiverton
On Tuesday 11 Mar 2003 15:22 pm, Mark A. Kruger - CFG wrote: Well... if your code is crap the application log can be pretty dang big Indeed, that was a DoS for CF4 wasn't it ? CFMX seems much better though - it pages the file for instance. -- Tom C Land of the free, home of the brave... you

RE: Javascript Signed Scripting Re: window.close question?

2003-03-11 Thread Joshua Miller
I'll re-post this because it was about 4am when I posted and you may have missed this. You CAN do this without a signed script: Just change the window opener's reference to TOP and then you can close it. script window.open('popup.html','popWin','width=300,height=300'); window.opener=top;

Re: cfgrid issues

2003-03-11 Thread charlie griefer
Hey Jack: Thanks for the reply. I finally gave up and just built a straight web interface for the app. The link looks very cool tho. Got it bookmarked for the future :) Thanks again, charlie Jack Ince writes: I have the same problem. Old cfgrid worked (slow) and I could insert,

Re: cfgrid issues

2003-03-11 Thread Thomas Chiverton
On Tuesday 11 Mar 2003 14:52 pm, Jack Ince wrote: These people have a product that is supposed to be good. http://216.74.28.185/products/cfgrid/index.cfm I hope it's better than the pricing calculator and examples on their front page. The drop down in the calcualtor wont let me click it. The

Re: Javascript Signed Scripting Re: window.close question?

2003-03-11 Thread David Fafard
Cool solution for an intranet! Thanks for the tip. Dave - Original Message - From: Joshua Miller [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 10:35 AM Subject: RE: Javascript Signed Scripting Re: window.close question? I'll re-post this because it was

RE: cfgrid issues

2003-03-11 Thread Douglas.Knudsen
LOL! I would suggest rolling your own 'grid'. That's what we did. CFGRID is quirky and depends on a certain JRE versiona real PITA actually. Plus, every customer that sees it wants it to do more than it can. So we wrote an HTML version. It isn't hard really, but doesn't have

Re: Macromedia DONT help me now. so where do i turn now?

2003-03-11 Thread Christian Cantrell
Rebuilding a machine is a pain no matter how you approach it (although some people have offered some good advice here that will make things easier). There is a delicate balance between backing up as many files as possible to make the restoration as easy as possible, but also making sure you

Re: Dreamweaver changing code on me

2003-03-11 Thread Dave Carabetta
if i was you i'd consider uninstalling and reinstalling dwmx. check out this link http://www.joexx.de/DW-Exporter/download_en.php that will make it a breeze i think it will cure your woes I took your advice and now things looke to be Kosher. The one thing I have not done yet is go in and play

My First CF Site (Critique Request)

2003-03-11 Thread Scott Wilhelm
Sorry if this is a bit OT, but I was hoping to get some feedback on my first CF site: http://makeover.sllboces.org It's a remake of http://www.sllboces.org. The whole intention was to organize the links better, make the site synamic, make it easier to manage (there's CMS-like application that

RE: Sorting XML without XSLT (Running it brain meltdown)

2003-03-11 Thread Dan G. Switzer, II
Michael, Remember, XSLT doesn't just mean XML to XHTML--you could use XSLT to retransform the XML packet into a sorted XML packet and then run your CF logic on the new sorted packet. I believe I've seen a solution posted here: http://www.dpawson.co.uk/xsl/sect2/sect21.html If not, you

DSN Issue's

2003-03-11 Thread Michael Ross
Here is an excerpt from an email or DBA sent. Can someone help point me in the right direction. Thanks ¯-- how does Cold Fusion decide on wheather to use Named Pipe or Tcpip? Last week when I changed client configuration for one DSN, it chagned all the others. Is this the way it

Re: DSN Issue's

2003-03-11 Thread jon hall
This guy changed client configuration for one DSN? I'm not sure what he means by that. Changing one setting in one DSN does not change any other DSN settings other than the one you are editing. Unless there is some kind of MX bug involved that is... To answer the second part, just use a different

Re: My First CF Site (Critique Request)

2003-03-11 Thread jon hall
Overall it looks great to me. Just a couple things. The Times font gets hard to read at smaller sizes...you might try at Tahoma, Veranda, or Georgia. The dark green hover makes the link text hard to read. portal.cfm throws a CF error if I pass an invalid id in the url. Putting an error handler

ReadyHosting.com alternatives?

2003-03-11 Thread Shawn Grover
I have a couple of sites hosted at www.readyhosting.com. Their CF servers have been down more than not in the past few days, with no responses from their tech support. Calling them get's me put onto a hold queue for an extended period. So, I'm looking for alternatives that offer similar

RE: ReadyHosting.com alternatives?

2003-03-11 Thread Scott Wilhelm
Geez, I always felt like I was the only one having problems w/ them. Don't forget about the unlimited email option as well... Scott -Original Message- From: Shawn Grover [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 12:40 PM To: CF-Talk Subject: ReadyHosting.com

RE: ReadyHosting.com alternatives?

2003-03-11 Thread John Stanley
check out www.uplinkearth.com -Original Message- From: Scott Wilhelm [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 12:40 PM To: CF-Talk Subject: RE: ReadyHosting.com alternatives? Geez, I always felt like I was the only one having problems w/ them. Don't forget about the

RE: My First CF Site (Critique Request)

2003-03-11 Thread Jim Davis
-Original Message- From: Scott Wilhelm [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 11:59 AM To: CF-Talk Subject: My First CF Site (Critique Request) Sorry if this is a bit OT, but I was hoping to get some feedback on my first CF site: http://makeover.sllboces.org

Re: ReadyHosting.com alternatives?

2003-03-11 Thread news
Take a look at www.coldfusionhosts.net if you like. There are a number of US based CF hosted listed. Regards Jim - Original Message - From: Shawn Grover [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 5:40 PM Subject: ReadyHosting.com alternatives? I have

Re: ReadyHosting.com alternatives?

2003-03-11 Thread charlie griefer
Hi Shawn: For the price, I cannot say enough good things about Nexpoint. They have a $99/yr package that includes: CF 5 unlimited ODBC datasources (Access) unlimited e-mail unmetered bandwidth 500MB storage PHP ASP etc They also offer SQL Server 2k for an additional $25/yr (whereas most

Another Verity Search Problem

2003-03-11 Thread Bill keziah
This morning, my customer complained that he wasnt getting the desired search results. After research, I have determined that the index was in fact not being indexed! Looking at the sysinfo.log the following message appears for each document within the collection: Error: E0-720 (I/O

RE: ReadyHosting.com alternatives?

2003-03-11 Thread Kris Pilles
If anyone is interested in CFMX hosting with HELM control panel I am more then willing to give you space on my server. Send me an email off list if you want to talk about it. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 12:52 PM To:

Re: Dreamweaver changing code on me

2003-03-11 Thread Dave Lyons
I can always help with non-cf issues lol - Original Message - From: Dave Carabetta [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 11:56 AM Subject: Re: Dreamweaver changing code on me if i was you i'd consider uninstalling and reinstalling dwmx. check

Re: ReadyHosting.com alternatives?

2003-03-11 Thread samcfug
Check out http://www.clickdoug.com 99% up time - supports CF 5.0 - non-profits are half price supports all mainstream database products - unlimited email accounts was a nominee in the CFDJ hosting awards. Highly rated on the Ben Forta Web site. Hosts CF user groups free

RE: ReadyHosting.com alternatives?

2003-03-11 Thread Shawn Grover
Just wanted to say thank you for all the responses! It's good to know the support is out there, and that I'm not the only one suffering through this.. :D Shawn -Original Message- From: samcfug [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 11:16 AM To: CF-Talk Subject: Re:

moving CFIDE folder

2003-03-11 Thread Brad Howerter
What configuration parameter do I need to change to allow me to move my CFIDE folder from \wwwroot\CFIDE to \inetpub\wwwroot\CFIDE? I tried just moving it but it gave me errors so I've put it back for now. *** The information in this e-mail is confidential and intended solely for the individual

RE: Another Verity Search Problem

2003-03-11 Thread Gaulin, Mark
Hi I don't know exactly what the problem is, but the Verity style and filter stuff has to do with extracting content from files of different types (extensions, mime types)... there might be a filter for .txt or .html or .doc, etc. It is possible that there is an unrecognized file extension

Re: moving CFIDE folder

2003-03-11 Thread Randell B Adkins
if your using IIS, you need to edit the path of the folder in IIS. [EMAIL PROTECTED] 03/11/03 01:32PM What configuration parameter do I need to change to allow me to move my CFIDE folder from \wwwroot\CFIDE to \inetpub\wwwroot\CFIDE? I tried just moving it but it gave me errors so I've put it

cfc cfstoredproc

2003-03-11 Thread Robert Shaw
Hi, How do we pass the result set of a cfstoredproc call to a cfc? TIA, Ro ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

scheduling application in cf?

2003-03-11 Thread Melissa Fraher
Hello everyone. I am interested in developing a registration / scheduling form which would allow the user to select classes and check for time conflicts. I remember back when I registered for DevCon2002, there was a very nice conference registration form which checked for available seats / time

moving CFIDE folder

2003-03-11 Thread Brad Howerter
I guess that was it. I thought I had done that before, but I tried it again just now and it seems to work. Thank you. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

MS Word Object

2003-03-11 Thread Robert Bailey
Hey guys. Playing around here, and trying to count the words in a MS Word document. It is returning a number, but not the amount of words in the doc, as when I open it up using word, and look at the count there, it is a few off from when I use the object. Maybe I am going it wrong. I created a

Includes within cfmail

2003-03-11 Thread Dowdell, Jason G
Is it acceptable to make include calls from within a cfmail tag? Here's a code snippet... cftry cfmail to=#form.email# from=#form.my_email# subject=#form.subject# cc=#form.cc_email#

RE: MS Word Object

2003-03-11 Thread Mike Townend
Try prototyping how to do it in the vba editor (alt-F11) in word, that's how I always do stuff in word, then you get intellisense and help etc. Then when you have it done, port it to cfscript and then try running it HTH -Original Message- From: Robert Bailey [mailto:[EMAIL PROTECTED]

RE: My First CF Site (Critique Request)

2003-03-11 Thread Costas Piliotis
Also, the select box for navigating... Consider switching it to some DHTML navigation or something... There's a tonne of info in there that you could really explore. I agree... The menu at the top would work much better... Usually good is a small menu at the base with the same links repeated

Re: Includes within cfmail

2003-03-11 Thread Scott Brady
-- Original Message -- From: Dowdell, Jason G [EMAIL PROTECTED] Is it acceptable to make include calls from within a cfmail tag? I've never had a problem doing so. I typically cfinculde my cancellation policy text that way. Of course, if there is any

RE: Re-ordering table records

2003-03-11 Thread Mosh Teitelbaum
Peter: I built a system quite a few years back that let you reorder records. The front end was a select list showing all of the records and 2 buttons, up and down. When you were finished reordering the records, you'd push the submit button which would build a list of the elementIDs in the new

RE: cfgrid issues

2003-03-11 Thread Dan O'Keefe
SmartSurf? They have some pretty cool stuff. I am not overjoyed with email responses, but I have found their tags to be very functional. Dan -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 11:19 AM To: CF-Talk Subject: Re: cfgrid issues

RE: Includes within cfmail

2003-03-11 Thread Mosh Teitelbaum
Sure, it's acceptable. Just watch out for extraneous whitespace. -- Mosh Teitelbaum evoch, LLC Tel: (301) 942-5378 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Dowdell, Jason G [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11,

RE: MS Word Object

2003-03-11 Thread Robert Bailey
hmmm, very odd. Maybe my install of word is messed up here? So I wrote a quick script in word: Sub Test() Dim DocOpen As Word.Document Set DocOpen = Documents.Open(c:\blah.doc) With DocOpen MsgBox The name of this doc is .Name Which has a count of .Words.Count .Close

Searching

2003-03-11 Thread Scott Wilhelm
I'm not familiar at all w/ ColdFusion's searching abilities. I am currently running CF5 on Win2k. I'd like to create a search although my site's partially static mostly dynamic. What's the best way to search? Thanks, Scott Scott Wilhelm Computer Technician/Web Developer

input radio buttons

2003-03-11 Thread FlashGuy
HI, I have the following radio buttons: input type=radio name=Yesnbsp;Yesbr input type=radio name=Nonbsp;No Currently I can click on both the yes and no and they both get selected. I don't want that to happen. The user should only be able to select one. How can I do

Another Verity Search Problem

2003-03-11 Thread Bill Keziah
I'm not sure either. Can anyone tell me if there should be files located in the CFUSION/VERITY/FILTERS folder? If so, what are the names? I don't have any. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4

RE: MS Word Object

2003-03-11 Thread Robert Bailey
OK, I have tested this code on 3 machines, all get the wrong count. Anyone know what is going on? Thanks! Robert Bailey Famous for nothing -Original Message- From: Robert Bailey [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 2:43 PM To: CF-Talk Subject: RE: MS Word Object

Another Verity Search Problem

2003-03-11 Thread Bill Keziah
I am not sure either. Should anything be in the CFUSION/VERITY/FILTERS folder? ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: input radio buttons

2003-03-11 Thread Douglas.Knudsen
http://dir.yahoo.com/Computers_and_Internet/Data_Formats/HTML/ for an 'old-skool' start Doug -Original Message- From: FlashGuy [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 3:23 PM To: CF-Talk Subject: input radio buttons HI, I have the following radio buttons:

RE: input radio buttons

2003-03-11 Thread Bruce, Rodney S HQISEC/Veridian IT Services
Give them the same name with different values input type=radio name=yourbutton value=yesnbsp;Yesbr input type=radio name=yourbutton value=nonbsp;No -Original Message- From: FlashGuy [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 1:23 PM To: CF-Talk Subject: input radio buttons

  1   2   >