Re: validating email CF11

2015-01-15 Thread Scott Slone
You might want to look at Mailgun - http://www.mailgun.com/email-validation they have jquery implementation (https://github.com/mailgun/validator-demo) /S Ben mailto:b...@webworldinc.com January 15, 2015 at 9:35 AM Given how often TLDs are changing is there a way in CF to do a

Re: validating email CF11

2015-01-15 Thread Dave Watts
isValid(email,name@gmail) is returning a Yes Am I missing something or is this a bug. As far as I know CF9 would have returned NO Well, it's not really a bug. Within certain contexts, that would in fact be a valid email address. It obviously wouldn't be a valid email address on a public

Re: validating email CF11

2015-01-15 Thread Ben
Given how often TLDs are changing is there a way in CF to do a verification that the domain name exists? That would seem simpler. Ben On Jan 15, 2015, at 10:06 AM, Byron Mann byronos...@gmail.com wrote: With all the new top level domains available now (), you are better with a regex

Re: validating email CF11

2015-01-15 Thread Byron Mann
DNS lookup might suffice just to verify the domain is valid (ie, registered). ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

RE: validating email CF11

2015-01-15 Thread Robert Harrison
I had similar issues with this... use the script below instead of CF. You can do an onBlur=validateEmail(); on the email field. function validateEmail(){ var emailRegEx = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/; str =

Re: validating email CF11

2015-01-15 Thread Rob Voyle
Thanks Robert Your code limits TLD to 4 which would catch .museum What are people setting as a limit on TLDs Rob On 15 Jan 2015 at 9:53, Robert Harrison wrote: I had similar issues with this... use the script below instead of CF. You can do an onBlur=validateEmail(); on the email field.

RE: validating email CF11

2015-01-15 Thread Robert Harrison
Thanks, I'm aware. You can change that if you'd like, but so far from the 200 plus sites I've done, I've never has a .museum address. It could happen; someone does the museum sites :-) If you want another that uses CF and allows museum, you could try the function below... someone on the list

Re: CF Builder 3

2015-01-15 Thread Casey Dougall
My memory isn't what it use to be... Good thing we have a nice archive now... https://www.copy.com/s/nhIbHZYZnmPN/ColdFusion%20Repo On Jan 15, 2015 4:20 PM, Michael Grant mgr...@modus.bz wrote: I seem to remember TopStyle being on the CF5 discs along with CF Studio. Or was it CF 6, which

Re: CF Builder 3

2015-01-15 Thread Michael Grant
I seem to remember TopStyle being on the CF5 discs along with CF Studio. Or was it CF 6, which was MX wasn't it? I can't remember. That was ages ago. What I do remember is that I absolutely loved the RDS features on CF Studio. I was gutted when I had to stop using CF Studio for lack of

Re: CF Builder 3

2015-01-14 Thread Dave Watts
I don't know about pre dating it, I have been using Studio since 1995, when Allaire purchased it. They then decided to release Homesite and then Homesite+ I know about it, because I used Homesite before Allaire bought it. I switched from HotDog to Homesite before Allaire got involved. After

Re: CF Builder 3

2015-01-14 Thread Andrew Scott
Wil, I am not sadly misinformed at all. Nick Bradley created a product called Top Style, which I used extensively in those days. Allaire then purchased that program from Nick and rebadged it as Homesite, Homesite Studio was the first version which followed by the free version called Homesite.

Re: CF Builder 3

2015-01-14 Thread Andrew Scott
Sorry that should be 1996 not 1995 Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Thu, Jan 15, 2015 at 11:14 AM, Andrew Scott andr...@andyscott.id.au wrote: I don't know about pre dating it, I have been using Studio since

Re: CF Builder 3

2015-01-14 Thread Andrew Scott
I don't know about pre dating it, I have been using Studio since 1995, when Allaire purchased it. They then decided to release Homesite and then Homesite+ The only difference between the two, was that Studio had far more features. When Studio was discontinued, they then decided to release

Re: CF Builder 3

2015-01-14 Thread Andrew Scott
And it was called Top Style before Allaire bought it and rebranded it as Homesite Studio in 1996. Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Thu, Jan 15, 2015 at 11:16 AM, Andrew Scott andr...@andyscott.id.au wrote:

Re: CF Builder 3

2015-01-14 Thread Wil Genovese
Scott, You are sadly misinformed. Nick Bradbury created Homesite and then sold it to Allaire. Later Nick also created Top Style as a stand alone CSS Editor. Homesite was originally developed in Borland Delphi in 1995 by Nick Bradbury. Bradbury wrote HomeSite after using HotDogand being

Re: CF Builder 3

2015-01-14 Thread Dave Watts
Nick Bradley created a product called Top Style, which I used extensively in those days. Allaire then purchased that program from Nick and rebadged it as Homesite, Homesite Studio was the first version which followed by the free version called Homesite. Studio did things that Homesite could

Re: CF Builder 3

2015-01-14 Thread Andrew Scott
And for fuck sake my name is not Scott, but then if you can get that wrong you can get your facts wrong about Studio as well. Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Thu, Jan 15, 2015 at 12:15 PM, Andrew Scott

Re: CF Builder 3

2015-01-14 Thread Dave Watts
hotdog? homesite? geez, kids today don't know how lucky they got it. hands up if you remember the 1st commercial windows webserver (hint it wasn't IIS)? In fairness, Bob Denny's WebSite Pro was around about the same time - in fact, there was some sort of bundling available with it and CF

Re: CF Builder 3

2015-01-14 Thread M.A. Kruger
Andrew, I seem to remember that topstyle shipped with cf studio and with homesite. how could homesite be a later version of topstyle? Sent from my iPhone On Jan 14, 2015, at 7:16 PM, Andrew Scott andr...@andyscott.id.au wrote: And for fuck sake my name is not Scott, but then if you can

Re: CF Builder 3

2015-01-14 Thread Wil Genovese
I guess we could just ask Nick http://en.wikipedia.org/wiki/Nick_Bradbury Who knew he had his own Wikipedia page? Wil Genovese On Jan 14, 2015, at 8:52 PM, Andrew Scott andr...@andyscott.id.au wrote: Because Homesite and Studio where to be its replacement and when Nick wasn't

Re: CF Builder 3

2015-01-14 Thread Paul Hastings
On 1/15/2015 8:24 AM, Dave Watts wrote: I know about it, because I used Homesite before Allaire bought it. I switched from HotDog to Homesite before Allaire got involved. After hotdog? homesite? geez, kids today don't know how lucky they got it. hands up if you remember the 1st commercial

Re: CF Builder 3

2015-01-14 Thread Andrew Scott
​Dave, I don't recall what the features where, but I tried to upgrade to Homesite+ and all the features that I came used too, where not in Homesite+ when Studio was discontinued. That was when I switched to Dreamweaver, but I can dig up the emails where I asked Macromedia to include those in

Re: CF Builder 3

2015-01-14 Thread Andrew Scott
Ok it appears I have my dates wrong. Homesite was 1995, ColdFusion studio was 1996 and Homesite+ was 1998. But it still doesn't excuse the fact that Studio was the better of them all, it had more features than Homesite put together and Homesite+ when introduced, did not have everything that

Re: CF Builder 3

2015-01-14 Thread Russ Michaels
because it was FREE and used to come on CD with Dreamweaver and CF I believe On Wed, Jan 14, 2015 at 4:11 AM, Andrew Scott andr...@andyscott.id.au wrote: I can never understand why Homesite was so popular, it's bigger brother was the better of the two. Which was Studio. But as it is old and

Re: CF Builder 3

2015-01-14 Thread Andrew Scott
Because Homesite and Studio where to be its replacement and when Nick wasn't happy with Macromedia he left and continued development on Topstyle. Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Thu, Jan 15, 2015 at 1:46 PM,

Re: CF Builder 3

2015-01-14 Thread Andrew Scott
So was Studio as it was shipped with ColdFusion 5. Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Thu, Jan 15, 2015 at 1:38 AM, Russ Michaels r...@michaels.me.uk wrote: because it was FREE and used to come on CD with

Re: CF Builder 3

2015-01-14 Thread Dave Watts
I can never understand why Homesite was so popular, it's bigger brother was the better of the two. Which was Studio. My memory here is a little hazy, as I haven't used either one for a long time, but I recall it being a little more complicated than that. As Wil mentioned, Homesite predated CF

Re: CF Builder 3

2015-01-14 Thread Rob Voyle
I had problems with studio on win 7 freezing when doing extended search/replace which was what I continued to use homesite for. Rob On 15 Jan 2015 at 2:57, Andrew Scott wrote: So was Studio as it was shipped with ColdFusion 5.

Re: CF Builder 3

2015-01-14 Thread Wil Genovese
Starting way back in 1996 Homesite was the popular HTML editor BEFORE Allaire bought it from Nick Bradbury. It was in heavy competition with HotDog HTML Editor. Allaire made a deal with Nick and brought Homesite and him to Allaire. Then they made the CFStudio variant of Homesite. So Homesite

Re: CF Builder 3

2015-01-13 Thread Andrew Scott
Prior to CFB 3.0, yes if you used the Aptana search it had issues. The idea is to use the search from Eclipse itself. Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Wed, Jan 14, 2015 at 8:21 AM, Aaron Rouse

Re: CF Builder 3

2015-01-13 Thread Andrew Scott
I can never understand why Homesite was so popular, it's bigger brother was the better of the two. Which was Studio. But as it is old and ancient and not being updated any more, feel free to use 20 year old software. Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+:

Re: CF Builder 3

2015-01-13 Thread Aaron Rouse
I have had horrible luck with the CFBuilder Find. Just as one short example, last quarter I was asked to find some emails in a big project that the support person no longer was available for. My workstation at home has CFBuilder on it and it could not find one CFMail tag(or just the text

Re: CF Builder 3

2015-01-13 Thread Rob Voyle
Hi Aaron After much frustration I found that you need to select wrap search in the options box for the find to work. Still prefer homesite for project wide find and replace when upgrading an entire site. Rob Robert J. Voyle, Psy.D. Director, Clergy Leadership Institute For Coaching and

Re: CF Builder 3-2

2015-01-11 Thread Rob Voyle
Hi Steve As I recall it was only on things like cffile or cfcontent where I was manipulating file names. cfinclude was not impacted. Unfortunately I had got a bit lazy in my code having moved from a unix platform to windows about 8 years ago. Rob Robert J. Voyle, Psy.D. Director, Clergy

Re: CF Builder 3

2015-01-10 Thread Rob Voyle
Hi Steve I use cfbuilder 3 on my local development of applications (Win 7 machine). Having migrated from using Homesite (which I still use for its ease of extended find/replace across entire web projects) I am not very impressed with cfbuilder. It could be very useful and has some promise but

Re: CF Builder 3-2

2015-01-10 Thread Rob Voyle
Hi Steve One other thing if you are using a windows platform. CF11 is now built on Tomcat. Not much of a problem EXCEPT that some (but not all) file names will be case sensitive in some applications. Wasted a day on that one trying to debug an application that had worked fine on CF9. Rob

RE: CF Builder 3-2

2015-01-10 Thread Steve LaBadie
Thanks Ron i didn't know that cf11 could be case sensitive. Sent via the Samsung Galaxy S™ III, an ATT 4G LTE smartphone Original message From: Rob Voyle Date:01/10/2015 12:30 PM (GMT-05:00) To: cf-talk Subject: Re: CF Builder 3-2 Hi Steve One other thing if you are using

Re: CF Builder 3

2015-01-10 Thread Russ Michaels
I have tried out a few editors and stuck with sublime as my general all round text editor. But the tag/function insight and completion for cfml is not complete and unless you know every attribute of every tag and function then you have to resort to docs. I have to say I still have a preference

Re: CF Builder 3

2015-01-10 Thread John M Bliss
I'll add: while you're checking stuff out, be sure to check out: http://brackets.io Has a CFML extension, is super-fast lightweight, has great find-and-replace, and has amazing front-end dev tools. On Sat, Jan 10, 2015 at 12:23 PM, Rob Voyle robvo...@voyle.com wrote: Hi Steve I use

Re: CF Builder 3

2015-01-10 Thread Andrew Scott
On Sun, Jan 11, 2015 at 4:23 AM, Rob Voyle robvo...@voyle.com wrote: Hi Steve I use cfbuilder 3 on my local development of applications (Win 7 machine). Having migrated from using Homesite (which I still use for its ease of extended find/replace across entire web projects) ​The

Re: Adobe ColdFusion Blog futzed?

2015-01-09 Thread Dave Watts
Is it just me or is the Adobe ColdFusion Blog (http://blogs.coldfusion.com/) messed up? I go to the home page and there are only two entries, one for Jan 1, 2015, and another for December 18, 2014. Nothing else, not even links to go anywhere else. If I go to one of those two pages I

RE: Adobe ColdFusion Blog futzed?

2015-01-09 Thread Robert Harrison
Looks OK to me... Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234 ext.121 Direct Line: 516-302-4345 www.aimg.com ~| Order the Adobe Coldfusion Anthology now!

Re: Moving to Railo

2015-01-09 Thread Mik Muller
Well, not so painless, actually, as one of my applications runs 220 websites and that goes beyond Tomcat's ability with a single connector or server.xml, so I decided to try it under Apache, and am currently having rewriteRules problems. But they'll get solved. I'm 95% of the way there.

Re: CF10 Updater 14

2015-01-09 Thread george.e...@ssa.gov george.e...@ssa.gov
Ok, I finally got to Krishna Reddy's blog post that announced Updater 14 and I'm wading through the 147 comments. (had to go through coldfusionBloggers.org) Any input and thoughts still appreciated. Thanks! George When CF10 Updater 14 was released in October a lot of folks seemed to have

Re: CF10 Updater 14

2015-01-09 Thread Jon Clausen
Haven’t tried it on Solaris, but I would suggest skipping 14 and using the 15 update, which is cumulative anyway. Either way, I would suggest running the update through the command line, rather than CFAdmin. Personally, ever since update 12, I haven’t been able to perform a successful update

RE: Adobe ColdFusion Blog futzed?

2015-01-09 Thread David Phelan
Seems to be OK for me. -Original Message- From: george.e...@ssa.gov george.e...@ssa.gov [mailto:george.e...@ssa.gov] Sent: Friday, January 09, 2015 8:50 AM To: cf-talk Subject: Adobe ColdFusion Blog futzed? Is it just me or is the Adobe ColdFusion Blog (http://blogs.coldfusion.com/)

Re: Chat app (using CF websockets) has stopped working after upgrading to CF11

2015-01-07 Thread Parul Bali
Bryon, My custom channel listener does extend 'CFIDE.websocket.ChannelListener', but if CFIDE's Channel Listener is inaccessible, I get the error that my custom ChannelListener is not a valid ChannelListener handler. So locking down of CFIDE is ruled out. Thanks On Wed, Jan 7, 2015 at 8:45

Re: Chat app (using CF websockets) has stopped working after upgrading to CF11

2015-01-07 Thread Parul Bali
Hi Bryon, I use my own custom channel listener CFC. So that's probably not the issue. Thanks for your help. Hi Jack, The websockets are enabled in CFAdmin. Thanks. It was working right before the upgrade to CF11, so wondering if there's anything to be kept in mind while upgrading - that I

Re: Chat app (using CF websockets) has stopped working after upgrading to CF11

2015-01-07 Thread Russ Michaels
The master CFIDE must be locked down, otherwise you are opening yourself up to be hacked. One of the standard best practices I have documented since CF6 is to make a copy of the CFIDE with only the minimal required files and to use this as the vDir in your sites if required. This will then

Re: Chat app (using CF websockets) has stopped working after upgrading to CF11

2015-01-07 Thread Russ Michaels
ok sorry thought you were saying you could not lock down CFIDE cozz you used web sockets. are you able to access the CFC directly via the browser using the cfc browser? On Wed, Jan 7, 2015 at 12:44 PM, Parul Bali parul.sarasw...@gmail.com wrote: Thanks Russ, we do follow these practices on

Re: Chat app (using CF websockets) has stopped working after upgrading to CF11

2015-01-07 Thread Russ Michaels
when you upgraded CF, are you sure the CFIDE got upgraded as well. If you have it in a non standard place then this would not have happened. during installation it would have verified the path it was using. are you using the default one at cfinstall\ cfusion\wwwroot\cfide, if not then try using

Re: Chat app (using CF websockets) has stopped working after upgrading to CF11

2015-01-07 Thread Parul Bali
Thanks Russ, we do follow these practices on Production, but right now am testing locally. So was just ruling that out as the issue that might be breaking my Websockets' application which suddenly stopped working after upgrading to CF11. So was wondering if anyone's faced such Websocket issues

Re: Chat app (using CF websockets) has stopped working after upgrading to CF11

2015-01-07 Thread Parul Bali
No worries Russ. Yes, I'm able to access 'CFIDE.websocket.ChannelListener' directly using the cfc browser. Also, it seems that the cfwebsocket tag isn't creating the javascript websocket object at all, because when i try calling the startup functions directly thru the console, i get the error

Re: Running Command line stuff...

2015-01-07 Thread Larry Lyons
Have you tried creating a batch file, then running CFExecute on that? hth, larry I've searched and found a dozen ways to run a command line application via ColdFusion, none of which seem to work. Can anyone show me the right way? I want to run a program called ffmpeg.exe from the

Re: Chat app (using CF websockets) has stopped working after upgrading to CF11

2015-01-07 Thread Byron Mann
Maybe a missing CF Mapping for the custom listener path? So does something like createObject(component, 'myPath.myCustomListener') work? You mentioned an upgrade, is CF 10 still running on the server? Maybe a port conflict if that's the case. I would check all the CF 11 logs to see if there

Re: Chat app (using CF websockets) has stopped working after upgrading to CF11

2015-01-06 Thread Jack Traynor
There is an option in CFAdmin that enables websockets, make sure that is still enabled after your upgrade. On Wed, Jan 7, 2015 at 3:06 AM, Byron Mann byronos...@gmail.com wrote: Any chance you locked down the CFIDE on the new install and you are using the default listener

Re: Selling ColdFusion License?

2015-01-06 Thread Andy Allan
, Richard White rich...@re-base.net wrote: Hi, If we purchased a copy of ColdFusion 10 license, is there any issues if we sell it to another body? Thank you, Richard ~| Order the Adobe Coldfusion Anthology now! http

Re: CF Builder 3

2015-01-06 Thread J.J. Merrick
: Tuesday, January 06, 2015 1:23 PM To: cf-talk Subject: Re: CF Builder 3 ColdFusion Builder 3 is an IDE based on Eclipse. You can install as standalone or as a plugin for an existing Eclipse setup. - oh and desktop NOT the server. Regards, Wil Wil Genovese Sr. Web Application Developer

RE: CF Builder 3

2015-01-06 Thread Steve LaBadie
Thanks everyone for responding Happy New Year Steve LaBadie, Web Manager East Stroudsburg University 570-422-3999 slaba...@esu.edu -Original Message- From: Byron Mann [mailto:byronos...@gmail.com] Sent: Tuesday, January 06, 2015 1:41 PM To: cf-talk Subject: Re: CF Builder 3 I

Re: Chat app (using CF websockets) has stopped working after upgrading to CF11

2015-01-06 Thread Byron Mann
Any chance you locked down the CFIDE on the new install and you are using the default listener CFIDE\websocket\ChannelListner.cfc? http://help.adobe.com/en_US/ColdFusion/10.0/Developing/WSe61e35da8d318518767eb3aa135858633ee-7ffe.html I haven't used websockets extensively, so I hope I'm not

Re: CF Builder 3

2015-01-06 Thread Byron Mann
Builder is a desktop development environment (IDE), based on Eclipse. If you have not used Eclipse with CFEclipse or Builder, I would recommend giving it a go. Byron Mann Lead Engineer Architect HostMySite.com On Jan 6, 2015 1:20 PM, Steve LaBadie slaba...@po-box.esu.edu wrote: We just

RE: CF Builder 3

2015-01-06 Thread Steve LaBadie
Is it worth installing/using? Steve LaBadie, Web Manager East Stroudsburg University 570-422-3999 slaba...@esu.edu -Original Message- From: Wil Genovese [mailto:jugg...@trunkful.com] Sent: Tuesday, January 06, 2015 1:23 PM To: cf-talk Subject: Re: CF Builder 3 ColdFusion

Re: CF Builder 3

2015-01-06 Thread Wil Genovese
ColdFusion Builder 3 is an IDE based on Eclipse. You can install as standalone or as a plugin for an existing Eclipse setup. - oh and desktop NOT the server. Regards, Wil Wil Genovese Sr. Web Application Developer/ Systems Administrator CF Webtools www.cfwebtools.com wilg...@trunkful.com

Re: CF Builder 3

2015-01-06 Thread Byron Mann
I use Sublime as well and love it for its simplicity. However, believe you can do real debugging with CF Builder. That may be a perk worth consideration. I do agree, changing dev methodologies can be time consuming, so maybe start off using it in your free time to get used to things. Byron

Re: Selling ColdFusion License?

2015-01-06 Thread Richard White
On 6 January 2015 at 15:15, Richard White rich...@re-base.net wrote: ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http

Re: CFthread

2015-01-02 Thread Dave Watts
Let's say I declare a series of CFthreads on a single page. These will process serially, not concurrently, right? Yes. What if one fails? Do the subsequent threads die with it, or do they continue to process after the failed one craps out? Each thread is a separate program. The failure

Re: Running Command line stuff...

2015-01-01 Thread Bill Moniz
Not sure what version of CF you're using, but have a look at the cfexecute tag. It can do what you need. On 2 January 2015 at 15:15, Les Irvin les.cft...@gmail.com wrote: I've searched and found a dozen ways to run a command line application via ColdFusion, none of which seem to work. Can

Re: Bad Gateway!

2014-12-31 Thread Byron Mann
I would look to the code then. Something running well today does not mean it will run well tomorrow. I would maybe run the process and watch fusion reactor to see when things go bad. Also check the CF logs for any exceptions. Byron

Re: Bad Gateway!

2014-12-31 Thread John M Bliss
An anomaly with a remote API was causing my CF server to attempt to instantiate ten thousand objects, crashing the server. On Wed, Dec 31, 2014 at 9:36 AM, Byron Mann byronos...@gmail.com wrote: I would look to the code then. Something running well today does not mean it will run well

RE: Trouble with ArrayAppend

2014-12-30 Thread David Phelan
: Dean Lawrence [mailto:dean...@gmail.com] Sent: Monday, December 22, 2014 3:28 PM To: cf-talk Subject: Re: Trouble with ArrayAppend Hi David, Yes, the tmpAddress variable is var scoped at the top of the method. I tried your suggestion of re-initializing the struct with each iteration, but it did

Re: Bad Gateway!

2014-12-30 Thread Byron Mann
This is the kind of error you might get when the CF service is down. First impression is something you are running is crashing the CF service. Anything in the logs that might indicate this is the case? Byron ~| Order the

Re: Bad Gateway!

2014-12-30 Thread John M Bliss
That's exactly what's happening. Thanks. On Tue, Dec 30, 2014 at 3:30 PM, Byron Mann byronos...@gmail.com wrote: This is the kind of error you might get when the CF service is down. First impression is something you are running is crashing the CF service. Anything in the logs that might

RE: onRequestStart onRequest variable assignments

2014-12-29 Thread David Phelan
Don, You state that certain variables are being reset so then I assume that others are maintaining their values? Is there any difference in scope between those that are maintaining their values and those that are not? Is there a conditional redirect happening in OnRequestStart? Dave

Re: Moving to Railo

2014-12-28 Thread Mik Muller
Yes, that was my intention when I hit 100, but got busy. I need to look closer at the problem now, though, to see if that would make things faster or save memory, and how that matches up against having to re-path every page's IMG tag, since every site's file content will now be pushed out one

Re: Moving to Railo

2014-12-28 Thread Russ Michaels
, and how that matches up against having to re-path every page's IMG tag, since every site's file content will now be pushed out one folder, ie; Currently [site root]/images/happyface.jpg ... would be moved to... [site root]/[siteid]/images/happyface.jpg That, and the fact that each

Re: local install - ses non working(I think)

2014-12-24 Thread Dave Watts
Yes, this is the code: cfinclude template=/site_theartoflovingcatsanddogs_com/index.cfm/cfid/#session.cfid#/cftoken/ #session.cftoken#/index.cfm What caught me off guard is that this has been working without problem for many months on the live site, http://www.theartoflovingcatsanddogs.com

Re: Moving to Railo

2014-12-24 Thread Russ Michaels
the installer is straight forward, if you just want a bog standard install, then that is all you need to do. The only tweak you may need is to increase the JVM memory as it is only 256MB by default, which you do via the tomcat service manager on the java tab. You should also lock down the railo

Re: Moving to Railo

2014-12-23 Thread Maureen
Railo is excellent. The community around Railo is excellent. The Google group for Railo, which I think you have already found is one of the best resources for support of a product that I have experienced. https://groups.google.com/forum/#!forum/railo The installers are out there, including

Re: Moving to Railo

2014-12-23 Thread Tom McNeer
Seems likely that you may need to modify your manager code - not for Railo specifically, but rather because of the use of Tomcat, which would be true for CF10/11, too. There are docs and blog posts available relative to creating a new site in Railo. On Tue, Dec 23, 2014 at 4:08 PM, Maureen

Re: Moving to Railo

2014-12-23 Thread Jon Clausen
The only thing I can add, other than that Railo is excellent, is that you’ll want to take a close look at the compatibility section (http://www.getrailo.org/index.cfm/documentation/compatibility/cfml-compatibility/

Re: Moving to Railo

2014-12-23 Thread Jochem van Dieten
On Tue, Dec 23, 2014 at 9:49 PM, Mik Muller wrote: Anyone here using Railo and have recommendations in terms of installation and configuration? I've been to GetRailo.org and com and find the documentation to be a little paltry, especially regarding the installation and the best

Re: local install - ses non working(I think)

2014-12-23 Thread Phillip Vector
*stares blankly at the screen* *gets up and goes to get some popcorn* Ok.. Proceed. On Tue, Dec 23, 2014 at 3:58 PM, Matthew Smith chedders...@gmail.com wrote: I have been developing on our live server as the site has been down for some time. I am trying to get things right and just

Re: local install - ses non working(I think)

2014-12-23 Thread Matt Quackenbush
On Tue, Dec 23, 2014 at 6:00 PM, Phillip Vector vec...@mostdeadlygame.com wrote: *stares blankly at the screen* *gets up and goes to get some popcorn* Ok.. Proceed. LOL :-) On Tue, Dec 23, 2014 at 3:58 PM, Matthew Smith chedders...@gmail.com wrote: I have been developing on

Re: local install - ses non working(I think)

2014-12-23 Thread Maureen
It is fairly clear that the path you are using for the include is invalid. It needs to be a physical path, not a url, and I doubt if your physical path includes /site_ theartoflovingcatsanddogs_com/index.cfm/cfid/2/cftoken/60648468/index.cfm Are you using a variable to build the include path?

Re: local install - ses non working(I think)

2014-12-23 Thread Matthew Smith
Yes, this is the code: cfinclude template=/site_theartoflovingcatsanddogs_com/index.cfm/cfid/#session.cfid#/cftoken/#session.cftoken#/index.cfm What caught me off guard is that this has been working without problem for many months on the live site, http://www.theartoflovingcatsanddogs.com I

Re: local install - ses non working(I think)

2014-12-23 Thread Maureen
Normally, index.cfm would live in your webroot, and would not be included. you would have a folder structure like wwwroot - folder index.cfm - file with your code you are including index.cfm in a folder structure that would look like: site_theartoflovingcatsanddogs_com - folder

Re: local install - ses non working(I think)

2014-12-23 Thread William Seiter
Phillip, I like your sense of humor. --- William Seiter On Dec 23, 2014, at 4:00 PM, Phillip Vector vec...@mostdeadlygame.com wrote: *stares blankly at the screen* *gets up and goes to get some popcorn* Ok.. Proceed. On Tue, Dec 23, 2014 at 3:58 PM, Matthew Smith

Re: local install - ses non working(I think)

2014-12-23 Thread William Seiter
That's not it... --- William Seiter On Dec 23, 2014, at 4:05 PM, Maureen mamamaur...@gmail.com wrote: It is fairly clear that the path you are using for the include is invalid. It needs to be a physical path, not a url, and I doubt if your physical path includes /site_

Re: local install - ses non working(I think)

2014-12-23 Thread William Seiter
My best guess, without looking at your admin, is that you did not setup your directories (for includes) in the administrator. Take a look at the live sites admin settings and mimic them on your local admin --- William Seiter On Dec 23, 2014, at 3:58 PM, Matthew Smith

Re: local install - ses non working(I think)

2014-12-23 Thread Andrew Scott
For security purposes, please don't pass CFID CFToken in the URL. Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Wed, Dec 24, 2014 at 11:21 AM, Matthew Smith chedders...@gmail.com wrote: Yes, this is the code: cfinclude

RE: Trouble with ArrayAppend

2014-12-22 Thread David Phelan
] Sent: Saturday, December 20, 2014 12:19 PM To: cf-talk Subject: Re: Trouble with ArrayAppend Ok, I just tried calling the same method directly from a CF template and the structures populated properly. It is only when I am calling it as a webservice that the structs are empty. On Sat, Dec 20

Re: Trouble with ArrayAppend

2014-12-22 Thread Dean Lawrence
Hi David, Yes, the tmpAddress variable is var scoped at the top of the method. I tried your suggestion of re-initializing the struct with each iteration, but it did not change the results. I've been doing some more testing and have found that, if I serialize the entire result to JSON prior

Re: Bcrypt.class error

2014-12-20 Thread Russ Michaels
Do you have all the cf10 updates installed? Always worth ruling that out first. On Fri, Dec 19, 2014 at 19:26 PM, Dean Lawrence dean...@gmail.com wrote: Well, this ended up not working, as it failed again first thing this morning. I tried re-initing my app and it still did threw the error

Re: Trouble with ArrayAppend

2014-12-20 Thread Rodney Enke
I believe you are just passing a reference of the tmpAddress to the array, so it is being overridden with each loop. Try the following to insert a copy of the structure into the array instead: ArrayAppend(results.Deal.addresses,duplicate(tmpAddress)); - Rodney On Fri, Dec 19, 2014 at 4:39 PM,

Re: Trouble with ArrayAppend

2014-12-20 Thread Dean Lawrence
Thanks Rodney. I was hoping that what you suggested would work, but unfortunately, it did not. I tried it in both ACF 10 and ACF 11. I'm still left with empty structs inside the array. On Sat, Dec 20, 2014 at 11:22 AM, Rodney Enke renk...@gmail.com wrote: I believe you are just passing a

Re: Trouble with ArrayAppend

2014-12-20 Thread Dean Lawrence
Ok, I just tried calling the same method directly from a CF template and the structures populated properly. It is only when I am calling it as a webservice that the structs are empty. On Sat, Dec 20, 2014 at 12:10 PM, Dean Lawrence dean...@gmail.com wrote: Thanks Rodney. I was hoping that what

Re: Bcrypt.class error

2014-12-20 Thread Dean Lawrence
not working, as it failed again first thing this morning. I tried re-initing my app and it still did threw the error. What also found out though, was that instead of rebooting CF, I could get it to work by renaming the webservice CFC, making a call to the webservice (which generated and error

Re: Trouble with ArrayAppend

2014-12-20 Thread Jon Clausen
I think, though I may be incorrect, that you need to explicitly declare your Address var in the loop: for (var Address in Deal.getAddresses()){ ... } You may also want to try creating a variable for Deal.getAddresses() outside of the loop: var allAddresses=Deal.getAddresses(); for (var

Re: Picasa and CF

2014-12-19 Thread John M Bliss
Starting point...? http://picasacfc.riaforge.org On Thu, Dec 18, 2014 at 4:37 PM, Les Irvin les.cft...@gmail.com wrote: I'm trying to write a CF script to automate the creation of a photo slideshow video in Picasa. I want to programatically take, say, a folder of JPGs, convert them to a

Re: Bcrypt.class error

2014-12-19 Thread Dean Lawrence
Thanks Byron, Yes, the error is being generated by the checkpw method. Since the method is working as written, I don't think that moving the checkpw call to a set statement will alleviate the issue. When it decides to fail, it fails using the exact same credentials call from the client side, so

<    1   2   3   4   5   6   7   8   9   10   >