Re: Need help with grouped query and inner cfoutput

2007-04-09 Thread Casey Dougall
That last quiz/survey system I created handles option fields by storing them in their own table. TableForm TableQuestions TableQuestionOptions While you might be able to grab all of these in one query, I'm running two and if the question type is a Select Box grab the option set. cfelseif Type

RE: A Question for Development: Ajax Now or Ajax Later?

2007-04-09 Thread Dan G. Switzer, II
Rick, So the question, becomes... spend a lot of time now learning to implement jQuery and Web 2.0 interfaces and functionality or wait for CF 8, see what it provides, and then just fill in any remaining gaps with third-party development? A couple of quick points: jQuery is more than just AJAX.

Re: Building a Web Proxy with Authentication

2007-04-09 Thread Matthew Small
Hi Hatton, problems with what you're doing is that these authentication schemes typically keep an auth cookie in the browser. When making an authentication request from another server, that cookie stays on the requesting entity - the server itself. You would have to pass the contents of

Re: Building a Web Proxy with Authentication

2007-04-09 Thread Matthew Small
Hi Hatton, problems with what you're doing is that these authentication schemes typically keep an auth cookie in the browser. When making an authentication request from another server, that cookie stays on the requesting entity - the server itself. You would have to pass the contents of

Re: Building a Web Proxy with Authentication

2007-04-09 Thread Matthew Small
Hi Hatton, (I was in the middle of formulating my thoughts with the previous post when I accidentally posted, please ignore it) What you can do in this instance is intercept all incoming requests for a site. On the first request from any client, you can request username/password and then

Re: Building a Web Proxy with Authentication

2007-04-09 Thread C. Hatton Humphrey
problems with what you're doing is that these authentication schemes typically keep an auth cookie in the browser. When making an authentication request from another server, that cookie stays on the requesting entity - the server itself. You would have to pass the contents of that

Structures

2007-04-09 Thread Scott Stewart
Hey all, I have series of values that looks like this (sort of) A, b C, d E, f G, h Can I put this into a structure? Thanks sas -- Scott Stewart ColdFusion Developer SSTWebworks 7241 Jillspring Ct. Springfield, Va. 22152 (703) 220-2835 HYPERLINK

Re: Structures

2007-04-09 Thread Scott Stroz
I can't see why not. On 4/9/07, Scott Stewart [EMAIL PROTECTED] wrote: Hey all, I have series of values that looks like this (sort of) A, b C, d E, f G, h Can I put this into a structure? Thanks sas -- Scott Stewart ColdFusion Developer SSTWebworks 7241

RE: Structures

2007-04-09 Thread Ben Nadel
Sure thing (I think): cfset objValues = StructNew() / cfset objValues[ A ] = b / cfset objValues[ C ] = d / cfset objValues[ E ] = f / cfset objValues[ F ] = h / .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help?

RE: Structures

2007-04-09 Thread Andy Matthews
Possibly. Is b the value of A? If each item on the left is meant to be a key with it's intended value on the right, then by all means. Put that bad boy into a structure. -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Monday, April 09, 2007 8:12 AM To: CF-Talk

RE: Structures

2007-04-09 Thread Scott Stewart
No, A and B are separate values. sas -- Scott Stewart ColdFusion Developer SSTWebworks 7241 Jillspring Ct. Springfield, Va. 22152 (703) 220-2835 http://www.sstwebworks.com -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Monday, April 09, 2007 9:19 AM To:

RE: Session timeout problems

2007-04-09 Thread Bader, Terrence C CTR MARMC, 231
When this happens is it just that one user or do all users on get reset? -Original Message- From: Jason Dunaway [mailto:[EMAIL PROTECTED] Sent: Friday, April 06, 2007 13:26 To: CF-Talk Subject: Re: Session timeout problems After you suggested this we decided to see what was going on

ColdFusion Scheduler

2007-04-09 Thread JJ Cool
I'm having a problem with the scheduler not running one time tasks. Here is what I'm doing. I have a script that runs, setup as a one time task. If it succeeds, it schedules itself as a one time task to run on the next business day. If it fails, it schedules itself as a one time task to run one

RE: Structures

2007-04-09 Thread Andy Matthews
Okay...you could still put them into a structure if you want. What is it that you're trying to accomplish? -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Monday, April 09, 2007 8:25 AM To: CF-Talk Subject: RE: Structures No, A and B are separate values. sas --

RE: Structures

2007-04-09 Thread Konopka, Dave
You're limited to one value per key. But the value can be a struct or an array. So you could do: cfset mainStruct = StructNew() / cfset subStruct = StructNew() / cfset subStruct.One = A / cfset subStruct.Two = b / cfset mainStruct.Something = subStruct / Then you would reference the values:

RE: Structures

2007-04-09 Thread Scott Stewart
I'm extracting results from a table, over a range of weeks, based on the date range and a pair of values for each range. The pair values are static, but the dates aren't. I'm looping over the dates and values to dynamically build a table. Here's what I've got so far... it works but it's not

RE: Previous/Next Navigation

2007-04-09 Thread Bader, Terrence C CTR MARMC, 231
This is what I put together recently. It works for me for now. CFPARAM NAME=session.StuffListStartid VALUE=0 CFSET session.myStuffAll = application.accountManager.getStuffQuery(0,0,0,session.srchUsers,session ..srchStat,session.sort,session.sortway) CFSET

file do more than one scheduled task ??

2007-04-09 Thread Seamus Campbell
Hi is there any way to have a scheduled task do more than one task. My situation is this: I have a shared hosting space (Windows Servers) with Crystaltech. They only allow me 5 scheduled tasks but I have more than 5 sites which each need to run a file on a regular interval. (cfschedule is

Re: Structures

2007-04-09 Thread James Holmes
Using ceateobject inside each iteration of the loop to create exactly the same object each time is going to be part of that slowness... On 4/9/07, Scott Stewart [EMAIL PROTECTED] wrote: Here's what I've got so far... it works but it's not elegant and it's way slow. -- mxAjax / CFAjax docs

RE: Structures

2007-04-09 Thread Scott Stewart
Thanks... sas -- Scott Stewart ColdFusion Developer SSTWebworks 7241 Jillspring Ct. Springfield, Va. 22152 (703) 220-2835 http://www.sstwebworks.com -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: Monday, April 09, 2007 9:58 AM To: CF-Talk Subject: Re:

Re: file do more than one scheduled task ??

2007-04-09 Thread Raymond Camden
All the cfschedule feature does is hit your page with HTTP. So you can easily have a task also do a few CFHTTPs. On 4/9/07, Seamus Campbell [EMAIL PROTECTED] wrote: Hi is there any way to have a scheduled task do more than one task. My situation is this: I have a shared hosting space

SOLVED: cfoutput grouping

2007-04-09 Thread Will Tomlinson
Thanks to Jim Wright for the answer. I had completely blanked on being able to use a nested cfoutput group with an outer query output grouping. cfoutput query=getAdditionalQuestions group=questionID cfoutput group=answersetidbr / #answersetname#br / cfselect name=Q_question#ctr#

Re: Hostmysite down...

2007-04-09 Thread Mary Jo Sminkey
you gotta remember cfm wasnt made to work as a shared server. Maybe not originally, but again, that's no excuse for it still not working properly as a shared server. It will have a hard time being successful long term if it is not. and i wouldnt blame hms, blame some bad code from someone

RE: ColdSpring From Within App.cfc (MG)

2007-04-09 Thread Robert Rawlins - Think Blue
Hi Chaps, Anyone have any ideas at all on this one? I'm really struggling to build on user bean onSessionStart(). I've gotten quite used to using ColdSpring and other factories for managing my bean dependencies. Does Model-Glue have another method for onSessionStart() instead of using the

SPRY Help

2007-04-09 Thread Chad McCue
I have a site that creates a XML document when completed the XML will have around 2500 entries, right now everything runs fine when I limit my CFQUERY to 18 max rows, everything is displayed correctly. For some reason when ever I go above 18 say 19 or 20 max rows something happens and the page

Blog and Forum Entries - Best Practices?

2007-04-09 Thread Joel Watson
I am getting ready to launch a blog/forum that I have designed and developed. However, I am having a bit of trouble with the text formatting/output. What are some best practices for inserting clean code into the database (mySQL 5.0), writing inserted data to XML-compliant formats, etc.? I am

CF7 Upgrade IIS6 Virtual Directory

2007-04-09 Thread Greg Griffin
I need some guidance. I upgraded a Windows 2003/IIS6 server this weekend from CF6 Standard to CF7 Standard. The upgrade went fine except for a problem with a virtual directory we have configured. The virtual directory is parallel to the main website in the file-system, but is a sub-directory

RE: CF7 Upgrade IIS6 Virtual Directory

2007-04-09 Thread Russ
For once I'm not going to recommend Apache :-). Can you try deleting the virtual directory from IIS and adding it on again? Russ -Original Message- From: Greg Griffin [mailto:[EMAIL PROTECTED] Sent: Monday, April 09, 2007 11:44 AM To: CF-Talk Subject: CF7 Upgrade IIS6 Virtual

Re: Blog and Forum Entries - Best Practices?

2007-04-09 Thread Rick Root
On 4/9/07, Joel Watson [EMAIL PROTECTED] wrote: Also, how will these change if I use the TinyMCE rich text editor? The most important thing to remember when using ANY rich text editor is that you can paste in just about anything - even if you don't have the toolbars enabled. Table tags, script

CFmail spool / out going mail server hosting

2007-04-09 Thread Mark Breneman
I am watching my CFMX 7.02 mail spool folder and every 60 seconds I see only 6.6 messages leave this folder. Am I correct that the mail server that I am using is running very very slow. (And or chocked by the mail list send) If this is the case,I am fairly sure it is, can any one recommend a

RE: CFmail spool / out going mail server hosting

2007-04-09 Thread Russ
CFMX standard is very slow sending out email, as it uses only 1 thread. CFMX enterprise is a LOT faster. If you don't have money for CFMX enterprise, you can use IMS lite, which is Free and has 5 threads, and did well for us even with lists of up to 100k. We did use a dedicated server for

Re: Need help with grouped query and inner cfoutput

2007-04-09 Thread Ali Awan
The 3rd and 4th clauses seem to be identical in your Where Clause AND tblquestionsanswers_x.answersetid = tblanswersets.answersetid AND tblanswersets.answersetid = tblanswersetsanswers_x.answersetid That may be why you are getting a Cartesian Product. Another thing to consider is the order that

Re: file do more than one scheduled task ??

2007-04-09 Thread Jim Wright
Seamus Campbell wrote: is there any way to have a scheduled task do more than one task. My situation is this: I have a shared hosting space (Windows Servers) with Crystaltech. They only allow me 5 scheduled tasks but I have more than 5 sites which each need to run a file on a regular

RE: CF7 Upgrade IIS6 Virtual Directory

2007-04-09 Thread Gaulin, Mark
I assume you have some dirs that run cfm files correctly using CF7. For the working vs. non-working directories, check the isapi filters installed in each directory and also the script mappings. I bet one of these is pointing to an older dll. I believe there is also a way to dump an IIS setup

SOT: Invitation for Beta Testers

2007-04-09 Thread Jon Clausen
Sorry about being a bit off topic, but early this morning (or late last night if you will) I turned on the lights and opened up the public Beta of a new CF (MG:U) App I've been working on in my spare time called Spotstor ( http://spotstor.com ) . If there's any CF'ers who use GPS or

Re: SOT: Invitation for Beta Testers

2007-04-09 Thread mac jordan
On 4/9/07, Jon Clausen [EMAIL PROTECTED] wrote: Sorry about being a bit off topic, but early this morning (or late last night if you will) I turned on the lights and opened up the public Beta of a new CF (MG:U) App I've been working on in my spare time called Spotstor ( http://spotstor.com

Re: SOT: Invitation for Beta Testers

2007-04-09 Thread Jon Clausen
Absolutely! The core Area data and public waypoints in the system right now are US/CA, but that's only because I haven't had the time to spend on searching and mining through gigabytes of GIS data to convert. I definitely want this to be a worldwide thing. Jon On Apr 9, 2007, at 1:09

Re: SOT: Invitation for Beta Testers

2007-04-09 Thread mac jordan
On 4/9/07, Jon Clausen [EMAIL PROTECTED] wrote: Absolutely! The core Area data and public waypoints in the system right now are US/CA, but that's only because I haven't had the time to spend on searching and mining through gigabytes of GIS data to convert. I definitely want this to be a

Re: CF7 Upgrade IIS6 Virtual Directory

2007-04-09 Thread Greg Griffin
Yes - some directories are working fine with CF7. I think you've pointed me in the right direction. I exported the IIS config file and I can see the problem now. The directories that work with CF7 read: ScriptMaps= *,C:\CFusionMX7\runtime\lib\wsconfig\1\jrun_iis6_wildcard.dll,3

Re: SOT: Invitation for Beta Testers

2007-04-09 Thread Jon Clausen
http://spotstor.com/signup (There's a feedback form visible in the right-hand menu when you're logged in. That's the feedback mechanism during the public beta) That's all you need. :-) -Jon On Apr 9, 2007, at 1:28 PM, mac jordan wrote: On 4/9/07, Jon Clausen [EMAIL PROTECTED] wrote:

Re: SPRY Help

2007-04-09 Thread Raymond Camden
The first thing I always do is view the XML outside of Spry. Firefox is especially useful in showing where XML is bad. One of the common mistakes is not escaping HTML in returned XML. You can use the XMLFormat function, but even that isn't enough. XMLFormat has a bug where it lets bad MS Office

RE: CF7 Upgrade IIS6 Virtual Directory

2007-04-09 Thread Dave Watts
So, what is making CF6 hold onto this virtual directory? How can I get CF7 to parse it instead? The easiest way to do this, as Russ suggested, is to simply delete and recreate the virtual directory. Otherwise, you could ensure that the directory is in fact a virtual directory, not a virtual

RE: SPRY Help

2007-04-09 Thread Chad McCue
I opened my generated 2250 record xml file in IE 6 and it choked on 2/24/2006 0:00 saying the first / is a invalid character. I then opened it up in Firefox and it opened fine. Any idea what would cause this? -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent:

Re: SPRY Help

2007-04-09 Thread Raymond Camden
I can't imagine why / would be invalid, but I'd trust Firefox. So then maybe it is simply too big. If you switch to 100 rows, does it work? To be honest, 2k+ rows is a bit much. You may want to do server side paging. I had an article on that on my blog a few weeks back. On 4/9/07, Chad McCue

Coldfusion Installation, is local server needed?

2007-04-09 Thread Peter Donahue
Good afternoon everyone, I use Studio MX which includes Dreamweaver and Coldfusion for creating Web pages. I'm wondering if in order to install Coldfusion on my local machine if this is an add-on for Studio MX or Eclipse in the case of CFEclipse. My impression is that one first needs to

RE: SPRY Help

2007-04-09 Thread Chad McCue
Chad McCue Advanced Media Productions 251 West Central St. Suite 28 Natick MA, 01760 p: 508.647.5151 ext 16 f: 508.647.5150 -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Monday, April 09, 2007 2:47 PM To: CF-Talk Subject: Re: SPRY Help I can't imagine why

RE: SPRY Help

2007-04-09 Thread Chad McCue
Could you send me a link to that blog entry. -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Monday, April 09, 2007 2:47 PM To: CF-Talk Subject: Re: SPRY Help I can't imagine why / would be invalid, but I'd trust Firefox. So then maybe it is simply too big.

IIS6 and Client Certs breaks CFFILE Upload

2007-04-09 Thread Bobby Schuchert
We are using SSL and Client Certificates on an IIS6 box and having trouble with CFFILE upload. For some reason cffile upload no longer will work for a file over 50k in size. We can turn off require client certificates in IIS and the upload form works nicely. I even uploaded a 102mb avi file to

RE: Coldfusion Installation, is local server needed?

2007-04-09 Thread Peterson, Chris
You want to download and install Coldfusion developer edition from here: https://www.adobe.com/cfusion/tdrc/index.cfm?loc=en%5Fusproduct=coldfus ion You can use Coldfusion's built in web server, or you can install IIS first and configure that. Dreamweaver is not specifically associated to

RE: Coldfusion Installation, is local server needed?

2007-04-09 Thread Dave Watts
My impression is that one first needs to install server software such as IIS, Appachi, or Blue Dragon for the Coldfusion module to run on one's machine used for site development. No, ColdFusion includes a web server for development use. It's perfectly sufficient for most local

Re: Coldfusion Installation, is local server needed?

2007-04-09 Thread Charlie Griefer
ColdFusion has a built in webserver that runs (by default) on port 8500. You can use this for your local/development work. So while you don't -have- to install a separate web server, I like to keep my dev and prod environments as similar as possible... so I generally run the same web server

Re: SPRY Help

2007-04-09 Thread Bobby Schuchert
I have a site that creates a XML document when completed the XML will have around 2500 entries, right now everything runs fine when I limit my CFQUERY to 18 max rows, everything is displayed correctly. For some reason when ever I go above 18 say 19 or 20 max rows something happens and the page

Re: SPRY Help

2007-04-09 Thread Raymond Camden
http://ray.camdenfamily.com/index.cfm/2007/2/23/Spry-and-Server-Side-Paging On 4/9/07, Chad McCue [EMAIL PROTECTED] wrote: Could you send me a link to that blog entry. -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Monday, April 09, 2007 2:47 PM To:

Re: IIS6 and Client Certs breaks CFFILE Upload

2007-04-09 Thread Zaphod Beeblebrox
I've been struggling with this also. If I remember correctly, it's a problem with the implementation of certs in IIS. Something about the packet size and IIS not wanting to allow a large enough packet size. In the end, after day of trying to get it to work correctly, I rerouted the uploads

Re: IIS6 and Client Certs breaks CFFILE Upload

2007-04-09 Thread Zaphod Beeblebrox
that should be after days On 4/9/07, Zaphod Beeblebrox [EMAIL PROTECTED] wrote: I've been struggling with this also. If I remember correctly, it's a problem with the implementation of certs in IIS. Something about the packet size and IIS not wanting to allow a large enough packet size. In

Good cf-compatible javascript library to handle dragable page sections

2007-04-09 Thread Jerry Johnson
Is there a cf-compatible javascript library that can handle the drag-and-drop window areas like those found on google.com or pageflakes.com? Pageflakes does it with the .net Atlas widgets. http://www.google.com/ig?hl=enned=ustab=nwq= http://www.pageflakes.com/ I'd love to play with something

Re: Good cf-compatible javascript library to handle dragable page sections

2007-04-09 Thread Jon Clausen
Jerry, jQuery's interface plugin is very capable of doing that: http://docs.jquery.com/Plugins:Interface HTH, Jon On Apr 9, 2007, at 3:13 PM, Jerry Johnson wrote: Is there a cf-compatible javascript library that can handle the drag-and-drop window areas like those found on google.com or

Re: Good cf-compatible javascript library to handle dragable page sections

2007-04-09 Thread Robertson-Ravo, Neil (RX)
JS is techincally not compatible with any server side technology as it is a client side tool. There are several libs around, script.aculo.us, JQuery is a popular one with ColdFusion developers but in essense all libs are compatible, you just have to do the work :-) This e-mail is from Reed

Re: CF7 Upgrade IIS6 Virtual Directory

2007-04-09 Thread Greg Griffin
Okay - I've deleted and recreated the virtual directory making sure that it is not configured as an application. The main login page will now parse when I turn off the CF6 service, but it does not move to the action page when I hit submit. I just sits there. Urghh... ~ Greg So, what is

Re: Good cf-compatible javascript library to handle dragable page sections

2007-04-09 Thread Bobby Schuchert
I found this one earlier today when looking for a slushbox. http://www.indiankey.com/mxajax/index.cfm ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 MX7 integration create powerful cross-platform RIAs

Re: Good cf-compatible javascript library to handle dragable page sections

2007-04-09 Thread Bobby Schuchert
I found this one earlier while looking for a slushbox: http://www.indiankey.com/mxajax/index.cfm ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 MX7 integration create powerful cross-platform RIAs

RE: SPRY Help

2007-04-09 Thread Chad McCue
So the issue is with French symbols in my database that is screwing up my XML file. What is the best way to display French symbols in XML then outputting it with SPRY without having to find and replace all symbols? -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]

RE: Coldfusion Installation, is local server needed?

2007-04-09 Thread Russ
Peter, If you are developing on an XP machine locally and will be working on more then 1 site, I suggest installing Apache locally and creating a virtual site for each of the sites that you will be working on. This way you can more closely replicate the production environment, even if the

Scorpio Prerelease Program

2007-04-09 Thread John Sterrett
Does anyone know if adobe shutdown the Scorpio beta testing? I know it might be late in the game but I would love to give it a run on our dev boxes. I signed up a few weeks ago and have not received a reply via email. Regards, John Sterrett Sr. Software Developer 55827 National Road

RE: CF7 Upgrade IIS6 Virtual Directory

2007-04-09 Thread Peterson, Chris
I think you probably need to run the batch file in the coldfusion root\bin\connectors\ directory to re-install coldlfusion on a global level. You want the file called iis_connector.bat, and you may want to run remove_all_connectors.bat first. This should configure each site you have to properly

Re: SPRY Help

2007-04-09 Thread Bobby Schuchert
Have you tried changing the encoding? ~| ColdFusion MX7 by AdobeĀ® Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV Archive:

RE: SPRY Help

2007-04-09 Thread Chad McCue
Not sure what it would be. -Original Message- From: Bobby Schuchert [mailto:[EMAIL PROTECTED] Sent: Monday, April 09, 2007 3:22 PM To: CF-Talk Subject: Re: SPRY Help Have you tried changing the encoding? ~|

gethttprequestdata question

2007-04-09 Thread Jerry Barnes
I am working on a project w/ several other programmers. Most of our forms use a component that requires gethttprequestdata to be passed in as an argument. This is causing a little problem for me because I have some post form processing which needs to be done to the data before it is passed to

Re: SPRY Help

2007-04-09 Thread Bobby Schuchert
Are you currently using UTF-8? This is dynamic xml right? Not sure what it would be. -Original Message- From: Bobby Schuchert [mailto:[EMAIL PROTECTED] Sent: Monday, April 09, 2007 3:22 PM To: CF-Talk Subject: Re: SPRY Help Have you tried changing the encoding?

Re: Scorpio Prerelease Program

2007-04-09 Thread Jochem van Dieten
John Sterrett wrote: Does anyone know if adobe shutdown the Scorpio beta testing? I know it might be late in the game but I would love to give it a run on our dev boxes. I signed up a few weeks ago and have not received a reply via email. Many people have not heard anything back. I would

Re: Scorpio Prerelease Program

2007-04-09 Thread Matt Robertson
first rule about beta club is you don't talk about beta club. :-) -- [EMAIL PROTECTED] Janitor, The Robertson Team mysecretbase.com ~| ColdFusion MX7 by AdobeĀ® Dyncamically transform webcontent into Adobe PDF with new

Re: Coldfusion Installation, is local server needed?

2007-04-09 Thread Peter Donahue
Hello Charlie and listers, Do you know if CF7 will run under Windows XP Home Edition? Thanks for the enlightenment. Peter Donahue - Original Message - From: Charlie Griefer [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Monday, April 09, 2007 1:54 PM Subject: Re:

Re: SPRY Help

2007-04-09 Thread Raymond Camden
Did you try xmlFormat? On 4/9/07, Chad McCue [EMAIL PROTECTED] wrote: Not sure what it would be. -Original Message- From: Bobby Schuchert [mailto:[EMAIL PROTECTED] Sent: Monday, April 09, 2007 3:22 PM To: CF-Talk Subject: Re: SPRY Help Have you tried changing the encoding?

CF Server and CFEclipse

2007-04-09 Thread Peter Donahue
Hello again Charlie and listers, If I install CFEclipse is the CF Server automatically installed or do I need to do that separately? Again thanks for the enlightenment. Peter Donahue - Original Message - From: Charlie Griefer [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com

Re: Good cf-compatible javascript library to handle dragable page sections

2007-04-09 Thread Jerry Johnson
Thanks, Jon, That is exactly what I was hoping for. I realize that a given javascript implementation is not always tied directly to the application server technology, but there are always favorites and people who've already done it I am hoping to piggyback onto. On 4/9/07, Jon Clausen [EMAIL

RE: Coldfusion Installation, is local server needed?

2007-04-09 Thread Dave Watts
Do you know if CF7 will run under Windows XP Home Edition? Yes, it will. If you want to use an external web server, you'll need Apache, since IIS isn't available with XP Home. But again, you don't need an external web server. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig

RE: CF Server and CFEclipse

2007-04-09 Thread Dave Watts
If I install CFEclipse is the CF Server automatically installed or do I need to do that separately? CF will need to be installed separately. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training

Re: Good cf-compatible javascript library to handle dragable page sections

2007-04-09 Thread Christopher Jordan
+1 for jQuery in general. :o) Cheers, Chris Jon Clausen wrote: Jerry, jQuery's interface plugin is very capable of doing that: http://docs.jquery.com/Plugins:Interface HTH, Jon On Apr 9, 2007, at 3:13 PM, Jerry Johnson wrote: Is there a cf-compatible javascript library that can

dbase III datasource in MX7

2007-04-09 Thread Paul Henderson
I recently upgraded one server from cf5 to mx7 but since doing so I can't seem to figure out how to setup a dbase III datasource. I don't have the option of migrating the data at all. Any suggestions? Thanks ~| Macromedia

Re: CF Server and CFEclipse

2007-04-09 Thread Robertson-Ravo, Neil (RX)
Seperate, ColdFusion is a server, CFEclipse is a plugin for the Eclipse IDE. This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is

RE: dbase III datasource in MX7

2007-04-09 Thread Paul Henderson
Scrap this I figured it out. Thanks. -Original Message- From: Paul Henderson [mailto:[EMAIL PROTECTED] Sent: Monday, April 09, 2007 4:34 PM To: CF-Talk Subject: dbase III datasource in MX7 I recently upgraded one server from cf5 to mx7 but since doing so I can't seem to figure out how

Re: Need help with grouped query and inner cfoutput

2007-04-09 Thread Will Tomlinson
Thanks Ali! I'm using mySQL. Adding a cfoutput group=answersetid did the trick. Thanks, Will ~| Create Web Applications With ColdFusion MX7 Flex 2. Build powerful, scalable RIAs. Free Trial

RE: Scorpio Prerelease Program

2007-04-09 Thread Ryan, Terrence
I doubt this violates NDA. But I'll still speak ambiguously just in case. Something I heard, from someone at Adobe, is that the Beta program queues up requests per Alpha/Beta release. So, if you made it before Adobe sent out the last batch of accounts, then you got in. If not, you have to

Re: CF7 Upgrade IIS6 Virtual Directory

2007-04-09 Thread John Allen
wow, thats super cool. THANKS! John Allen On 4/9/07, Peterson, Chris [EMAIL PROTECTED] wrote: I think you probably need to run the batch file in the coldfusion root\bin\connectors\ directory to re-install coldlfusion on a global level. You want the file called iis_connector.bat, and you may

Re: file do more than one scheduled task ??

2007-04-09 Thread Seamus Campbell
All the cfschedule feature does is hit your page with HTTP. So you can easily have a task also do a few CFHTTPs. Thanks Ray - I'll try that. ~| Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 Flex 2

Re: SOT: Invitation for Beta Testers

2007-04-09 Thread Paul Hastings
Jon Clausen wrote: 1) The ability to upload, convert, and export from a variety of GPS data formats(currently 43 supported) from GPS manufacturer formats to varying formats like CSV, Google Earth's KML or even VCard . what about coordinate systems datums? what's your standard, WGS84? can

Re: Hostmysite down...

2007-04-09 Thread Dave l
Some of that i agree with, like it should be better suited for shared access. But then again I have a crap load of sites running on my vps and there is no problems. I hate to say this to you but the only problems I seem to have are with your cart timing out constantly, I get those all the time

cfmx6.1 fckeditor

2007-04-09 Thread joe velez
hi all quick question regarding fckeditor i have it working, but im playing w/ the image paths and can't seem to figure out where the extra 'Image' path is coming from. lets say i want images in the /myimages/ directory. fck seems to change the link to /myimages/Image/imagename.ext -- anyone

Re: SOT: Invitation for Beta Testers

2007-04-09 Thread Rey Bango
Hey Jon, Glad to see another CF site using jQuery! Very cool. I'm going to add your site to the jQuery site list. Rey... Jon Clausen wrote: Sorry about being a bit off topic, but early this morning (or late last night if you will) I turned on the lights and opened up the public Beta of

Small Question: any vs viod

2007-04-09 Thread John Allen
Unimportant but i was curious if returntype=any was any faster than returntype=void? Is void typed checked at run time? I googled and found nothing (could be its been a long day), just a curious question. Thanks, John Allen and YOU ALL RULE!!! I LOVE COLDFUSION! SHOUT OUT TO TRANSFER |

Re: SOT: Invitation for Beta Testers

2007-04-09 Thread Jon Clausen
Paul, Currently it's only single points ( walk before you fly kind of thing ) at the moment.WGS84 is the only projection supported at the moment, for the sake of consistency. That's what Google is serving by default for the maps and it's the out-of-the-box default for most GPS units.

Re: SOT: Invitation for Beta Testers

2007-04-09 Thread Paul Hastings
Jon Clausen wrote: Currently it's only single points ( walk before you fly kind of thing ) at the moment.WGS84 is the only projection supported at the moment, for the sake of consistency. That's what Google is ok, but maybe you could add this as a note somewhere--it's the first thing

Poprety listing application

2007-04-09 Thread Mike | NZSolutions Ltd
Hi guys, I have an application where a member may list a property for a set period of time. The pricing options for a listing are set in... CREATE TABLE [dbo].[listing_rates] ( [listing_rate_id]int IDENTITY(1, 1) NOT NULL, [listing_category_id]int NOT NULL, [listing_price]decimal(9, 2)

Re: Poprety listing application

2007-04-09 Thread Mike Little
that should be 'property' by the way !! doh! ~| Upgrade to Adobe ColdFusion MX7 The most significant release in over 10 years. Upgrade see new features. http://www.adobe.com/products/coldfusion?sdid=RVJR Archive:

Re: SOT: Invitation for Beta Testers

2007-04-09 Thread Jon Clausen
Paul, Thanks again for the feedback. See my replies inline. Jon On Apr 9, 2007, at 11:36 PM, Paul Hastings wrote: ok, but maybe you could add this as a note somewhere--it's the first thing i wondered about. also i forgot to ask what the default units are? lat/long? Good point. I'll

Re: SOT: Invitation for Beta Testers

2007-04-09 Thread Jon Clausen
Thanks, Rey. I wish I'd gotten myself turned on to jQuery before I'd written about half the app using JSMX and custom Javascript. :-( I'm gradually shifting all of the javascript over to use jQuery as I continue to touch the files and scripts. Regards, Jon On Apr 9, 2007, at 10:14 PM,