Re: Apache config

2007-01-23 Thread Robertson-Ravo, Neil (RX)
Re: IIS multiple domain tools, I am unsure how they are ugly workarounds? I mean, what is ugly about a one click change and a change to your host file (the latter being done by IIS and Apache users anyway). The fact is, you can run both IIS and Apache on XP locally in the same multi domain way,

Re: Apache config

2007-01-23 Thread Robertson-Ravo, Neil (RX)
As Dave noted, as a matter of course you should have at least a Dev and Testing environment. Ideally an R D, Dev, Test, UAT, and Pre-Production before you even think of moving to a Production environment. You should *never* have a system (painly RD and dev) which is not in sync, configs and

Coldfusion RSS Aggregator

2007-01-23 Thread Tom King
Dear All, I've built a basic RSS aggregator, using Ray's RSS.cfc (basically, all I've done is write a function which loops URLs into RSS .cfc and saves the output as one big Query) But am now running into problems (mainly to do with Date types in RSS 1.0): Has anyone else done this? Or are

Re: Better way to send nulls to a Stored Proc?

2007-01-23 Thread Niall O'Doherty
Just thinking out of the box here, and not sure if this is exactly what you're after but wouldn't you be better letting SQL decide what to insert. By using the NULLIF() SQL Function you can still pass your date as 01/01/00 if no date is specified and use the NULLIF() function to evaluate what

Help Needed for fine-tuning CF code

2007-01-23 Thread hussain shaikh
Hi All, I am working on a web page which is built in ColdFusion. The problem is it's performance.The page takes lot of time for appearing on the screen.I have fine-tuned my code to follow the best practices of CF but somehow could not find any improvement in the performance.I have found-out that

Do I use a view for this?

2007-01-23 Thread Will Tomlinson
I'll try to keep this short. I'm creating a digital version of a paper system in our consignment business. Using SQL Server. 1. We fill out a form showing the customer what we're sending them (startQTY), and productprice 2. They sell whatever, then send back the form filled in the with the

RE: Help Needed for fine-tuning CF code

2007-01-23 Thread Peterson, Chris
Can you post some code examples? Chris -Original Message- From: hussain shaikh [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 23, 2007 6:26 AM To: CF-Talk Subject: Help Needed for fine-tuning CF code Hi All, I am working on a web page which is built in ColdFusion. The problem is

Re: Help Needed for fine-tuning CF code

2007-01-23 Thread James Holmes
Is debugging enabled? On 1/23/07, hussain shaikh [EMAIL PROTECTED] wrote: Hi All, I am working on a web page which is built in ColdFusion. The problem is it's performance.The page takes lot of time for appearing on the screen.I have fine-tuned my code to follow the best practices of CF but

Re: Help Needed for fine-tuning CF code

2007-01-23 Thread hussain shaikh
Can you post some code examples? Chris Following is some of code of one of my web page:- cfoutput query=inventory2csvlist startrow=#start# maxrows=#start+step-1# tr bgcolor=#CfgRet.Color2# td align=left #inventory2csvlist.ROUTER# /td td #inventory2csvlist.IP# /td td #inventory2csvlist.VPN# /td

RE: Help Needed for fine-tuning CF code

2007-01-23 Thread Peterson, Chris
That doesn't look bad to me, is your server under heavy load, or is your disk source for this template having issues? -Original Message- From: hussain shaikh [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 23, 2007 6:54 AM To: CF-Talk Subject: Re: Help Needed for fine-tuning CF code

Re: Do I use a view for this?

2007-01-23 Thread Deanna Schneider
I'm confused. A view is nothing more than a saved query, really. A view isn't going to store unique data. (Well, you can use a view with triggers to update underlying tables, but I don't think that's what you're trying to do.) If it were me, I'd be storing the non-calculated data in the database.

Re: Coldfusion RSS Aggregator

2007-01-23 Thread Brian Swartzfager
Hi, Tom, I recently built an RSS/ATOM aggregator as a portlet for a portal system we're releasing this month. I loop through each feed URL as well, but the output is stored in an array of structures (each feed has its own structure and the last component of each structure is an array of the

Re: Do I use a view for this?

2007-01-23 Thread Robertson-Ravo, Neil (RX)
Remember a view can contain data which is in the underlying tables in a different form (even new data not in them), It could contain computed fields, sums across many fields, new columns so in that way a view can contain unique data. This e-mail is from Reed Exhibitions (Gateway House, 28

Re: Help Needed for fine-tuning CF code

2007-01-23 Thread Gert Franz
Hi Hussain, just for the info. If you check the size of the response HTML (properties in firefox). How large is it? Does the page render a lot of unnecessary empty code? Greetings / Grüsse Gert Franz Customer Care Railo Technologies GmbH [EMAIL PROTECTED] www.railo.ch Join our Mailing List /

Re: Help Needed for fine-tuning CF code

2007-01-23 Thread hussain shaikh
How do I find whether my server is under heavy load or not? Actually the query used is returning around 8 records. So it has loop over this recordset to display only 100 records on the page. Is this the reason why it is taking time?? That doesn't look bad to me, is your server under heavy

Re: Help Needed for fine-tuning CF code

2007-01-23 Thread Richard Cooper
It could just be that the page is taking a while to render. Table need to fully load before there displayed. You may have something else in the table that is causing it to take ages to display in your browser See how long cf takes to process the page, !--- Start of page --- CFSET

Re: Do I use a view for this?

2007-01-23 Thread Deanna Schneider
Yes, it can contain all that, but it's not storing it in the sense of a table. It does the computations on the fly. If that's what he needs, then yes a view will work. But, I'm not sure if that's what he's shooting for or not. On 1/23/07, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote:

Re: Help Needed for fine-tuning CF code

2007-01-23 Thread hussain shaikh
Ya Franz, U r right. I just checked the source code rendered by the web page and there are lot of empty code. What could be the reason for that?? Hi Hussain, just for the info. If you check the size of the response HTML (properties in firefox). How large is it? Does the page render a lot of

Re: Help Needed for fine-tuning CF code

2007-01-23 Thread Gert Franz
Well it surely is something that you should not do. Since 8 records are somethin that has to be skipped through even when you only skip through 100 records. Try only to query 100 the records you need... You can easily check this by using GetTickCount() before and after the QueryOutput...

Re: Do I use a view for this?

2007-01-23 Thread Will Tomlinson
Ok I'm getting a handle on things here. Using some T-SQL to do what I was having CF do. My only problem right now is I'm trying to calculate multiple products in a given category. This expression is producing an amount that's way too high for the category.

Re: Help Needed for fine-tuning CF code

2007-01-23 Thread Gert Franz
Hi Hussain, take a look at my recent blog entry: http://www.railo.ch/blog/index.cfm/2007/1/19/Performance-Tuning-Part-II You can place Comments between the tags. But I guess my previous mail is more important... Greetings / Grüsse Gert Franz Customer Care Railo Technologies GmbH [EMAIL

RE: Changes to Daylight Savings Time in 2007 may affect your data bases (DB2, Oracle and others)

2007-01-23 Thread DURETTE, STEVEN J \(ASI-AIT\)
The quote that I got about it was due to an unrelated SSL vulnerability they needed to upgrade to 1.5.0_09 /_10. The 1.4.2 family exception equivalent to that was noted to be 1.4.2_13 -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Monday, January 22,

Re: Help Needed for fine-tuning CF code

2007-01-23 Thread hussain shaikh
Hi Richard, I have tried that also(GetTickCount) and found that the time vries everytime I access the page.On an average it takes around 100 ms. It could just be that the page is taking a while to render. Table need to fully load before there displayed. You may have something else in the

Re: Help Needed for fine-tuning CF code

2007-01-23 Thread hussain shaikh
Hi Franz, I have to fetch the entire 8 records since I have implemented sorting on the columns of the table, so i have to query the table with the order by clause so that the entire records are sorted and then displayed. Well it surely is something that you should not do. Since 8

Re: Help Needed for fine-tuning CF code

2007-01-23 Thread Gert Franz
Yes of course, but are you sure your customers will browse through all of the 8 records? You can do something like this: Select Top 500 From ... WHERE ... ORDER BY ... Or LIMIT for MySQL But you should consider, that only in some cases a user will browse until page 800!!! There are other

database JOIN question

2007-01-23 Thread Daniel Kessler
I have a table (notes_to_the_record) of meeting notes (fields:n_r_id,id,meeting_name,date_added,follow_up). A new feature is that the meeting note is shared to a set of users. So since multiple users can be selected, I made a new table called notes_to_the_record_shared

Re: Help Needed for fine-tuning CF code

2007-01-23 Thread hussain shaikh
Ya Franz, I have tried using that sophisticated query also but in that case the query was taking lot of time.I donnow why but? I have implemented sorting,paging and search for a particular field (using text boxes) on that screen.And whenever you click to see the next set of records the same

Re: Help Needed for fine-tuning CF code

2007-01-23 Thread Richard Cooper
If the CF is processing in 100 Ms then the problem lies with the HTML. Do you have a nested table layout? If you do avoid it. Also if your creating say 1000 rows for the page, consider changing it to mulitple tables i.e every 50 results create a new table. This should mean the data appears in

Re: Do I use a view for this?

2007-01-23 Thread Deanna Schneider
You forgot the rest of the query. :) On 1/23/07, Will Tomlinson [EMAIL PROTECTED] wrote: Here's the whole SQL statement. Neil, don't say anything bout the non cfqueryparam'd statement. I'm just testing! lol! ~| Upgrade to

Re: Help Needed for fine-tuning CF code

2007-01-23 Thread Gert Franz
Do you have a link where I can look at it? Gert hussain shaikh schrieb: Ya Franz, I have tried using that sophisticated query also but in that case the query was taking lot of time.I donnow why but? I have implemented sorting,paging and search for a particular field (using text boxes) on

RE: database JOIN question

2007-01-23 Thread Gaulin, Mark
What database are you using? I've never see that + notation before... One thing I can suggest (without actually helping you) is to use ANSI-style joins, which are done in the FROM clause, and not in the WHERE clause. I find these to be much more expressive and sometimes they are the only way

RE: Do I use a view for this?

2007-01-23 Thread Robertson-Ravo, Neil (RX)
Lol ;-p -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: 23 January 2007 12:26 To: CF-Talk Subject: Re: Do I use a view for this? Ok I'm getting a handle on things here. Using some T-SQL to do what I was having CF do. My only problem right now is I'm trying to

RE: database JOIN question

2007-01-23 Thread Ben Nadel
Daniel, Not sure, cause I can't test it, but maybe something like this: SELECT n.meeting_name, n.type, n.note_date, n.notes, n.type_describe FROM notes_to_the_record n LEFT OUTER JOIN notes_to_the_record_shared s ON (

Re: database JOIN question

2007-01-23 Thread Deanna Schneider
I think what you really want is something like this: SELECT n.meeting_name,n.type,n.note_date,n.notes,n.type_describe FROM notes_to_the_record n LEFT JOIN notes_to_the_record_shared s on n.n_r_id = s.n_r_id WHERE n.ID = #session.user.id# OR s.id = #session.user.id# ORDER BY

Re: Help Needed for fine-tuning CF code

2007-01-23 Thread hussain shaikh
Thanks Franz for the keen interest that you have shown to resolve the issue,but it's not possible for me to give you the link.But I can give you the entire .cfm page which is about 14338 bytes. :-) Do you have a link where I can look at it? Gert hussain shaikh schrieb:

Re: Help Needed for fine-tuning CF code

2007-01-23 Thread Richard Cooper
Quick change, this will make sure you don't end up with a completely empty table if the last result is divisble by 50 cfif currentrow mod 50 EQ 0 and currentrow neq recordcount /table table /cfif ~| Upgrade to Adobe ColdFusion

Re: Help Needed for fine-tuning CF code

2007-01-23 Thread hussain shaikh
I am actually displaying only 100 records per page, so I guess that should not be the problem. But is there any way by which I can display the contents of the table as the data is rendered by HTML. I have tried cfflush but it didn't worked out. Hussain. If the CF is processing in 100 Ms then

Re: Help Needed for fine-tuning CF code

2007-01-23 Thread Gert Franz
That's ok by me... just send it by mail offline... Gert Greetings / Grüsse Gert Franz Customer Care Railo Technologies GmbH [EMAIL PROTECTED] www.railo.ch Join our Mailing List / Treten Sie unserer Mailingliste bei: deutsch: http://de.groups.yahoo.com/group/railo/ english:

Re: Help Needed for fine-tuning CF code

2007-01-23 Thread Qasim Rasheed
As far as I can tell looking at the various suggestion, the most probable bottle neck is in your SQL code and not the CFM. Some stupid questions? 1. DO you have indexes on the table? 2. Which DB are you using? Different DB vendor will let you select only a subset of data i.e. SQL Server (Top 50)

Re: Help Needed for fine-tuning CF code

2007-01-23 Thread Richard Cooper
Tables are meant for display data as complete sheet. I think this is so the data isn't misinterpretted. You could use CSS instead of tables but creating grids is quite tricky like this. I reckon the problem may lie with the layout of the rest of the page. Have you tried the page without this

RE: Help Needed for fine-tuning CF code

2007-01-23 Thread Peterson, Chris
Hussain, Internet Explorer will not display the table until the entire thing is downloaded, while Firefox or Opera will render the table as it gets each row. It wont matter to IE if you flush it, it waits for the closing /table tag to display =( Also, you have to remember that each time you

Re: Coldfusion RSS Aggregator

2007-01-23 Thread Tom King
Just display them, but for some reason I'm getting an invalid data type from a valid 1.0 XML doc.. I think it's just a matter of going through Ray's code and see if I can put some extra validation in.. T On 23 Jan 2007, at 12:00, Brian Swartzfager wrote: Hi, Tom, I recently built an

Re: Help Needed for fine-tuning CF code

2007-01-23 Thread hussain shaikh
Thanks Richard, but I can't provide you the link since it's not meant to be disclosed.Sorry abt that :-( I'll try all the suggestions and will then see where the actual problem is. Thanks once again. Hussain. Tables are meant for display data as complete sheet. I think this is so the

Re: Help Needed for fine-tuning CF code

2007-01-23 Thread hussain shaikh
Thanks Chris, You mentioned abt some tags for Pagination.What r those? Where on net I can get pagination stuff? Hussain, Internet Explorer will not display the table until the entire thing is downloaded, while Firefox or Opera will render the table as it gets each row. It wont matter to IE if

Re: database JOIN question

2007-01-23 Thread daniel kessler
Yes - that worked fine and is largely the same as Ben's - except that his states OUTER. Is the OUTER assumed when it's not stated? Just so that I understand - the relationship is made on the ON, which designates a subset. Then that is queried with the WHERE. and thank you very much. It

Site Monitoring

2007-01-23 Thread Rick Root
Is anyone familiar with a piece of software called Radar Site Monitor? http://www.apicalsoft.com/ We're investigating some site monitoring tools.. and my boss came up with that one.. I've put forth www.siteuptime.com too. Rick -- I'm not certified, but I have been told that I'm certifiable...

RE: Help Needed for fine-tuning CF code

2007-01-23 Thread Peterson, Chris
Here are a few blog posts found on google showing how to handle pagination well http://www.bennadel.com/blog/281-Oh-Baby-It-s-So-Hot-When-You-Paginate-a ka-Paginating-Results-In-ColdFusion-.htm http://ray.camdenfamily.com/index.cfm/2006/4/24/ColdFusion-and-Paginatio n Like many are saying

Re: Coldfusion RSS Aggregator

2007-01-23 Thread Pete Freitag
On 1/23/07, Tom King [EMAIL PROTECTED] wrote: Or are there any other CF aggregators (as in a component, NOT a site) which anyone has seen? Hi Tom, We have a commercial feed parser for sale here: http://foundeo.com/feed-parser/ it seams to do a pretty good job (I have used it on numberous

Re: database JOIN question

2007-01-23 Thread daniel kessler
What database are you using? I've never see that + notation before... Sorry - I reminded myself twice while writing the email to state the DB and dang it. It's Oracle and yes the + stands for Outer Join - which I just learned yesterday. I read and re-read your point twice and I believe that

CFEclipse / Eclipse question

2007-01-23 Thread John Sterrett
What plug-ins are the Eclipse users on the board using with CFEclipse? Are there any recommendations for source control with VSS? Also, is there any plug-in that will add code hints for JavaScript within CFElipse? For example, in dreamweaver when you type style= a dropdown is populated with

Re: database JOIN question

2007-01-23 Thread Deanna Schneider
If you're using left join, yes, outer is assumed. You can put it in there - it's more explicit. Also, the other guy was right that you can also put the where n.id = #session.user.id# in the ON clause, which will filter your records at the level of the join. You should get the same results, and

Re: CFEclipse / Eclipse question

2007-01-23 Thread Jacob Munson
I use Aptana which gives you code insight for JavaScript, CSS, and a bunch of other stuff. I hear it has an excellent FTP interface too, but I don't use that. On 1/23/07, John Sterrett [EMAIL PROTECTED] wrote: What plug-ins are the Eclipse users on the board using with CFEclipse? Are there

Re: database JOIN question

2007-01-23 Thread daniel kessler
I was working from this information: http://www.1keydata.com/sql/sqlouterjoin.html What database are you using? I've never see that + notation before... One thing I can suggest (without actually helping you) is to use ANSI-style joins, which are done in the FROM clause, and not in the WHERE

Re: CFEclipse / Eclipse question

2007-01-23 Thread Andrew Scott
The plugins available are going to depend on what you need. I use the following: * subclipse - a svn client that interfaces to a svn repositoy for source control * Jira - jira plugin that allows me to connect to our ticketing and help desk software * SQLDB (not sure the eaxact name) - a jdbc

OT:CSS need help

2007-01-23 Thread Christopher Jordan
I know this is off topic, but I'm sure someone here can answer my question. The following works in FF but not in IE: The.css (included) style type=text/css div.AdminWrapper{ width: 850px; border: 1px solid #AA; background-color: #F9F9F9; text-align: left; margin:

Re: Coldfusion RSS Aggregator

2007-01-23 Thread Tom King
Ha, that looks great. But I'm broke :) T On 23 Jan 2007, at 15:06, Pete Freitag wrote: On 1/23/07, Tom King [EMAIL PROTECTED] wrote: Or are there any other CF aggregators (as in a component, NOT a site) which anyone has seen? Hi Tom, We have a commercial feed parser for sale here:

Regular Expression Help....

2007-01-23 Thread Dave Phillips
Hi, RegExp's are not my forte and I need to create a function that will extract URL's from a body of text and return it in a list. I have a function that extracts the anchor tags from a document, but I need to acurately extract the URL from that anchor tag. I can do a find for 'href' and so

Re: database JOIN question

2007-01-23 Thread Deanna Schneider
The (+) notation was what Oracle used up until 9i, when they adopted the ANSI standard. There were a lot of things I liked about the (+) notation. Since I learned it first, I preferred it for a long time. Now, I think I prefer ANSI joins, finally. On 1/23/07, daniel kessler [EMAIL PROTECTED]

RE: CFEclipse / Eclipse question

2007-01-23 Thread Andy Matthews
Andrew... Can you explain FusionDebug? How does it allow you to step through your code if you have queries on the page? Andy matthews -Original Message- From: Andrew Scott [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 23, 2007 9:33 AM To: CF-Talk Subject: Re: CFEclipse / Eclipse

RE: Regular Expression Help....

2007-01-23 Thread Andy Matthews
This page might get you pointed in the right direction. http://foad.org/~abigail/Perl/url2.html -Original Message- From: Dave Phillips [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 23, 2007 8:36 AM To: CF-Talk Subject: Regular Expression Help Hi, RegExp's are not my forte and

RE: Regular Expression Help....

2007-01-23 Thread Andy Matthews
This one might be better: http://www.manamplified.org/archives/000318.html -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 23, 2007 9:50 AM To: CF-Talk Subject: RE: Regular Expression Help This page might get you pointed in the right

Re: CFEclipse / Eclipse question

2007-01-23 Thread Andrew Scott
Ok, Dont think html, think your source code and with FusionDebug you are stepping through your coldfusion code. Simple as that On 1/24/07, Andy Matthews [EMAIL PROTECTED] wrote: Andrew... Can you explain FusionDebug? How does it allow you to step through your code if you have queries on

Need a good JavaScript Forum

2007-01-23 Thread coldfusion . developer
Does anyone know a good, heavy traffic JavaScript forum? Thanks. D ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 MX7 integration create powerful cross-platform RIAs

Re: CFEclipse / Eclipse question

2007-01-23 Thread Jacob Munson
It actually ties into the ColdFusion server at pauses it's processing. On 1/23/07, Andy Matthews [EMAIL PROTECTED] wrote: Andrew... Can you explain FusionDebug? How does it allow you to step through your code if you have queries on the page? Andy matthews -Original Message-

RE: CFEclipse / Eclipse question

2007-01-23 Thread Doug Bezona
Just FYI, the recent Flex Builder update (2.0.1) contains updated plugins which better support 3.2. * RDS plugin - This is from macromedia, but allows me to connect to a remote site and do the normal RDS stuff for coldfusion although this has bugs when using eclipse 3.2

Re: Regular Expression Help....

2007-01-23 Thread Dave Phillips
Thanks, I'm working on something with that now, but does anyone know if there is a function or tag out there someone has already written that does this? It seems that I should not be the first person who needs to feed a function a body of text and get back a list of the URL's in that text.

RE: Need a good JavaScript Forum

2007-01-23 Thread Andy Matthews
I'd say that Sitepoint's js forum is pretty high-traffic. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 23, 2007 9:57 AM To: CF-Talk Subject: Need a good JavaScript Forum Does anyone know a good, heavy traffic JavaScript forum? Thanks. D

RE: CFEclipse / Eclipse question

2007-01-23 Thread Andy Matthews
That's what I mean...is there docs on how to get this working from within CFEclipse? I have a specific page that I'd love to use this on. -Original Message- From: Jacob Munson [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 23, 2007 9:57 AM To: CF-Talk Subject: Re: CFEclipse / Eclipse

Re: CFEclipse / Eclipse question

2007-01-23 Thread Andrew Scott
Sure on the FusionDebug website On 1/24/07, Andy Matthews [EMAIL PROTECTED] wrote: That's what I mean...is there docs on how to get this working from within CFEclipse? I have a specific page that I'd love to use this on. -Original Message- From: Jacob Munson [mailto:[EMAIL

Re: Better way to send nulls to a Stored Proc?

2007-01-23 Thread Teddy Payne
If you do not pass in a value to the stored procedure and put a default value inside the stored procedure, the parameter becomes not required and thus you can set it equal to NULL in the stored procedure. You do not need to YesNoFormat the data. You can pass an empty string to the stored

Re: Do I use a view for this?

2007-01-23 Thread Will Tomlinson
Neil made me forget it! It's his fault! heehehee... Nahh.. I got it worked out I think. Thanks for the help. Will ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 MX7 integration create powerful cross-platform RIAs

Re: Need a good JavaScript Forum

2007-01-23 Thread Cutter (CFRelated)
I've been on the following list even longer than I've been on HOF (and that's a while) Javascript mailing list [EMAIL PROTECTED] https://lists.LaTech.edu/mailman/listinfo/javascript [EMAIL PROTECTED] wrote: Does anyone know a good, heavy traffic JavaScript forum? Thanks. D

Re: Do I use a view for this?

2007-01-23 Thread Teddy Payne
If you are performing more thn your average calculations upon columns, I would recommend using table variables. It creates the ability to store data into a temporary variable that acts just like a table. It does not store the table variable in the tempDB and keeps it active in RAM until it is

Re: Coldfusion RSS Aggregator

2007-01-23 Thread Raymond Camden
Tom, be sure to ping me with any fixes you make. I don't read cf-talk every day, so email me directly. On 1/23/07, Tom King [EMAIL PROTECTED] wrote: Ha, that looks great. But I'm broke :) T On 23 Jan 2007, at 15:06, Pete Freitag wrote: On 1/23/07, Tom King [EMAIL PROTECTED] wrote: Or

Re: Regular Expression Help.... (Solution?)

2007-01-23 Thread Dave Phillips
I think I have a solution, but if a few of you could review and see if it can be any faster or more efficient (or if I'm missing something) I'd appreciate it. To find the end of the URL I'm looking for a single quote, double quote or space. function extractURLs(inputString) { var

RE: Apache config

2007-01-23 Thread Russ
-Original Message- From: Robertson-Ravo, Neil (RX) [mailto:Neil.Robertson- [EMAIL PROTECTED] Sent: Tuesday, January 23, 2007 3:53 AM To: CF-Talk Subject: Re: Apache config As Dave noted, as a matter of course you should have at least a Dev and Testing environment. Ideally an R

Re: Verity Issue

2007-01-23 Thread Dave Phillips
Rich, Can you post your CFINDEX code? Also, have you tried deleting and re-creating yoru collections? Dave Has anyone else seen this error when trying to index a collection. We are on CFMX 7.0.2. General failure. (-2) The specific sequence of files included or processed is:

error emails firing for no reason

2007-01-23 Thread Barthle, Robert \(Contractor\)
I have a page that is acting extremely strange. It's a simple form processing page that runs validation against some of the passed form fields. If it fails any of the checks, it displays a basic error message and asks the user to go back to the form to fix the changes (this was not my work,

RE: Apache config

2007-01-23 Thread Russ
-Original Message- From: Robertson-Ravo, Neil (RX) [mailto:Neil.Robertson- [EMAIL PROTECTED] Sent: Tuesday, January 23, 2007 3:47 AM To: CF-Talk Subject: Re: Apache config Re: IIS multiple domain tools, I am unsure how they are ugly workarounds? I mean, what is ugly about a one

Re: CFEclipse / Eclipse question

2007-01-23 Thread Charlie Griefer
On 1/23/07, Andy Matthews [EMAIL PROTECTED] wrote: That's what I mean...is there docs on how to get this working from within CFEclipse? I have a specific page that I'd love to use this on. Andy: Charlie Arehart did a slew of articles and blog entries (and presentations) on Fusion Debug. Check

RE: CFEclipse / Eclipse question

2007-01-23 Thread Andy Matthews
Thanks Charlie! -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 23, 2007 10:48 AM To: CF-Talk Subject: Re: CFEclipse / Eclipse question On 1/23/07, Andy Matthews [EMAIL PROTECTED] wrote: That's what I mean...is there docs on how to get this

RE: Apache config

2007-01-23 Thread Russ
-Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 23, 2007 1:25 AM To: CF-Talk Subject: RE: Apache config I don't have anything against learning new things, but I don't care at all for the evangelism. If someone says Apache beats the pants

Re: Better way to send nulls to a Stored Proc?

2007-01-23 Thread David Gardner
Yep, I used... nullif(@DateIn,'') and it worked just fine. I suspected that T-SQL could do it cleanly, but my skills at T-SQL null-handling are very weak. Thanks Niall, and Teddy On 1/23/07, Niall O'Doherty [EMAIL PROTECTED] wrote: Just thinking out of the box here, and not sure if this is

Re: Verity Issue

2007-01-23 Thread Rich Sloan
Hi dave the code is listed below. This is the only thing in the template. I have tried deleting and recreating the collection and I get the same error. cfindex action=Refresh collection=all_products key=F:\wwwroot\cxdev\ type=PATH urlpath=http://cxdev2.trizetto.com;

RE: Regular Expression Help....

2007-01-23 Thread Ben Nadel
Dave, This snippet takes your regular expression and returns all matches in an array: http://www.bennadel.com/index.cfm?dax=snippets:11.view You can then take that and convert it to a list (but I would guess keeping it in an array is the way to go). After that, all you need is a good RegExp,

RE: Regular Expression Help.... (Solution?)

2007-01-23 Thread Ben Nadel
Oh sorry, I didn't see the Solution email before I posted my last snippet. What you are doing below is fine. I cannot attest to the RegEx. You might want to try grabbing something of of RegExLib.com if you are unsure. I do know you should probably check for period . to end a URL, but do not

Re: Apache config

2007-01-23 Thread Jordan Michaels
Dave Watts wrote: However, for the 5-10 person development shop (which most development companies are) this is not a practical solution. It would cost more to set up the infrastructure for this then it would to simply deal with the extremely rare patch problems when they arise. Most

Image size

2007-01-23 Thread Dave Francis
I am on CF5.0. Is there anything out there that lets me determine an image's width, height and filesize? TIA, Dave ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 MX7 integration create powerful

Re: Image size

2007-01-23 Thread Dave Phillips
Dave, I seem to remember there being a CFX_Image or CFX_ImageInfo. Google that. Dave I am on CF5.0. Is there anything out there that lets me determine an image's width, height and filesize? TIA, Dave ~|

RE: Image size

2007-01-23 Thread Chad Gray
Efflare.com has ImageCR that can do what you want. I use them all the time and they are rock solid applications. Chad -Original Message- From: Dave Francis [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 23, 2007 12:26 PM To: CF-Talk Subject: Image size I am on CF5.0. Is there

Re: Flash forms and charset question

2007-01-23 Thread Yves Arsenault
Hey there, These settings in the Application.cfm file seemed to be the problem. cfcontent type=text/html; charset=ISO-8859-1 cfset setEncoding(Form, ISO-8859-1) After taking that out, it works. When this site was first coded, it ran on Linux+Apache+BlueDragon+MySQL4.1 Now it's on Windows

Flash Forms timeout issue

2007-01-23 Thread Bruce Sorge
I am having a problem with Flash Forms timing out. I have a form that allows the user to enter a coupon code. If they enter the wrong code then I give them a link back to the previous page that the textbox control reloads. However, if the user clicks the backspace button like I usually do in these

RE: Image size

2007-01-23 Thread Dave Francis
Could someone pls clear this up for me. I thought that CFX_'s require CF6 or greater? -Original Message- From: Dave Phillips [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 23, 2007 11:18 AM To: CF-Talk Subject: Re: Image size Dave, I seem to remember there being a CFX_Image

Re: CFML IDE's

2007-01-23 Thread Mark Drew
Which Mark? Not sure which sandwich it was, but I am assuming that you mean the wouldn't touch it with a barge pole is a saying which means: its so disgusting I wouldn't even poke it with a stick, a stick that belongs to someone else, and has already been thrown away. Make sense? MD On 23

Re: Image size

2007-01-23 Thread Bruce Sorge
I believe that CF 5 and up supports CFX tags. -- Bruce Sorge I'm a mawg: half man, half dog. I'm my own best friend! On 1/23/07, Dave Francis [EMAIL PROTECTED] wrote: Could someone pls clear this up for me. I thought that CFX_'s require CF6 or greater?

Re: Image size

2007-01-23 Thread Dave Phillips
Dave, If you have access to your CF Administrator you should be able to add CFX's in CF 5. I remember doing that years ago. Check out your administrator pages. There should be a place where you can specify your CFX tags. Dave Could someone pls clear this up for me. I thought that CFX_'s

RE: Image size

2007-01-23 Thread Chad Gray
It depends on the CFX. You can load CFXs in 4.5 but it does not mean that all CFXs will run on 4.5. -Original Message- From: Dave Francis [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 23, 2007 1:14 PM To: CF-Talk Subject: RE: Image size Could someone pls clear this up for

Re: Image size

2007-01-23 Thread Charlie Griefer
CFX tags go back quite a ways. In the pre-MX days (when CF was written on C++), they were generally compiled C++ code. On 1/23/07, Chad Gray [EMAIL PROTECTED] wrote: It depends on the CFX. You can load CFXs in 4.5 but it does not mean that all CFXs will run on 4.5. -Original

RE: Image size

2007-01-23 Thread Adrian Lynch
Has anyone else read this and suddenly felt very old?! I started on 4 and you're all talking like it was 6 odd years ago... oh, it was! :Oo Ade -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: 23 January 2007 18:28 To: CF-Talk Subject: Re: Image size CFX

RE: Image size

2007-01-23 Thread Dave Watts
Could someone pls clear this up for me. I thought that CFX_'s require CF6 or greater? No, they were introduced in CF 1.5, if I recall correctly. They had to be written in C++ until either 4 or 5, I think. CFML custom tags were introduced in CF 3. Dave Watts, CTO, Fig Leaf Software

  1   2   >