RE: cfif vs cfswitch

2007-01-29 Thread Eric Roberts
I remember in a previous discussion about cfif vs cfswitch that it was determined that there really wasn't much of a difference, performance wise between the 2...it basically came down to a matter of choice. I personally prefer cfif's...but that is a personal preference... Eric -Original Mess

Re: Line Breaks in Plain Text CFMail - GRRR!

2007-01-29 Thread Casey Dougall
Your Code Should Look Like This On 1/29/07, Mark Leder <[EMAIL PROTECTED]> wrote: > > >> Instead of doing all your s etc within the tag - do it > all > prior to the tag, and build up your content within a variable, > just > the way you want to. That'll avoid any extra linefeeds et

College/University Resources

2007-01-29 Thread todd sharp
Anyone know of a webservice or database listing information about every college/university in the US? Couldn't find anything on Google. Just looking for general information - school name, maybe address - just demographic type info. ~

RE: Line Breaks in Plain Text CFMail - GRRR!

2007-01-29 Thread Mark Leder
>> Instead of doing all your s etc within the tag - do it all prior to the tag, and build up your content within a variable, just the way you want to. That'll avoid any extra linefeeds etc. Then just spit out that variable in the tag, within the bits if that's the route you're going. Both you

Re: DailyRazor hosting comments?

2007-01-29 Thread Doug Brown
Yuck!!! Per their terms and conditions SUPPORT : Technical support is provided via email and chat only. Any personal phone or other direct support will be for an extra charge.The first contact with UCVHost Technologies is through email. The client agrees not to Spam our support staff and to follow

Re: Copying specific company data to a new database...

2007-01-29 Thread Scott Weikert
I've got a script (used as a custom tag) that is built for SQL Server, that will do a cascading database delete, calling itself as often as necessary, based on the original record you want to delete. It requires that the DB tables be properly set up with foreign keys etc. The script digs around

Re: CF: Templates

2007-01-29 Thread James Holmes
You can re-create the templates easily by saving an example file as a template and clearing out all of the editable regions and the template instance code. On 1/30/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > All, > > I'm working on a old site that was created using DW templates. The develo

RE: Copying specific company data to a new database...

2007-01-29 Thread houseoffusion
I use a tool called ApexSQL Diff. It's really useful for scripting changes between two databases (both data a structure). Therefore making it relatively easy when moving between development / staging and production servers. The tool is available from http://www.apexsql.com/sql_tools_diff.asp Ni

Re: cfif vs cfswitch

2007-01-29 Thread Will Tomlinson
Ok, now I'd like to know how your boss knew this, and most of us didn't on the list! lol! Will ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs http:http://ad.doublec

Re: cfif vs cfswitch

2007-01-29 Thread Doug Brown
Still waiting to hear if this was involved with CFMX7. I would really hate this sense all my apps use cfswitch for template switching. :-( Doug B. - Original Message - From: "Josh Nathanson" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Monday, January 29, 2007 3:19 PM Subject: Re: cfif vs

Re: cfif vs cfswitch

2007-01-29 Thread Matt Robertson
On 1/29/07, Josh Nathanson <[EMAIL PROTECTED]> wrote: > As usual Jochem is the final word...very good to know that! Holy cow. Indeed. Thanks Jochem. I am cringing at all of the code I have running under switches under the supposition that its more efficient code. Hell... thats what a case stat

Re: cfif vs cfswitch

2007-01-29 Thread Josh Nathanson
As usual Jochem is the final word...very good to know that! Hopefully this will be addressed in CF8. - Original Message - From: "Josh Nathanson" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Monday, January 29, 2007 2:05 PM Subject: Re: cfif vs cfswitch > What issues could there be? It ei

Re: cfif vs cfswitch

2007-01-29 Thread Matt Robertson
just say yes to switch / case. I'm not aware of any issues but I'd be happy to learn something new today. -- [EMAIL PROTECTED] Janitor, The Robertson Team mysecretbase.com ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 &

CF: Templates

2007-01-29 Thread coldfusion . developer
All, I'm working on a old site that was created using DW templates. The developer did not leave the original templates behind and I have no templates to make changes from. When I try to make global search and replace within DreamWeaver I'm unable to make any changes to code, in code view that

Re: cfif vs cfswitch

2007-01-29 Thread Josh Nathanson
What issues could there be? It either works or it doesn't. It's not like CFDocument or something where there are a whole bunch of moving parts involved. He could be questioning the speed, but if anything I would imagine a cfswitch would be quicker than a bunch of cfif/cfelse statements, since

Re: cfif vs cfswitch

2007-01-29 Thread Jochem van Dieten
Cutter (CFRelated) wrote: > Recently I rewrote one of the templates within our massive system. The > template had two large cfif/cfelseif blocks that appeared better suited > for switch/case statements, which I implemented in cfscript. When my > boss saw this he said that there were issues with

RE: DailyRazor hosting comments?

2007-01-29 Thread Andy Matthews
A co-worker suggested another site: http://www.ucvhost.com/cfmx_hosting.htm Anyone heard of them/have experience with them? -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Monday, January 29, 2007 2:09 PM To: CF-Talk Subject: DailyRazor hosting comments? I saw s

Re: cfif vs cfswitch

2007-01-29 Thread Jerry Johnson
New to me, too. On 1/29/07, Cutter (CFRelated) <[EMAIL PROTECTED]> wrote: > > Recently I rewrote one of the templates within our massive system. The > template had two large cfif/cfelseif blocks that appeared better suited > for switch/case statements, which I implemented in cfscript. When my > bo

Re: cfif vs cfswitch

2007-01-29 Thread RobG
Cutter (CFRelated) wrote: > Recently I rewrote one of the templates within our massive system. The > template had two large cfif/cfelseif blocks that appeared better suited > for switch/case statements, which I implemented in cfscript. When my > boss saw this he said that there were issues with

Re: cfif vs cfswitch

2007-01-29 Thread Charlie Griefer
On 1/29/07, Cutter (CFRelated) <[EMAIL PROTECTED]> wrote: > Recently I rewrote one of the templates within our massive system. The > template had two large cfif/cfelseif blocks that appeared better suited > for switch/case statements, which I implemented in cfscript. When my > boss saw this he said

Re: Next N Interface Recommendations

2007-01-29 Thread Jochem van Dieten
Richard Dillman wrote: > Not to throw a monkey in the wrench. But what if you wanted to do Pagination > AND allow column sorting per page? I prefer to do a primary sorting and pagination with a cursor or a LIMIT / OFFSET in the database, and allow the user to sort on the page with javascript. J

cfif vs cfswitch

2007-01-29 Thread Cutter (CFRelated)
Recently I rewrote one of the templates within our massive system. The template had two large cfif/cfelseif blocks that appeared better suited for switch/case statements, which I implemented in cfscript. When my boss saw this he said that there were issues with switch/case in CF, and I have com

Re: Showing actual used value from cfqueryparam tag

2007-01-29 Thread Jochem van Dieten
Andy Matthews wrote: > Cfoutput the query, replace the query params with the values being passed > in. Or, if you're using MX7, there's a variable that gets returned with > every query which shows you the exact statement sent to the db server. > > [Queryname].sql Unfortunately, that only gives y

OT: Flash .sol viewer

2007-01-29 Thread Turetsky, Seth
Usually I'll do a remoting call to upload any data I store in flash's cookies(.sol files), but I have a little project I don't want to spend much time on, so I just want to manually grab and view the data in the sol file, but it's binary. I see Actionscript Viewer can do this, so I downloaded t

Re: Bookmarks in CFEclipse?

2007-01-29 Thread Kris Jones
Don't know about the shortcut, but the bookmarks have these little yellow -- bookmarks I guess you'd call them -- in the right-hand gutter, that when clicked on will jump to the line. Very handy. You can also mark ToDo items similarly. > Sweet. Is there a built in shortcut to right clicking in the

DailyRazor hosting comments?

2007-01-29 Thread Andy Matthews
I saw someone post about Daily Razor recently and wanted to see if anyone had comments on them (positive or negative are welcome). They seem to fit my needs in that they say they allow multiple domain names per account. Although whether that's 8 domains pointing to the same code, or 8 completely

Re: database JOIN question

2007-01-29 Thread Jim Wright
daniel kessler wrote: > Would another good way to do this be to group all the ANDs (assuming that > they have content to use in the query) together in parens and then have all > the ORs following? > > 1=1 AND (UPPER(n.meeting_name) LIKE '%somevalue%' AND UPPER(n.type) LIKE > '%anothervalue%')

Re: Going back in browser cache shows super old page

2007-01-29 Thread Jacob Munson
Sounds like a browser bug, when they hit 'Back' it's not doing anything with your server. I've run into a lot of caching issues in IE, even data from forms being cached. It's rather annoying, if you ask me. :) On 1/29/07, Jonathan Block <[EMAIL PROTECTED]> wrote: > I just got this from one of m

Re: database JOIN question

2007-01-29 Thread daniel kessler
Would another good way to do this be to group all the ANDs (assuming that they have content to use in the query) together in parens and then have all the ORs following? 1=1 AND (UPPER(n.meeting_name) LIKE '%somevalue%' AND UPPER(n.type) LIKE '%anothervalue%') OR UPPER(n.notes) LIKE '%thirdvalu

RE: using createobject (or javaloader.cfc) and OpenAMF to have CF talk Server to Server in AMF?

2007-01-29 Thread Dave Watts
> thanks, but i'm not really interested in debating whether or > not this should be done - just more time i won't get back :) I'm not really interested in debating it either. I was curious why you wanted to do it. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software prov

RE: Bookmarks in CFEclipse?

2007-01-29 Thread Andy Matthews
Sweet. Is there a built in shortcut to right clicking in the gutter? Also, do you know if there's a shortcut for jumping between bookmarks? -Original Message- From: Doug Bezona [mailto:[EMAIL PROTECTED] Sent: Monday, January 29, 2007 12:44 PM To: CF-Talk Subject: RE: Bookmarks in CFEclips

Re: using createobject (or javaloader.cfc) and OpenAMF to have CF talk Server to Server in AMF?

2007-01-29 Thread jerad sloan
>> howdy all...i've become a little fixated on the idea of using >> AMF and CF to talk server to server (and possibly to consume >> webservices)...i spent about 10 hours yesterday exploring >> different possible ways to do this, the most promising seems >> to be the idea of using OpenAMF. > >Wh

Re: database JOIN question

2007-01-29 Thread Deanna Schneider
It is quite readable, but Jim was just using it to illustrate what you're doing with the subquery, which is the way you really should be doing it in this situation. It doesn't make sense to do 2 round-trips to the database when one will do. On 1/29/07, daniel kessler <[EMAIL PROTECTED]> wrote: >

RE: Bookmarks in CFEclipse?

2007-01-29 Thread Doug Bezona
Yes. There's a "bookmarks" view (Window -> Show view ...) Select the text, then simply right-click on the "gutter" to the left (where the line numbers show) and select "add bookmark". Then you can simply double-click on the bookmark in the bookmark pane to jump to it. > -Original Message--

Re: database JOIN question

2007-01-29 Thread daniel kessler
alright - I see why it doesn't need to do a JOIN. but just to be sure I understand, the line: n.n_r_id IN (#idlist#) All it does is say give me everything in the subquery - it seems to me. And really, that's just making two sets of records into one set - which is a cool idea and very readable.

Bookmarks in CFEclipse?

2007-01-29 Thread Andy Matthews
When I used Editplus, there was a feature whereby I could place my cursor on a line and "bookmark" that line. It would remember that setting (only until the file was closed) and would allow you to quickly jump from bookmark to bookmark. It helped when you were referencing code that was too far apar

Going back in browser cache shows super old page

2007-01-29 Thread Jonathan Block
I just got this from one of my users: -- "I'm sure you've noticed this, too, but when you try to navigate backwards on the site -- say you were reading a full artcile and wanted to click the "go back" button on your browser and view the\ home page -- the site takes you to a homepage that i

RE: Showing actual used value from cfqueryparam tag

2007-01-29 Thread Ben Nadel
Eric, Here is a browser bookmarklet that will merge your CFDebugging SQL and the query param (if that helps at all). http://bennadel.com/index.cfm?dax=blog:459.view Of course, this only works if debugging is turned on. .. Ben Nadel Certified Advanced ColdFusion MX7 Develop

RE: using createobject (or javaloader.cfc) and OpenAMF to have CF talk Server to Server in AMF?

2007-01-29 Thread Dave Watts
> howdy all...i've become a little fixated on the idea of using > AMF and CF to talk server to server (and possibly to consume > webservices)...i spent about 10 hours yesterday exploring > different possible ways to do this, the most promising seems > to be the idea of using OpenAMF. Why? Why

Re: Next N Interface Recommendations

2007-01-29 Thread Bruce Sorge
OK, I ended up doing hidden form variables. Seems to work pretty well. Thanks for all of the advice folks. This list is great. Bruce ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 & MX7 integration & create powerful cross

Re: Showing actual used value from cfqueryparam tag

2007-01-29 Thread Eric P
On 1/29/07, Dave Watts <[EMAIL PROTECTED]> wrote: > > So as you can see, the debug tells me what went into > > Parameter #1 (1.5), but not what was actually used in the > > query (should be 1). Any ideas for an easy way to get this value? > > > > BTW, I'm running CF 5/MS-SQL 2000. > > You can use

Re: Odd error when inserting records

2007-01-29 Thread Teddy Payne
Also, you may also want to just put these values outside of teh sql statement: And then just use '#district#' in your insert statement. This will provide the empty string as if you cfparam'ed it or provide the actual value from your struct/array. Teddy On 1/29/07, Teddy Pa

Re: Odd error when inserting records

2007-01-29 Thread Teddy Payne
When you cftry the expression, the first single quote is added. When the expression fails, it stops processing the rest of the statement and thus the second single quote will not be outputted on failure. CF stops processing at the point of failure and does not execute what happens afterwards on a

using createobject (or javaloader.cfc) and OpenAMF to have CF talk Server to Server in AMF?

2007-01-29 Thread jerad sloan
howdy all...i've become a little fixated on the idea of using AMF and CF to talk server to server (and possibly to consume webservices)...i spent about 10 hours yesterday exploring different possible ways to do this, the most promising seems to be the idea of using OpenAMF. with the OpenAMF Jav

Re: Odd error when inserting records

2007-01-29 Thread Charlie Griefer
my guess is that the single quote is coming from the first character (the single quote) within the block. what's being "caught" is the variable value in # signs...but the literal preceding it is not. try this out: This is a #variables.test#!! oops! obviously, #variables.test#

RE: Showing actual used value from cfqueryparam tag

2007-01-29 Thread Andy Matthews
Cfoutput the query, replace the query params with the values being passed in. Or, if you're using MX7, there's a variable that gets returned with every query which shows you the exact statement sent to the db server. [Queryname].sql -Original Message- From: Eric P [mailto:[EMAIL PROTE

RE: Odd error when inserting records

2007-01-29 Thread Adrian Lynch
View the source and see if the SQL is as you have printed below. It might be a special character in the XML that's causing trouble. If that doesn't help. Strip it down to the basics and build up the SQL till the error appears, that'll help in finding it. Adrian -Original Message- From: C

RE: Showing actual used value from cfqueryparam tag

2007-01-29 Thread Dave Watts
> So as you can see, the debug tells me what went into > Parameter #1 (1.5), but not what was actually used in the > query (should be 1). Any ideas for an easy way to get this value? > > BTW, I'm running CF 5/MS-SQL 2000. You can use SQL Profiler to capture the queries sent to the database: ht

RE: Next N Interface Recommendations

2007-01-29 Thread Dave Watts
> I'm not quite sure what you mean. There are certain times > when it's advantageous to bring the whole result into CF, but > only if you are caching things. If you are not using any > sort of caching, I don't see a reason to bring the whole > resultset into CF. If you're using pagination, t

Feedback Request: BlogCFM 2.0 Coming Soon

2007-01-29 Thread Rick Root
I'm working on some updates to BlogCFM. The main "addition" will be simple content management - the ability to create regular HTML pages in your blog. I've actually already done this, took me an hour to rip the code out of a CMS that I built 4-5 years ago and drop it into BlogCFM. I'm also remov

Showing actual used value from cfqueryparam tag

2007-01-29 Thread Eric P
I have a query that's giving me some grief, and it would be helpful if I could see the actual used value that the cfqueryparam tag is actually sending to the database. Example code. select -debug output--- test (Records=1, Time=0ms) SQL = select ? Query Paramet

Odd error when inserting records

2007-01-29 Thread Charles Miles
Hello all, I'm running into an error I haven't seen before. Running CFMX 7.2 with SQL server 2000. Basically, I'm retrieving an XML file, parsing it, then inserting the contents into the database. Here's my code: INSERT INTO TBLTERMS (BI

Re: Getting the sum of all rows for one column

2007-01-29 Thread Steve Good
Thanks guys! I went with Bobby's suggestion and it works like a charm! ~Steve Bobby Hartsfield wrote: > Try: > Select sum(field) as total from table > > Then output #queryname.total# > > -Original Message- > From: Steve Good [mailto:[EMAIL PROTECTED] > Sent: Friday, January 26, 2007 5:5

RE: Next N Interface Recommendations

2007-01-29 Thread Russ
> -Original Message- > From: Dave Watts [mailto:[EMAIL PROTECTED] > Sent: Monday, January 29, 2007 12:06 PM > To: CF-Talk > Subject: RE: Next N Interface Recommendations > > > Pagination should be done in the DB, IMHO. There's no need > > to bring in all the results to CF and then filter

Re: Next N Interface Recommendations

2007-01-29 Thread Bruce Sorge
I do need to do column sorting actually. On 1/29/07, Richard Dillman <[EMAIL PROTECTED]> wrote: > > Not to throw a monkey in the wrench. But what if you wanted to do > Pagination > AND allow column sorting per page? > > > On 1/29/07, Russ <[EMAIL PROTECTED]> wrote: > > > > Pagination should be don

RE: Next N Interface Recommendations

2007-01-29 Thread Russ
I'm not too sure what you mean, but if you want to sort by column on a particular page, then you retrieve the dataset for that page using SQL, and then use QoQ to order that resultset by whatever column you want to sort by. It's still faster then doing the whole thing in CF. Russ > -Origi

RE: CF services

2007-01-29 Thread Dave Watts
> My site is running on Windows 2003 server, CF MX7, SQl Server 2000. > I just now stopped the two other Coldfusion Services: > Coldfusion ODBC Server and Coldfusion ODBC Agent, and yet my > site is running fine. > My question is: Are these services not required? Would > stopping them give a per

RE: CF services

2007-01-29 Thread Ian Skinner
My question is: Are these services not required? Would stopping them give a performance enhancement on the server? Thanks. They are not needed as long as you are NOT using ODBC DSN setups. Which many do not need to use. So sounds like for you, it is fine to turn them off. -- Ian

CF services

2007-01-29 Thread Ken
Hi, My site is running on Windows 2003 server, CF MX7, SQl Server 2000. I just now stopped the two other Coldfusion Services: Coldfusion ODBC Server and Coldfusion ODBC Agent, and yet my site is running fine. My question is: Are these services not required? Would stopping them give a performance en

Re: RDS not working in Eclipse was: Re: CFEclipse / Eclipse question

2007-01-29 Thread Judah McAuley
Thanks Jeff, I'll try going back to 3.2 and see how that goes, then report back here. Judah Jeff Fleitz wrote: > I upgraded my Eclipse build to 3.2.1 about a month ago (with the CFEclipse > 1.3 beta build) when the Flex Builder 2.01 update came out, and my RDS > stopped working. It would display

Re: RDS not working in Eclipse was: Re: CFEclipse / Eclipse question

2007-01-29 Thread Judah McAuley
Dwayne Cole wrote: > When configuring the RDS connection did you get the "connection > successs" message? > > I had a similar problem but on Friday I finally upgraded to 3.2 > Eclipse/ 1.3 CFEcplise and set the connection port to 80 (localhost), > it all worked just fine and I really like the resu

RE: Next N Interface Recommendations

2007-01-29 Thread Dave Watts
> Pagination should be done in the DB, IMHO. There's no need > to bring in all the results to CF and then filter them there. Blanket statements like this are almost always incorrect. There are plenty of reasons to do this in your application instead of the database. You might have multiple users

Re: Next N Interface Recommendations

2007-01-29 Thread Richard Dillman
Not to throw a monkey in the wrench. But what if you wanted to do Pagination AND allow column sorting per page? On 1/29/07, Russ <[EMAIL PROTECTED]> wrote: > > Pagination should be done in the DB, IMHO. There's no need to bring in > all > the results to CF and then filter them there. You should

RE: Next N Interface Recommendations

2007-01-29 Thread Bobby Hartsfield
That is not always a possibility -Original Message- From: Russ [mailto:[EMAIL PROTECTED] Sent: Monday, January 29, 2007 11:41 AM To: CF-Talk Subject: RE: Next N Interface Recommendations Pagination should be done in the DB, IMHO. There's no need to bring in all the results to CF and the

RE: Regular Expression Help

2007-01-29 Thread Bobby Hartsfield
That would not match 0 through 9.999 unless they were formatted into 2 digit numbers like 00, 01, etc... 09.999 It also wouldn’t match anything between 1 and 0 like .999 unless it was formatted like 00.999 Try this one: ^\d{0,2}(\.\d{1,7})?$ I don’t know what you are using it for

RE: Next N Interface Recommendations

2007-01-29 Thread Russ
Pagination should be done in the DB, IMHO. There's no need to bring in all the results to CF and then filter them there. You should be using something like this: Select top #recordPerPage# somefields from sometables where somefieldID NOT IN (select top #recordPerPage*pageNum-1# somefieldID from

RE: Next N Interface Recommendations

2007-01-29 Thread Bobby Hartsfield
If you have a ton of info to pass around, try storing it in a session structure. It may even be feasible to store the query results in the session scope so there would be no need to pass around all of the search criteria and search again for every page request. Also, this may or may not be of use

Re: Line Breaks in Plain Text CFMail - GRRR!

2007-01-29 Thread Scott Weikert
Sorry to hop in on this one after a while, but I've an idea for you. Instead of doing all your s etc within the tag - do it all prior to the tag, and build up your content within a variable, just the way you want to. That'll avoid any extra linefeeds etc. Then just spit out that variable in t

RE: Disappearing & reappearing text CSS issue?

2007-01-29 Thread Bobby Hartsfield
Validate your css first. -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Monday, January 29, 2007 11:03 AM To: CF-Talk Subject: Re: Disappearing & reappearing text CSS issue? So Kenfused wrote: > > I have text that does not display until I highlight it. Then i

RE: Regular Expression Help

2007-01-29 Thread Ben Nadel
Well played. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Ben Doom [mailto:[EMAIL PROTECTED] Sent: Monday, January 29, 2007 11:22 AM To: CF-Talk Subject: Re: Regu

Re: database JOIN question

2007-01-29 Thread Jim Wright
It might make more sense to you if you think about it as two completely separate queries... SELECT n_r_id FROM notes_to_the_record_shared WHERE id = #session.user.id# The above query just got us a list of n_r_id's that we know are associated with the user. Convert that to a list... Then do

Re: Regular Expression Help

2007-01-29 Thread Ben Doom
Ben Nadel wrote: > Not really sure what exactly you are looking to do, but the regular > expression pattern for numbers under 100 with 7 decimals would be: > > \d{2}(\.\d{1,7})? I'd anchor it, assuming that this is supposed to be the whole string: ^\d{2}(\.\d{1,7})?$ --Ben Doom ~~~

RE: Next N Interface Recommendations

2007-01-29 Thread Russ
I think the 255 character limit for get requests no longer applies with modern browsers, but this is just a guess. You can make the next and previous buttons instead of links, and submit a form with hidden fields. You can make them links, but use javascript to submit the form with hidden fields

Re: Next N Interface Recommendations

2007-01-29 Thread Ben Doom
What if, instead of simple links, you wrote a pair of small forms full of hidden fields to carry the parameters for the search? You could either use buttons for the forward/back, or use JS to have the links submit the forms. --Ben Doom Bruce Sorge wrote: > Happy Monday all. > I am doing a nex

Re: reading large text file

2007-01-29 Thread Aaron Longnion
Hi Martin - I completely agree with the other comments that you should be using a DB to this task. However, I wanted to mention that today I cobbled together a blazing fast way of reading and appending to large text files with CF + Java. // set it to whatever file name you want (include th

Re: reading large text file

2007-01-29 Thread Aaron Longnion
Hi Martin - I completely agree with the other comments that you should be using a DB to this task. However, I wanted to mention that today I cobbled together a blazing fast way of reading and appending to large text files with CF + Java. // set it to whatever file name you want (includ

Re: Named anchors in IE7

2007-01-29 Thread Martin Thorpe
Yeah we had the same problem. One of my collegues was doing something where the anchor was stripped. In the end we did a window.location.hash after the page had loaded which sticks the anchor back on the end of the url. Bit of a hack but it works. cheers Martin >Sorry, I should have asked

Next N Interface Recommendations

2007-01-29 Thread Bruce Sorge
Happy Monday all. I am doing a next-n search interface for my project. I have done these before but they usually only have one or two variables for the query, and I usually use URL parameters for these. This particular form can have up to 20 different fields that the user can use to do a search dep

Re: Disappearing & reappearing text CSS issue?

2007-01-29 Thread Jochem van Dieten
So Kenfused wrote: > > I have text that does not display until I highlight it. Then it shows up just > fine. It seems I have heard this is an IE / CSS issue. It works fine in > FireFox, problem is this is for an INtranet and all the users are using IE. Might that be the Peekaboo bug? Check po

Re: Disappearing & reappearing text CSS issue?

2007-01-29 Thread Joseph Lamoree
On 29 Jan 2007, at 06:47, So Kenfused wrote: > I have text that does not display until I highlight it. Then it > shows up just fine. It seems I have heard this is an IE / CSS > issue. It works fine in FireFox, problem is this is for an > INtranet and all the users are using IE. You might

Disappearing & reappearing text CSS issue?

2007-01-29 Thread So Kenfused
I've heard about this but forget where. I have text that does not display until I highlight it. Then it shows up just fine. It seems I have heard this is an IE / CSS issue. It works fine in FireFox, problem is this is for an INtranet and all the users are using IE. Any help would be appreci

Re: database JOIN question

2007-01-29 Thread daniel kessler
> commented... First it returns anything in notes_to_the_record with the user id. Then the internal or subquery returns anything from the shared database that has the user id. But why does it have to do n.n_r_id IN? Is that just to append the query and actually does no more filtering? Is hav

Re: blogCFC?

2007-01-29 Thread Qasim Rasheed
Doug, By any chance, do you have debugging turned on? Thanks Qasim On 1/29/07, Raymond Camden <[EMAIL PROTECTED]> wrote: > > The front page shouldn't be _too_ slow. The caching is mainly meant to > make the most viewed page quicker. (Ok, maybe I'm being defensive now > ;) > > On 1/29/07, Russ

Re: RDS not working in Eclipse was: Re: CFEclipse / Eclipse question

2007-01-29 Thread RobG
Tom Chiverton wrote: > On Monday 29 January 2007 07:23, RobG wrote: >> (what I want) didn't work... once you try to load a file, it just goes >> "an error has occurred" and nothing loads. >> Is the version in Flex2 even more current? I'd LOVE to have fully >> functional RDS in Eclipse 3.2... > >

RE: Cluster File Management

2007-01-29 Thread Russ
Although a true geographically distributed solution would cost a lot of money, you should be shooting for a cost effective solution at a single NOC. You have to pick a NOC which you trust to have a reasonable uptime, and then set up your servers in such a way as to eliminate the single point of fai

Re: Cluster File Management

2007-01-29 Thread John Blayter
While IIS will support the webroot on a remote machine you are going to have some lag in your site with your setup unless they are on a fiber channel or a dedicated gigabit internal network. I would opt for the replication option VS the remote webroot option. We use Vice Versa Pro 2 to sync the fil

RE: Regular Expression Help

2007-01-29 Thread Ben Nadel
Not really sure what exactly you are looking to do, but the regular expression pattern for numbers under 100 with 7 decimals would be: \d{2}(\.\d{1,7})? This makes the decimal optional (with 1 to 7 decimal places). Of course, this does not protect AGAINST numbers over one hundred. For that you wo

Regular Expression Help

2007-01-29 Thread Lee.S.Surma
How would you do numbers under one hundred with a limit of 7 decimals? Lee Surma Applications Systems Engineer Wells Fargo Corporate Trust [EMAIL PROTECTED] 612-667-4066 ~| Upgrade to Adobe ColdFusion MX7 Experience

RE: Named anchors in IE7

2007-01-29 Thread Adrian Lynch
Sorry, I should have asked Google then CF-Talk, just found some links, having a read of them now... http://ray.camdenfamily.com/index.cfm/2005/10/8/IIS6-Bug-with-CFLOCATION -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED] Sent: 29 January 2007 14:49 To: CF-Talk Subject: OT:

RE: Cluster File Management

2007-01-29 Thread Peterson, Chris
Well, I am running SQL 2005 Std (which supports clustering), but I would need another SQL 2005 Std license to do a true fault tolerant cluster. I don't think, without a ton of cash, you will get a true complete fault tolerant setup. You would need 2 different web service providers, 2 separate hos

OT: Named anchors in IE7

2007-01-29 Thread Adrian Lynch
Can someone confirm for me that named anchors aren't working in IE7 when using them in a cflocation? http://www.adrianlynch.co.uk/index.cfm##thisDoesntAppearInIE7"; addtoken="no"> Works on FF1.0.7, not in IE7 Not good! Adrian Lynch http://www.halestorm.co.uk/ http://www.adrianlynch.co.uk/ ~~~

RE: Cluster File Management

2007-01-29 Thread Russ
Great idea setting up a clustered environment, and then making it all dependent on a single server. Not only will this be slow, if the SQL server goes, so does the rest of the site. But then again, this is probably already the case since you're probably running the standard version of SQL serve

Re: blogCFC?

2007-01-29 Thread Raymond Camden
The front page shouldn't be _too_ slow. The caching is mainly meant to make the most viewed page quicker. (Ok, maybe I'm being defensive now ;) On 1/29/07, Russ <[EMAIL PROTECTED]> wrote: > BlogCFC is a bit slow, which is why it has a caching mechanism for the home > page. If you don't reinit it

RE: Cluster File Management

2007-01-29 Thread Peterson, Chris
I am going to setup a 3rd server (the SQL box) as the source of all the files, and point IIS's home folder to 'a share on a remote machine', and use a file share on the SQL box. Be sure to setup user security so the web boxes can access those files on your file server, and then I will turn on trus

RE: Cluster File Management

2007-01-29 Thread Russ
Yes, I second DFS. This is what we're using (You will need both servers to be on the domain though). DFS is a bit finicky though, and breaks every so often. Large updates also take a while to propagate, so make sure you plan that into your environment. Russ > -Original Message- > From

Re: blogCFC?

2007-01-29 Thread Raymond Camden
Hi Doug. I don't typically read cf-talk every day. Please post blogcfc bug reports here: http://ray.camdenfamily.com/forums/threads.cfm?forumid=CBD2114B-C3E6-9905-6FF858C3679EAB34 So - lets fix Spry first. Go to your Add Entry page, view source, an d examine the SCRIPT tags to see what URL they a

RE: blogCFC?

2007-01-29 Thread Russ
BlogCFC is a bit slow, which is why it has a caching mechanism for the home page. If you don't reinit it all the time, it should be fast enough. It also might be some of the optional components. We have it running on a large site, with no performance issues, while on my personal site, it does s

Re: Copying specific company data to a new database...

2007-01-29 Thread Doug Brown
Well, you could copy the entire database over then do a delete where the company does not equal the company you want. Doug B. - Original Message - From: "Dan G. Switzer, II" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Monday, January 29, 2007 6:41 AM Subject: RE: Copying specific compa

Re: Cluster File Management

2007-01-29 Thread Dave Ferguson
I use PeerSync for this. I have been using it for a while and have never had any problems with it. It also supports versioning on the target server. --Dave www.dkferguson.com/BlogCFC > Hi everyone, > > Does anybody know any good sites / ref. books which talk about file > management on a clu

RE: Cluster File Management

2007-01-29 Thread WebSite CFtalk
Hi, With Win2003 STD on both servers you can do that using DFS. Helge Hetland WebSite AS -Original Message- From: James Buckingham [mailto:[EMAIL PROTECTED] Sent: 29. januar 2007 11:58 To: CF-Talk Subject: Cluster File Management Hi everyone, Does anybody know any good sites / ref. b

  1   2   >