RE: Non Verity CF web spider?
Once I took the code off the weak test machine and put it on the production boxes. The speed was much faster but not ideal. Any ideas are encouraged. Rick ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Non Verity CF web spider?
Hi, I've built a custom CF5 web spider using cfhttp, lists, rereplace and loops. After 200 pages it gets really slow, I have 3000 pages to go. Would accessing VB/COM objects via CF help? Would doing it in asp help? Verity and other copy-a-site programs aren't really an option at this point, I have too much to filtering and output (string) maniputaltion to do. Thanks, Rick ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: Managing DNS via a browser
Clint, Not sure if this is what you're looking for, but we use these folks a lot. There customer service is very good, and you can control all aspects of your DNS account from a web browser. http://www.easydns.com Rick - Original Message - From: "Clint Tredway" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, November 01, 2001 7:08 AM Subject: OT: Managing DNS via a browser > Does anyone know of a current solution cf based or not, that will allow you to manage DNS records via a browser? > > Thanks in advance! > > ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: Security with forms
#REReplace(TRIM(form.variable), "<[^>]*>", "", "all")# - Original Message - From: "Michael T. Tangorre" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Sunday, October 28, 2001 2:13 PM Subject: Security with forms > Hey everyone, > are there any good tags out there that will check and make sure or strip > out any CF code that might be inserted into a form element... > > Thanks, > Mike > > > ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
OT: IIS Lockdown Tool
http://www.microsoft.net/Downloads/Release.asp?ReleaseID=32362 HTH, Rick Moon ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Is CFObjects ready for enterprise applications?
Hello, The CF app I'm embarking on now is quite large. I usually build my apps from the ground up, but since it's my belief that CF's purpose is to help us avoid reinventing the wheel each time, I'm looking at standardized models. I'm aware of FuseBox and it's seems to have a loyal following. I'm intrigued by the CFobjects concept, but has anyone used it on a large project? TIA, Rick __ Do You Yahoo!? Talk to your friends online with Yahoo! Messenger. http://im.yahoo.com -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
CFObjects ready for enterprise applications?
I'm intrigued by the concept, but has anyone used on a large project? I'm aware of FuseBox, haven't used it yet. I'm tempted to build my pending application from scratch, but the whole point of CF seems to be avoiding reinventing the wheel every time. TIA, Rick __ Do You Yahoo!? Talk to your friends online with Yahoo! Messenger. http://im.yahoo.com -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
Do SERVER. variables need CFLocking?
See subject... TIA Rick __ Do You Yahoo!? Talk to your friends online with Yahoo! Messenger. http://im.yahoo.com -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
Re: Need to take several row query and make into one row.
Hi all, Thank you for the feedback, you really got me thinking. To put it very simply, in order to take the db row values and convert them to column names with values, I created a new structure. A Structure allowed me to create multiple virtual columns. A structures column labels are called keys, and the "one" row value is the structure value. Proposed benefits... If you have a side side nav that you don't want to hard code, but keep in a db you can type the variables without looping or query or evaluating. // The following will be set in application.cfm with a IsDefined checker. SELECT * FROM SideNavTable // Now the display page is simplified. #MyStructureSideNav.Home# #MyStructureSideNav.ContactUS# // The beauty is now I can simply use a local query variable #SomeOtherQuery.SpecialDeal# Thanks again, and hope it helps others. Any points of clarification, esp since I'm just starting to grasp the structure concept, are encouraged. Rick - Original Message - From: "Kevin Marshall" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 10, 2000 8:11 AM Subject: Re: Need to take several row query and make into one row. > Rick, > > You may want to take a look at a custom tag called CF_QueryToStruct. > Basically it will take a query like yours and convert it to a struct that > would look like this: > MyQuery.MyVar.MyValue > > I've used this tag with great success in a situation something like yours. > > Find the tag at: > http://devex.allaire.com/developer/gallery/info.cfm?ID=CA34740D-2830-11D4-AA > 9700508B94F380&method=Full > (yep, the url probably wrapped - if you want, just search in the Developers > Exchange for "QuerytoStruct") > > Kevin > > > At 05:16 PM 7/9/00 -0700, you wrote: > >Hello, > > > >The "why" for the following is an email unto itself, so if possible any > >ideas on "how" would be greatly appreciate. > > > >The cfquery name="MyQuery" is selecting from the following db table: > > > >MyKey|MyVar| MyValue > >- > >0001|ClientName |Rick > >0002|SeminarsFor|aerospace > >0003|RAMPrice|stable > > > >Now I need to write (without looping or cfifing or cfswitching) or (changing > >the the table itself) and (caching of some sort is desired): > > > >The name of your seminar is: #MyQuery.SeminarsFor# > >The state of CA is: #SomeOtherQuery.HighTaxes# > > > >The only way I've been able to do it so far is to rebuild the above table > >into: > >ClientName |SeminarsFor|RAMPrice > > > >Rick|aeospace| stable > > > >But this constant table manipulation isn't practical. > > > >Is the answer in sql? structures? arrays? or ? > > > >TIA, > > > >Rick > > -- > Kevin Marshall > Web Application Developer > eCalton.com, Inc. > Vero Beach, FL > www.ecalton.com > [EMAIL PROTECTED] > 561.569.4500 > > -- > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ > To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body. __ Do You Yahoo!? Talk to your friends online with Yahoo! Messenger. http://im.yahoo.com -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
Re: CFUG question
Tammy, Reference: http://www.allaire.com/developer/cfugapps/cfug_grouplist.cfm Rick - Original Message - From: "Tammy Schilling" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 10, 2000 4:18 PM Subject: CFUG question > Hi everyone. > > Does anyone know of any CFUGs on/near the Eastern Shore of MD? > > Thanks! > > Tammy > > > > -- > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ > To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body. __ Do You Yahoo!? Talk to your friends online with Yahoo! Messenger. http://im.yahoo.com -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
Re: Need to take several row query and make into one row.
David, Thank you for the attempt to understand the challenge at hand. ValueList is a clever attempted work around, except I won't be able to use a "where" statement in the query. Every MyVar needs to be available at once. Questions attempting clarification of the problem are encouraged and so are solutions :-) Rick - Original Message - From: "David Cummins" <[EMAIL PROTECTED]> > > select * from MyTable where MyVar='SeminarsFor' > > > The name of your seminar is: #valuelist(getseminars.MyValue) > > > This will return all the seminars as a comma delimited list. > > David Cummins > Systems Developer > Ubiquity Software Ltd > > Rick Moon wrote: > > > > Hello, > > > > The "why" for the following is an email unto itself, so if possible any > > ideas on "how" would be greatly appreciate. > > > > The cfquery name="MyQuery" is selecting from the following db table: > > > > MyKey|MyVar| MyValue > > - > > 0001|ClientName |Rick > > 0002|SeminarsFor|aerospace > > 0003|RAMPrice|stable > > > > Now I need to write (without looping or cfifing or cfswitching) or (changing > > the the table itself) and (caching of some sort is desired): > > > > The name of your seminar is: #MyQuery.SeminarsFor# > > The state of CA is: #SomeOtherQuery.HighTaxes# > > > > The only way I've been able to do it so far is to rebuild the above table > > into: > > ClientName |SeminarsFor|RAMPrice > > > > Rick|aeospace| stable > > > > But this constant table manipulation isn't practical. > > > > Is the answer in sql? structures? arrays? or ? > > > > TIA, > > > > Rick > > > > __ > > > > Do You Yahoo!? > > > > Talk to your friends online with Yahoo! Messenger. > > > > http://im.yahoo.com > > > > -- > > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ > > To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body. > -- > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ > To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body. __ Do You Yahoo!? Talk to your friends online with Yahoo! Messenger. http://im.yahoo.com -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
Need to take several row query and make into one row.
Hello, The "why" for the following is an email unto itself, so if possible any ideas on "how" would be greatly appreciate. The cfquery name="MyQuery" is selecting from the following db table: MyKey|MyVar| MyValue - 0001|ClientName |Rick 0002|SeminarsFor|aerospace 0003|RAMPrice|stable Now I need to write (without looping or cfifing or cfswitching) or (changing the the table itself) and (caching of some sort is desired): The name of your seminar is: #MyQuery.SeminarsFor# The state of CA is: #SomeOtherQuery.HighTaxes# The only way I've been able to do it so far is to rebuild the above table into: ClientName |SeminarsFor|RAMPrice Rick|aeospace| stable But this constant table manipulation isn't practical. Is the answer in sql? structures? arrays? or ? TIA, Rick __ Do You Yahoo!? Talk to your friends online with Yahoo! Messenger. http://im.yahoo.com -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
Re: New CF Server
I have it running in my shop and it's faster than the previous NT 4.0 setups. Just keep sql7 off the cf server. Rick - Original Message - From: "Christine Kelley" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, June 09, 2000 7:53 PM Subject: New CF Server > This is a multi-part message in MIME format. > > --=_NextPart_000_0019_01BFD24C.62C21FE0 > Content-Type: text/plain; > charset="iso-8859-1" > Content-Transfer-Encoding: quoted-printable > > Hi all! > Sorry if this is a duplicate post (posted it a few hours ago, but = > haven't seen it come up yet). > A client wants a new CF server built with Win2K and CF server 4.5.1 = > (with a SQL server back-end on a different machine). Any advantages or = > disadvantages to be aware of before filling this request? Would there = > be a better combination? One last question...is 4.5.1 better than 4.0.1? = > I've read through the archives, but that seemed to turn the water into = > mud :) > Thanks, Christine > [EMAIL PROTECTED] > > --=_NextPart_000_0019_01BFD24C.62C21FE0 > Content-Type: text/html; > charset="iso-8859-1" > Content-Transfer-Encoding: quoted-printable > > > > http-equiv=3DContent-Type> > > > > > Hi all! > Sorry if this is a = > duplicate=20 > post (posted it a few hours ago, but haven't seen it come up = > yet). > A client wants a new CF server built = > with Win2K and=20 > CF server 4.5.1 (with a SQL server back-end on a different = > machine). Any=20 > advantages or disadvantages to be aware of before filling this = > request? =20 > Would there be a better combination? One last question...is 4.5.1 better = > than=20 > 4.0.1? I've read through the archives, but that seemed to turn the = > water=20 > into mud :) > =20 > = > =20 > Thanks, Christine > =20 > = > =20 > href=3D"mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED] > > > --=_NextPart_000_0019_01BFD24C.62C21FE0-- > > -- > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ > To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body. __ Do You Yahoo!? Talk to your friends online with Yahoo! Messenger. http://im.yahoo.com -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body.