Re: Help! Too much tracffic and too little time!

2011-05-07 Thread Kym Kovan
On 7/05/2011 15:35, Maureen wrote: Perhaps you are right about 2K8 being faster and better, but changing from an OS you know to one you don't know with a launch commitment a week away doesn't seem like a very good idea to me. it isn't and I was recommending that, just commenting on a

Re: Replace cfhttp with jquery.post()

2011-05-07 Thread David Mineer Jr
That's a great idea, and I have everything working to do that now. I get the query back, serializeJSON the results and I can see them in an alert box. BUT. For the life of me I cannot figure out how to access those elements with jQuery. This should probably be in a new thread, and I do see

Re: Help! Too much tracffic and too little time!

2011-05-07 Thread Wil Genovese
Rob, I've written a few blog posts on the settings in the JVM and provide some very loose guidelines as to what to tune and set. Each server and application is unique and usually requires additional tuning beyond what the posts walk you through, but these will give you a good starting point

RE: Replace cfhttp with jquery.post()

2011-05-07 Thread Andrew Scott
Are you sending it back to the browser as Json? I would be more inclined to do that, and remove the serialise json from the JavaScript. Then you will be able to do what you are wanting to do. Regards, Andrew Scott http://www.andyscott.id.au/

Re: Form Field Validation

2011-05-07 Thread Jason Fisher
If startVal, endVal, and lengthVal represent your values in JS [like var startVal = parseInt(myForm.start.value); ], then the following should work: if (startVal % 3 != 0) { alert(Start must be a multiple of 3.); return false; } else if (endVal % 3 != 0) { alert(End must be a

Re: Help! Too much tracffic and too little time!

2011-05-07 Thread Robert Rhodes
uh flak below should read folks. On Sat, May 7, 2011 at 9:43 AM, Robert Rhodes rrhode...@gmail.com wrote: Well you folks certainly have me thinking. I could set up one of the machine as a Win2K8 server and see how it does. If it's humming along just fine, then I can steer more traffic to

Re: Help! Too much tracffic and too little time!

2011-05-07 Thread Robert Rhodes
Well you folks certainly have me thinking. I could set up one of the machine as a Win2K8 server and see how it does. If it's humming along just fine, then I can steer more traffic to it. With the speed increase you flak are talking about here, do you think a million page loads per day can be

RE: Help! Too much tracffic and too little time!

2011-05-07 Thread Russ Michaels
Here you go http://lmgtfy.com/?q=windows+2008+lockdown If you get 1 million hits per day and you should really do some load testing as that is the only way will tell what it can handle, it is going to be more about what CF can handle rather than windows 2008. -Original Message- From:

PayPal pay button variables

2011-05-07 Thread Stephens, Larry V
If anyone has experience programming one of these, would you contact me offline at la...@basketbasics.com ? Thanks. ~| Order the Adobe Coldfusion Anthology now!

Re: Help! Too much tracffic and too little time!

2011-05-07 Thread Cameron Childress
In addition to other comments, it might be worth spending a minute reading up on Squid: http://www.squid-cache.org/ Caching some or all of the site could mean you can do the entire thing with just 2 CF machines. In my experience, the bottleneck for Squid is not the OS or Squid itself, but the

CF form puzzler

2011-05-07 Thread Stephens, Larry V
I'm leaving out some code here (for other fields): cfform action=Register_Step_2_Response.cfm method=post cfinput type=text name=ProjTitleUrl size=20 maxlength=50 /cfform In the response file: cfparam name=FORM.ProjTitleUrl default= INSERT INTO Positions ( ProjTitleURL )

Re: Replace cfhttp with jquery.post()

2011-05-07 Thread Dominic Watson
It sounds like you're mixing up server side and client side (spank me if I'm wrong). Your server side will be taking some request and spitting out plain text json. It doesn't know, or need to know, of jquery. An example plain cfm: !--- some.cfm --- cfset myData = getMyData() /!--- some logic

Re: CF form puzzler

2011-05-07 Thread Russ Michaels
how is the content getting entered, is it a WYSIWYG editor ? If so then your users are probably copying and pasting content from WORD and thus you get al the word markup. You need to do some auto cleanup of the content to avoid this, CKEDITOR has this built in. On Sat, May 7, 2011 at 8:42 PM,

Re: Help! Too much tracffic and too little time!

2011-05-07 Thread Robert Rhodes
Thanks. I'll look into that. Being a Windows guy, I am not sure how well Squid and I would get along. :) On Sat, May 7, 2011 at 3:23 PM, Cameron Childress camer...@gmail.comwrote: In addition to other comments, it might be worth spending a minute reading up on Squid:

Re: Help! Too much tracffic and too little time!

2011-05-07 Thread Wil Genovese
Robert, 1 million hits a day on a single CF8 or CF9 box of sufficient hardware is fairly easy to handle. I would want some more redundancy. Having a hot fail over for the CF box and the SQL server would be a good idea. Wil Genovese Sr. Web Application Developer/ Systems Administrator CF

Re: Help! Too much tracffic and too little time!

2011-05-07 Thread Robert Rhodes
Well, I am thinking I will try one or two win2K8 servers. Unfortunately, I can't order any licenses until Monday. And by then it will be too late. Does anyone know if the evaluation version of Win2K* R2 in MS TechNet will work temporarily as web server in evaluation mode (no license applied)?

RE: Help! Too much tracffic and too little time!

2011-05-07 Thread Mark A. Kruger
Robert, Get a fairly standard set of JVM args and duplicate them on all 4. Since you are running 32bit you will be limited to a 1.3 gig heap size (max 1280m would be a good starting space with a 256 meg perm size). Since you don't have time to do anything else I'd say go for it and see what

Re: Help! Too much tracffic and too little time!

2011-05-07 Thread Mark Drew
Another option (and I hope people don't flame me for this) is to set up a Railo server somewhere there, or at least a few instances on a box, then you can handle a lot of traffic with a smaller memory footprint. Just a thought. Regards Mark Drew On 7 May 2011, at 17:44, Robert Rhodes

Re: Help! Too much tracffic and too little time!

2011-05-07 Thread Robert Rhodes
It looks like I will be x64 on Win2K8R2 for two of these boxes which will have only 4gb on memory, at least for now. With that in mind... can I up my jvm settings a bit? On Sat, May 7, 2011 at 5:51 PM, Mark A. Kruger mkru...@cfwebtools.comwrote: Robert, Get a fairly standard set of JVM

Re: Help! Too much tracffic and too little time!

2011-05-07 Thread Kym Kovan
On 8/05/2011 9:29 AM, Robert Rhodes wrote: It looks like I will be x64 on Win2K8R2 for two of these boxes which will have only 4gb on memory, at least for now. With that in mind... can I up my jvm settings a bit? In a prod environment the OS will run about 1GB mem usage and 2K8 has this