Re: CF8 Tab Issue

2007-08-28 Thread stylo stylo
Here's the breakdown if interested, btw, just realized the web developer toolbar brings it all up nicely: Scripts (8 files) http://code.fraser.id.au/CFIDE/scripts/ajax/ext/ext-core.js 76 KB http://code.fraser.id.au/CFIDE/scripts/ajax/package/cfajax.js 34 KB http://code.fraser.id.au/CFIDE/sc

Re: Railo 2 Released

2007-08-28 Thread stylo stylo
>>My take is that for $300 you can run unlimited virtual hosts. Seems like a >>pretty fair price to me. Now, am I wrong? Seems wrong because you have to pay an extra $100/"web", they say. So running 5 sites means $700, etc. "By default with the Professional Version a single web (webapp) can b

Re: OT: Recommended Software for PC back-up to CD

2007-08-28 Thread Alex Symbest
>Any recommendations for backing up my development laptop to CD? Hi, I just wanted to say that there are numerous utilities that help you to http://www.handybackup.net/backup-to-сd.shtml";>back up to сd. For the last several years they became really cool and some of them are even worth buying

Re: CF8 Tab Issue

2007-08-28 Thread stylo stylo
Have you weighed up all those wondrous cf includes? ***258kbs***!!! It's insane. >>even with extJS you need to have just as many js includes as well. No, because you've got 3 CF-specific js files included to start. Then there's even a 60kb generic css file included. Yui is bloated but if yui/

RE: cfflush in CF 8

2007-08-28 Thread Doug Arthur
Ray, are you using IIS6 or IIS7? -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 28, 2007 9:09 AM To: CF-Talk Subject: Re: cfflush in CF 8 You got me there. Did you do anything else in the request that would have broken cfflush? On 8/28/07, Doug A

Re: Help with File Upload: AJAX and CFFILE

2007-08-28 Thread Aaron Roberson
Please go ahead and send me your example JavaScript and CF scripts. I will check swfUpload out. Thanks, Aaron On 8/28/07, Web Specialist <[EMAIL PROTECTED]> wrote: > > Aaron, > > I'll suggest you to use this great javascript and Flash utility to upload > several files. Works like a charm for me i

Re: Railo 2 Released

2007-08-28 Thread Sean Corfield
On 8/28/07, Vince Bonfanti <[EMAIL PROTECTED]> wrote: > Transfer ORM is supported in BD 7.0.1. We're wrapping up testing this week > and plan to release a public beta next week. That's good to know Vince, thank you! Did you actually run the suite of unit tests that comes with Transfer to ensure

Re: Help with File Upload: AJAX and CFFILE

2007-08-28 Thread Web Specialist
Aaron, I'll suggest you to use this great javascript and Flash utility to upload several files. Works like a charm for me integrated with CF backend. Very impressive! http://swfupload.mammon.se/ Cheers p.s.: If you need that scripts(javascript files and CF) please call me. ;-) 2007/8/28, Aaro

RE: Railo 2 Released

2007-08-28 Thread Rick Faircloth
Bummer! ImageFlare is a C++ tag? Well, so much for Railo. I do a lot of photography and need significant image handling capability with high quality. Rick -Original Message- From: Andrew Grosset [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 28, 2007 10:35 PM To: CF-Talk Subject: Re:

RE: Railo 2 Released

2007-08-28 Thread Rick Faircloth
But the question is... is CF8's image handling capabilities good enough for professionals... It would have to be at least as good as ImageFlare's quality to be useful. Rick -Original Message- From: Andrew Scott [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 28, 2007 9:54 PM To: CF-Talk

RE: how to end a session

2007-08-28 Thread Dave Watts
> I have to restrict the number of simultaneous > active sessions. Why? > However, can you plz confirm that the > corresponding session is cleared too, when > cookie is reset? No, actually it wouldn't. Clearing the cookies simply disconnects the browser from the session. There is no way to g

RE: Help with File Upload: AJAX and CFFILE

2007-08-28 Thread Dave Watts
> You're right, I'm just passing a string and not > actually submitting a form. But why can't I > assign the value of the string being passed to a > variable in the form scope? For security reasons, there are lots of restrictions with file uploads. You actually have to submit a form with a fil

RE: Railo 2 Released

2007-08-28 Thread Andrew Scott
Not if Railo has imaging built into it like CF8 has. Andrew Scott Senior Coldfusion Developer Aegeon Pty. Ltd. www.aegeon.com.au Phone: +613  8676 4223 Mobile: 0404 998 273 -Original Message- From: Andrew Grosset [mailto:[EMAIL PROTECTED] Sent: Wednesday, 29 August 2007 12:35 PM To:

Re: Railo 2 Released

2007-08-28 Thread Andrew Grosset
CFX_ImageFlare is a really good imaging tag written in C++ which I highly recommend. Andrew. ~| Check out the new features and enhancements in the latest product release - download the "What's New PDF" now http://download.macro

Re: how to end a session

2007-08-28 Thread Brian Dumbledore
>he's not using cookies tho... > > >> Thank u so much u both for prompt response.. So the above code you mentioned should go in application.cfm after cfapplication tag is put? I will try it anyway. thanks a lot... One followup question.. I have to restrict the number of simultaneous active sessi

RE: how to end a session

2007-08-28 Thread Dave Watts
> I do not use cookies, I use url based session > management, how do I tackle browser close > session ending? currently if they go to the history > and select the link > back, I am still logged in. > > Is there a way to detect browser close, like in > javascript can I do some sort of java: fin

Re: CF vs. PHP

2007-08-28 Thread James Holmes
On 8/29/07, Eric Haskins wrote: > >Got a question for you all. I've been a CF developer now since 2000. > >Previously, I used PHP and found it rather cumbersome. I'm currently > >working on a accounting project that my boss wants me to develop in PHP > >(because all he's ever used is Linux, PHP,

Re: Help with File Upload: AJAX and CFFILE

2007-08-28 Thread Aaron Roberson
Brian, You're right, I'm just passing a string and not actually submitting a form. But why can't I assign the value of the string being passed to a variable in the form scope? I also noted that much of the scripts out there for file upload with AJAX use iFrames. I have not never used iFrames with

Re: how to end a session

2007-08-28 Thread Charlie Griefer
he's not using cookies tho... On 8/28/07, Andrew Scott <[EMAIL PROTECTED]> wrote: > The best method is > > > > > > > > > > > > > On 8/29/07, Brad Wood <[EMAIL PROTECTED]> wrote: > > > > You could use the window onbeforeunload event to make an Ajax call back > > to the server to notify your a

Re: how to end a session

2007-08-28 Thread Andrew Scott
The best method is On 8/29/07, Brad Wood <[EMAIL PROTECTED]> wrote: > > You could use the window onbeforeunload event to make an Ajax call back > to the server to notify your app the session has ended. > > In general with url vars managing your session state you are probably > going to

RE: how to end a session

2007-08-28 Thread Brad Wood
You could use the window onbeforeunload event to make an Ajax call back to the server to notify your app the session has ended. In general with url vars managing your session state you are probably going to have some problems. Not to mention the url hacks someone could try to exact against your s

how to end a session

2007-08-28 Thread Brian Dumbledore
I do not use cookies, I use url based session management, how do I tackle browser close session ending? currently if they go to the history and select the link back, I am still logged in. Is there a way to detect browser close, like in javascript can I do some sort of java: finally {} which wi

RE: CF7 to CF8 upgrade or interoperability issues?

2007-08-28 Thread Brad Wood
What web server are you using? If you are using IIS or Apache, non-CF content is served directly to the browser without any CF intervention. If you are using the built-in java web server, then all http requests are processed by JRun. In the latter case I could see CF effecting that, but not in t

Re: CF7 to CF8 upgrade or interoperability issues?

2007-08-28 Thread Jake Pilgrim
CF shouldn't be caching these files... I would suspect that the caching issue lies within your browser or your webserver (IIS). However, if clicking 'clear template cache' is resolving your issue, just set the maximum number of cached templates to 0. ~~

RE: Reg ex question

2007-08-28 Thread Bobby Hartsfield
rereplace(str, "&.*?;", "", "all") Basically it says... replace anything that starts with & and everything it finds until the first occurrence of ; ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Smith, Daron [PA] [mailto:[EMAIL PROT

Re: CF7 to CF8 upgrade or interoperability issues?

2007-08-28 Thread Alan Rother
Yeah, it's either DW, your browser or even IIS caching CSS and Images. On 8/28/07, Brian Kotek <[EMAIL PROTECTED]> wrote: > CF doesn't cache images or CSS files. > > On 8/28/07, Jason Durham <[EMAIL PROTECTED]> wrote: > > > > > I'm having a terrible time with DW8 and CF8 on my development box (s

Re: CF8 returns float value in query

2007-08-28 Thread Aaron Rouse
Yeah, for some reason I am thinking Oracle will not let you but do not have access presently to test it. I think you have to make another column and move it over method. On 8/28/07, Brian Kotek <[EMAIL PROTECTED]> wrote: > > It probably depends on the database. It might not let you, or it might l

Re: CF7 to CF8 upgrade or interoperability issues?

2007-08-28 Thread Brian Kotek
CF doesn't cache images or CSS files. On 8/28/07, Jason Durham <[EMAIL PROTECTED]> wrote: > > I'm having a terrible time with DW8 and CF8 on my development box (single > developer edition PC). CF8 is holding images and CSS files in cache which > is preventing me from editing/saving files while t

RE: cfflush in CF 8

2007-08-28 Thread Doug Arthur
Is the issue possibly IIS7 within Vista? And if so, does anyone know of a workaround? Thanks, Doug -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 28, 2007 9:33 AM To: CF-Talk Subject: Re: cfflush in CF 8 Doug Arthur wrote: > Thanks Ray, I'm us

Re: CF8 returns float value in query

2007-08-28 Thread Brian Kotek
It probably depends on the database. It might not let you, or it might let you with a warning that all the data will be truncated. If not, you might have to create a new column, copy the data with the appropriate rounding, then drop the old column and rename the new one to match the old one. On 8/

Re: CF7 to CF8 upgrade or interoperability issues?

2007-08-28 Thread Jason Durham
>I'm thinking of upgrading one of my sites to CF8, but I still have several >that are on CF7. I have a single development environment and don't want to >scr_w myself, but I want to upgrade my dev environment to CF8 so I can start >migrating this one site over. Apart from staying away from new CF8

Re: Reg ex question

2007-08-28 Thread Ben Doom
Sure. Before I get into that, I might suggest the DeMoronizer, if your problem is mostly with Word characters sneaking in. The regular expression for something that starts with a pound sign and ends with a semicolon with only letters or numbers could look like one of the following: ##\w; ##[a

Re: CF8 returns float value in query

2007-08-28 Thread Aaron Rouse
Erf, tried to correct it but hit send a little too quickly. Meant to type "Once that" instead of "Was that" On 8/28/07, Aaron Rouse <[EMAIL PROTECTED]> wrote: > > Was that datatype is set and the column is populated will it let you > change the scale to a number lower than what it has? > > On 8/2

Re: CF8 returns float value in query

2007-08-28 Thread Aaron Rouse
Was that datatype is set and the column is populated will it let you change the scale to a number lower than what it has? On 8/28/07, Brian Kotek <[EMAIL PROTECTED]> wrote: > > If the scale is set to 4 in the database then four decimal places is the > correct value. Either CF7 or the JDBC driver t

Re: MySQL FullText search with CFQUERY?

2007-08-28 Thread Les Mizzell
>> >> SELECT field1, field2 >> FROM myTABLE >> WHERE MATCH (field1, field2) >> AGAINST ('#form.searchINPUT#') >> > cfqueryparam ! I know! I know! I was just presenting things in their most simple form ~| ColdF

RE: FCK Styles

2007-08-28 Thread Bruce Sorge
OK, I figured it out. I was formatting the attributes wrong. This works: Bruce -Original Message- From: Billy Cox Sent: Tuesday, August 28, 2007 12:26 PM To: CF-Talk Subject: RE

Re: Help with File Upload: AJAX and CFFILE

2007-08-28 Thread Brian Kotek
You can't do this in the way you are attempting. You're not actually submitting the form, you're just passing a string. If you Google around, you'll see that all of the AJAX file upload libraries use iFrames (such as http://www.webtoolkit.info/ajax-file-upload.html). I'd try to follow that approach

Reg ex question

2007-08-28 Thread Smith, Daron [PA]
I want to do a reg ex replace to remove all special text characters from an XML feed, I"ve been doing but I keep finding more characters to replace so my list is getting longer, can I do some sort of regex find and replace any string that starts with an & and ends with a ; ? Any help would be ap

Re: Help with File Upload: AJAX and CFFILE

2007-08-28 Thread Brian Kotek
How does the Ajax.Request call know which form you want to post? On 8/28/07, Aaron Roberson <[EMAIL PROTECTED]> wrote: > > I'm having a problem trying to use AJAX (with the Prototype framework) > with > the cffile tag to upload files to the server. The problem seems to be > related to the fact tha

RE: FCK Styles

2007-08-28 Thread Bruce Sorge
OK, I narrowed it down to the new styles that I am putting in. Here they are:

Re: CF8 returns float value in query

2007-08-28 Thread Brian Kotek
If the scale is set to 4 in the database then four decimal places is the correct value. Either CF7 or the JDBC driver that CF7 uses must have been dropping the extra decimal places, but that was technically incorrect behavior. If you don't want four decimal places, you should change the column data

RE: FCK Styles

2007-08-28 Thread Billy Cox
Check the FCKConfig.StylesXmlPath property in fckconfig.js to make sure that you are editing the XML file that FCKeditor is actually using. -Original Message- From: Bruce Sorge [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 28, 2007 2:07 PM To: CF-Talk Subject: RE: FCK Styles Did all

RE: FCK Styles

2007-08-28 Thread Bruce Sorge
Did all that. Even opened a completely different browser, and still no change. Oh well, I guess I will keep digging through the docs until I find something. Thanks, Bruce -Original Message- From: Jim Wright Sent: Tuesday, August 28, 2007 11:46 AM To: CF-Talk Subject: Re: FCK Styles ~~

Re: FCK Styles

2007-08-28 Thread Jim Wright
> > When I go to my browser to edit the page, I do not see this new attribute. > Likewise if I remove a style that is already there, it still shows in the > editor. From what I am reading I am changing the correct file. Is anyone > else having similar issues? > > Try clearing your browser cache or

Fwd: CF8 returns float value in query

2007-08-28 Thread Asim Manzur
Ray, When I use the cfoutput I also get the same result as on the dump i.e. project_id shows 346 in Database, in Dump it shows 346. and in cfoutput it also shows up as 346. thanks, ~| ColdFusion is delivering application

Re: CF8 returns float value in query

2007-08-28 Thread Asim Manzur
Ray, When I use the cfoutput I also get the same result as on the dump i.e. project_id shows 346 in Database, in Dump it shows 346. and in cfoutput it also shows up as 346. thanks, >But did you see my question though. Is this output ONLY in cfdump? > >If you output it in a normal cfout

Re: CF8 returns float value in query

2007-08-28 Thread Aaron Rouse
>From what I recall, what I did when the similar issue happened to me is I just used the round function within Oracle and in my queries. Something like SELECT ROUND(ID) ID FROM MYTABLE I probably either did that or I made a view which did something similar. I do not recall any CF settings for it

Re: CF8 returns float value in query

2007-08-28 Thread Asim Manzur
Thanks Aaron, Yes the scale and precision has been set in the oracle database. Now the question is I don't want to change the DB structure, is there anyway to tell coldfusion to ignore the precision and scale? Will appriciate your responses. thanks, >Is the scale for the number column perhap

Re: CF8 returns float value in query

2007-08-28 Thread Raymond Camden
But did you see my question though. Is this output ONLY in cfdump? If you output it in a normal cfoutput does it output ok? On 8/28/07, Asim Manzur <[EMAIL PROTECTED]> wrote: > Thanks for your reply Ray, > The problem is my values changed here in CF8. > > This query runs on CF7 and returns me val

FCK Styles

2007-08-28 Thread Bruce Sorge
OK, so I am using the cftextarea with the richtext attribute set to true. I want to add my own styles to the editor, so I go to the following location: C:\Inetpub\wwwroot\CFIDE\scripts\ajax\FCKeditor\editor\fckstyles.xml and add a new style: Whe

Re: CF8 returns float value in query

2007-08-28 Thread Asim Manzur
Thanks for your reply Ray, The problem is my values changed here in CF8. This query runs on CF7 and returns me value lets say 346 I am using this value to the next query to pulling up the projects. now in CF8 this value in the query object returns 346.0 I can't go and change 325 values to ro

Re: CF vs. PHP

2007-08-28 Thread Eric Haskins
>Got a question for you all. I've been a CF developer now since 2000. >Previously, I used PHP and found it rather cumbersome. I'm currently >working on a accounting project that my boss wants me to develop in PHP >(because all he's ever used is Linux, PHP, mySQL). Really? I found the exact oppo

Re: CF8 returns float value in query

2007-08-28 Thread Aaron Rouse
Is the scale for the number column perhaps set to 4? I know in some prior version of CF we had some values from Oracle start showing up with one decimal place and it was due to a driver change in CF and how our columns were defined in the database. I thought though when that happened we had no pr

Help with File Upload: AJAX and CFFILE

2007-08-28 Thread Aaron Roberson
I'm having a problem trying to use AJAX (with the Prototype framework) with the cffile tag to upload files to the server. The problem seems to be related to the fact that the enctype attribute of the upload form must be specified with the value of multipart/form-data. That specification requires th

Re: CF8 returns float value in query

2007-08-28 Thread Raymond Camden
If it is just a dump change, then why do you care? Ie, is it still ok in a simple cfoutput? cfdump is a debugging tool and changes from version to version, so expectations on how it looks/displays may not always be a good idea. On 8/28/07, Asim Manzur <[EMAIL PROTECTED]> wrote: > I have a same ru

Re: Auto refresh new form field

2007-08-28 Thread Matt Williams
Or just a 2 select related type deal. Depending on how many colleges are in your list, it would be a lot of pre-loaded data, but doable. http://www.google.com/search?hl=en&q=coldfusion+related+selects Matt On 8/28/07, Raymond Camden <[EMAIL PROTECTED]> wrote: > Have you looked at CF8's ajax stuf

download coldfusion 6.1 developer ed.

2007-08-28 Thread Paul Ihrig
i need it for testing older code. cant find a dl any where. ideas, other then wack book & mx studio instal -paul ~| Check out the new features and enhancements in the latest product release - download the "What's New PDF" now ht

CF8 returns float value in query

2007-08-28 Thread Asim Manzur
I have a same running in cf7 and cf8 CF7 dump shows it have int values like 1 and 2 and 3 etc. CF8 dump shows that the values being returned as 1. and 2. and 3. etc Can someone help please? Is there any settings that I need to change? Using Oracle Database. -- ..

RE: auto refresh new form field

2007-08-28 Thread Robert Harrison
One thought... each college is generally in a given state. Have the select a state first, then present a list of all colleges in that state. Use a page of links instead of a drop down list, that way a long list won't seem so dauntingly long. Robert B. Harrison Director of Interactive services Aus

Re: Auto refresh new form field

2007-08-28 Thread Raymond Camden
Have you looked at CF8's ajax stuff? It would allow for this. Otherwise - you can try Spry as well. On 8/28/07, Jim Harmer <[EMAIL PROTECTED]> wrote: > I'm a beginner and I'm having the hardest time with inserting a record to the > database from a form. The problem is that I want the site to be

Re: Auto refresh new form field

2007-08-28 Thread Phillip M. Vector
You would need some AJAX action for that. Look up how to set it up. Basically, you want to run a querry that takes the state and pulls all the schools from that state and populates the dropdown field with the records. Jim Harmer wrote: > I'm a beginner and I'm having the hardest time with inser

auto refresh new form field

2007-08-28 Thread Jim Harmer
I'm a beginner and I'm having the hardest time with inserting a record to the database from a form. The problem is that I want the site to be open to all colleges across the nation. I have a list of all of the colleges, but it's WAY too many for a pick list. I know how to have them search the

Auto refresh new form field

2007-08-28 Thread Jim Harmer
I'm a beginner and I'm having the hardest time with inserting a record to the database from a form. The problem is that I want the site to be open to all colleges across the nation. I have a list of all of the colleges, but it's WAY too many for a pick list. I know how to have them search the

Re: CF8 Tab Issue

2007-08-28 Thread James Holmes
Yeah, we'll have to team it up with JQuery won't we :-) On 8/28/07, Rey Bango <[EMAIL PROTECTED]> wrote: > Just wait till you see Ext 2.0. ;) > -- mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ ~~~

RE: Version of Java for CF and Adobe's Suite of products?

2007-08-28 Thread Dave Watts
> What's the benefit of using _13 over _11? I need something > to through at management to cover the "why" questions. Well, each version fixes bugs in previous versions. If 11 is working fine for you, though, there's no specific reason I can give you to upgrade. Dave Watts, CTO, Fig Leaf Softwa

Re: Still having "POST converted to GET" errors

2007-08-28 Thread Claude Schneegans
>>I've seen IE do this, when you fix URL variables in a POST'ed form, and it was going to an older version of FuseBox (3, iirc). Actually I think I have found the problem. My fault. When a logged user's session dies after 2 hours of inactivity, the user will be redirected to the login gate. Aft

Re: Problem uploading file from form in cfdiv

2007-08-28 Thread Steve Sequenzia
Yeah I was thinking about doing it with a pop window but I was trying to avoid doing that, I might have to though. Thanks for the help. Anyone else have any ideas? >I hate to suggest it- but the only thought that comes to mind is a >popup window. PLEASE know that I bet there is a better solution

Re: cfflush in CF 8

2007-08-28 Thread Jochem van Dieten
Doug Arthur wrote: > Thanks Ray, I'm using code compatible in CF6 & CF7. My question now is, why > would it not work in my installation and it would work in yours? Because you are connecting through IIS and IIS buffers too? Jochem ~

Re: CF8 Tab Issue

2007-08-28 Thread Rey Bango
Just wait till you see Ext 2.0. ;) Rey James Holmes wrote: > Ah, now that's interesting - things broke after the release candidate > I guess. Thanks for the info - we currently use the latest version of > Ext anyway, so these sound like more reasons to stick with it. > > On 8/28/07, Andrew Scott

Re: cfflush in CF 8

2007-08-28 Thread Raymond Camden
You got me there. Did you do anything else in the request that would have broken cfflush? On 8/28/07, Doug Arthur <[EMAIL PROTECTED]> wrote: > Thanks Ray, I'm using code compatible in CF6 & CF7. My question now is, why > would it not work in my installation and it would work in yours? > > I just d

RE: cfflush in CF 8

2007-08-28 Thread Doug Arthur
Thanks Ray, I'm using code compatible in CF6 & CF7. My question now is, why would it not work in my installation and it would work in yours? I just downloaded CF8 from Adobe's website over the weekend and installed it as a Multiserver JRun4 install. Thanks, - Doug -Original Message- From

Re: CF8 Tab Issue

2007-08-28 Thread James Holmes
Ah, now that's interesting - things broke after the release candidate I guess. Thanks for the info - we currently use the latest version of Ext anyway, so these sound like more reasons to stick with it. On 8/28/07, Andrew Scott <[EMAIL PROTECTED]> wrote: > The bugs never existed in the beta or pub

Re: Problem uploading file from form in cfdiv

2007-08-28 Thread Raymond Camden
I hate to suggest it- but the only thought that comes to mind is a popup window. PLEASE know that I bet there is a better solution - I just don't know it. On 8/27/07, Steve Sequenzia <[EMAIL PROTECTED]> wrote: > Ray, > > Thanks for the help. That makes sense, but I have a pretty big issue. I am >

Re: Railo 2 Released

2007-08-28 Thread Raymond Camden
Gert - good point there. On 8/27/07, Gert Franz <[EMAIL PROTECTED]> wrote: > Then why is there querySetCell(). > You can use qry.age[1] = 50 as well. > > Or why in other engines there is a ListFind() but no ArrayFind()? Or a > ListToArray() but no ListToStruct() or ArrayToStruct()? > > Our functio

Re: Railo 2 Released

2007-08-28 Thread Vince Bonfanti
> >like BlueDragon, it does not support Transfer ORM >which is a deal-breaker for me since I use that framework on all of my >projects. > Hi Sean, Transfer ORM is supported in BD 7.0.1. We're wrapping up testing this week and plan to release a public beta next week. Vince Bonfanti http://www.ne

RE: Railo 2 Released

2007-08-28 Thread Rick Faircloth
Hi, Sean... CFX_JPG from www.efflare.com... it's a C++ tag. I've been using it for years and it's a great tag for on-the-fly, high-quality resizing, etc., of .jpg images. I bought it when efflare still sold it. It's a pity they still don't offer it. It was $49 then. If I can host multiple virt

Re: decrypting

2007-08-28 Thread Tom Chiverton
On Monday 27 Aug 2007, [EMAIL PROTECTED] wrote: > Any ideas what this means? People type/edit/click broken links ? -- Tom Chiverton Helping to carefully architect eye-catching portals on: http://thefalken.livejournal.com This email is sent

Re: CF8 Tab Issue

2007-08-28 Thread Andrew Scott
The bugs never existed in the beta or public release. On 8/28/07, James Holmes <[EMAIL PROTECTED]> wrote: > > "And this is in the first 5 minutes of my attempt to use Coldfusion 8." > > Was that 5 minutes during the beta and were the bugs reported in the > bug tracker? > > On 8/28/07, Dale Frase

Re: CF8 Tab Issue

2007-08-28 Thread James Holmes
"And this is in the first 5 minutes of my attempt to use Coldfusion 8." Was that 5 minutes during the beta and were the bugs reported in the bug tracker? On 8/28/07, Dale Fraser <[EMAIL PROTECTED]> wrote: > Worked for me. > > You should get your blog in some aggregators then people might become m

RE: CF8 Tab Issue

2007-08-28 Thread Dale Fraser
Worked for me. You should get your blog in some aggregators then people might become more aware of these issues you have raised. Regards Dale Fraser http://dalefraser.blogspot.com -Original Message- From: Andrew Scott [mailto:[EMAIL PROTECTED] Sent: Tuesday, 28 August 2007 6:54 PM To:

Re: MySQL FullText search with CFQUERY?

2007-08-28 Thread Tom Chiverton
On Friday 24 Aug 2007, [EMAIL PROTECTED] wrote: > > > > SELECT field1, field2 > > FROM myTABLE > > WHERE MATCH (field1, field2) > > AGAINST ('#form.searchINPUT#') > > cfqueryparam ! -- Tom Chiverton Helping to seamlessly iterate revolutionary web-readiness on: http://thefalken.livejour

Re: Still having "POST converted to GET" errors

2007-08-28 Thread Tom Chiverton
On Thursday 23 Aug 2007, [EMAIL PROTECTED] wrote: > I'm not setting the method via JS, my JS code is just checking the > method on submit and just add it to the url parameters. > By the way the method IS POST indeed in the browser. I've seen IE do this, when you fix URL variables in a POST'ed form

Re: CF8 Tab Issue

2007-08-28 Thread Andrew Scott
Yeah this hosting provider is really pissing me off, with their database server. On 8/28/07, James Holmes <[EMAIL PROTECTED]> wrote: > > Still broken... > > On 8/28/07, Andrew Scott <[EMAIL PROTECTED]> wrote: > > > BTW you might want to look at my Blog for other small issues. > > > > > http://ww

Re: [coldspring-dev] remoteProxy duplicate routines

2007-08-28 Thread Tom Chiverton
On Monday 20 Aug 2007, [EMAIL PROTECTED] wrote: > The scenario is: > Service.cfc has a function called save() > FooService.cfc extends Service.cfc and overrides save() with its own > function called save() > > The problem is: > The FooService:RemoteProxyBean which gets generated has the save() func

Re: CF8 Tab Issue

2007-08-28 Thread James Holmes
Still broken... On 8/28/07, Andrew Scott <[EMAIL PROTECTED]> wrote: > BTW you might want to look at my Blog for other small issues. > > http://www.andyscott.id.au/index.cfm/2007/8/10/Coldfusion-8-and-Ajax-UI-prob > lems -- mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.a

Re: CF vs. PHP

2007-08-28 Thread James Holmes
Hehe - have you made any further progress on that project Sean? I had a play and recompiled certain bits of Quercus to deploy it standalone inside Jrun, but didn't do much else. On 8/28/07, Sean Corfield <[EMAIL PROTECTED]> wrote: > On 8/27/07, Chris Martin <[EMAIL PROTECTED]> wrote: > > Now it's

Re: Railo 2 Released

2007-08-28 Thread Paul Hastings
Sean Corfield wrote: > What sort of "killer" C++ CFX tags are you folks using? the only C++ cfx tag i ever see these days is one from esri to talk to it's arcIMS "map server" product. we stopped using it years ago in favor of CFC wrapping up a java connector that does more or less the same thing

RE: CF8 Tab Issue

2007-08-28 Thread Andrew Scott
Now that's funny You add support for a very low browser usage, and yet you can't add support for Vista 64bit. BTW you might want to look at my Blog for other small issues. http://www.andyscott.id.au/index.cfm/2007/8/10/Coldfusion-8-and-Ajax-UI-prob lems Andrew Scott Senior Coldfusion Deve

Re: Railo 2 Released

2007-08-28 Thread Gert Franz
I am of the same opinion. The decision to support C++ tags by Railo is made by the requests from the community. And by now we had around 5 requests for this feature. The way of implementation for us is clear. But it takes time we have not at the moment since other things on our list need to be s

Re: Railo 2 Released

2007-08-28 Thread David Low
Sean Corfield wrote: > Hmm, I've never needed to use a C++ tag with CFML. I think I've only > used one Java CFX tag ever. > > What sort of "killer" C++ CFX tags are you folks using? I'd go along with that - I've often found myself removing CFX tags which were purely in use as a 'quick fix'. Suc

Re: Railo 2 Released

2007-08-28 Thread Sean Corfield
On 8/27/07, Rick Faircloth <[EMAIL PROTECTED]> wrote: > But, I know for me, one killer function that is missing > is the support for CFX tags. Hmm, I've never needed to use a C++ tag with CFML. I think I've only used one Java CFX tag ever. What sort of "killer" C++ CFX tags are you folks using? -

Re: CF vs. PHP

2007-08-28 Thread Sean Corfield
On 8/27/07, Chris Martin <[EMAIL PROTECTED]> wrote: > Now it's been 7 years since I've done any PHP development. Am I being > ignorant by thinking the only reason why this guy wants me to develop in > PHP is for his own job security (since he doesn't know CF)? Or is > legitimate to keep "consiste