Re: how to diagnose a potential bottleneck

2014-12-02 Thread .jonah
You can also configure CF to log slow pages and if you have enterprise, server monitor can log/alert you to slow/hung requests. On 12/2/14, 10:52 AM, Money Pit wrote: Russ Michaels wrote: doing debugging and load testing on a live production server is generally a bad idea. On general

Re: how to diagnose a potential bottleneck

2014-12-02 Thread .jonah
Sounds like it's time to move on. On 12/2/14, 1:11 PM, Don wrote: I'm not recieving much in the way of information from the host anymore. Seems they might not like me poking around too much I dont know. ~| Order the

Re: how to diagnose a potential bottleneck

2014-12-01 Thread .jonah
I suspect Russ meant, replicate your production environment locally and do your diagnostics, load testing, and performance tuning on a testing server before deploying your changes to production. Another vote for moving to your own VPS. They're cheap these days and totally worth it. On

Re: how to diagnose a potential bottleneck

2014-12-01 Thread .jonah
He means you can install it on your production, testing, or dev server or whatever. On 12/1/14, 9:25 PM, Don wrote: There is absolutely no restrictions whatsoever on where FR can be installed, it would be pretty useless if that was the case, you can install it on any supported OS, FR does

Re: how to diagnose a potential bottleneck

2014-11-28 Thread .jonah
Just using the builtin server monitoring in CF Enterprise was pretty helpful to me to find the slow/hung requests. After optimizing those things got better but ultimately moving from CF9 to CF11 on a new box solved our crashing issues. On 11/28/14, 10:01 AM, Don wrote: I suggest installing

Re: cfqueryparam EncodeForHTML

2014-11-03 Thread .jonah
Read up on how query param works. It will protect against Johnson Johnson's;delete * On 11/3/14, 12:41 PM, Stephens, Larry V wrote: Text input field Entry is Johnson Johnson's I store it in a table using cfqueryparam. All is good. Let's say the hacked entry is Johnson Johnson's;delete *

Re: Work Around for SSLv3 Vulnerability?

2014-10-30 Thread .jonah
What's preventing it from negotiating to an earlier version of SSL? Settings in the keystore? On 10/30/14, 3:36 PM, Michael Grant wrote: I have a legacy app on CF9 (originally CF7) which uses CFHTTP to make a secure connection to Chase Paymentech's Orbital payment gateway. I have the

Re: IE slow, Ffox, Chrome, Opera fast

2014-10-29 Thread .jonah
It seems the IE rendering engine is slower in your particular case. Time re-work your app to not send 13 Megs of data and 6000 select options to the client. Look into paging, live filtering, and ajax-powered searching. On 10/29/14, 5:46 PM, Gonzo Rock wrote: Looking for ideas on how to fix

Re: Adobe is just a spammer now

2014-10-23 Thread .jonah
How about on the adobe.com page where you downloaded the installer? There's a checkbox there. (Agreed with others that this bundling thirdparty software to eek out a bit more revenue is pretty lame.) On 10/23/14, 2:55 PM, Mike K wrote: Jenny, thank you for your contribution. I hate to

Re: Ruby Gems

2014-10-13 Thread .jonah
You might want to look at Java based SASS compilers. The comments in http://stackoverflow.com/questions/1751479/sass-implementation-for-java has some information. On 10/13/14, 2:26 PM, Richard Steele wrote: Hi Dave, All we want to use Ruby for is to compile SASS into CSS for use with Zurb

Re: Using caching and threading to load a page quickly

2014-09-28 Thread .jonah
To have the rest of the page load and then the feed display later, you'll have to use AJAX to pull in a separate CF page clientside. (You'd still use caching in the feed.cfm so it'd only be slow occasionally.) Another approach would have the feed fetching functionality in a separate template

Re: Forms not passing data?

2014-09-22 Thread .jonah
But the correct answer is to correct the enctype so this won't be an issue. On 9/22/14, 12:21 PM, Phillip Vector wrote: AAAa... There we go. That's the most logical answer (since I blocked the error emails from that one user and when that specific error shows up and it's been quiet).

Re: Forms not passing data?

2014-09-22 Thread .jonah
to try anything at this point. On Mon, Sep 22, 2014 at 1:16 PM, .jonah jonah@creori.com wrote: But the correct answer is to correct the enctype so this won't be an issue. On 9/22/14, 12:21 PM, Phillip Vector wrote: AAAa... There we go. That's the most logical answer (since I blocked

Re: First Data Global Gateway e4 sample code

2014-09-22 Thread .jonah
Create it as a gateway to plug in to CFPayment. It's a nice framework for handling payment processing stuff. On 9/22/14, 4:39 PM, Maureen wrote: I have a client who uses First Data, but the gateway code is in PHP. I could take a crack at doing a CF version if you still need it. On Mon, Sep

Re: ColdFusion / authorize.net question

2014-08-18 Thread .jonah
I don't have much time, but post up a gist of your code or something and I'll take a look. Seems like you're just missing a minor detail or are having a conceptual issue. On 8/17/14, 9:36 PM, Eric Bourland wrote: Has anyone here tried out the ColdFusion SIM* sample code from authorize.net?

Re: Spelling Correction

2014-07-22 Thread .jonah
Maybe you could pass your input through something like http://cfspell.riaforge.org/ On 7/22/14, 12:37 PM, Byron Mann wrote: Working on a search feature on CF8 with Verity. I see that it returns suggestions for alternate searches. We were hoping to use this for a feature similar to Google's

Re: ColdFusion and authorize.net

2014-07-21 Thread .jonah
or SIM but would be willing to take a look at what you've got once you read the docs and have some code started. (Here's the 15 minute setup for SIM: http://developer.authorize.net/integration/fifteenminutes/#hosted in PHP, but should be apparent how to translate it to CFML.) Cheers, .jonah

Re: need a host

2014-07-20 Thread .jonah
Why not Vivio? I just switched to them and they've been really good so far. I have CF10 and MSSQL, I'm pretty sure they'll do CF9 too. On 7/20/14, 2:09 PM, Matthew Smith wrote: not newtek, no hostmedia.co.uk(no mssql), no viviotek. Any suggestions? Need cf 9 and ms sql. Thanks.

Re: security issue with reading file with cfimage read and write

2014-05-20 Thread .jonah
The first call is to the ./resize/ directory for the already processed image. If that fails, the source image is read, processed, and saved into the ./resize/ directory. At a glance it seems like this code should work OK. I'm no sure what Matthew's question is either. (As long as

Mapping differences between CF9 and CF10?

2014-05-19 Thread .jonah
I'm moving from CF9/IIS/Win2008 to CF10/IIS/Win2012 and am having issues with my Coldfusion mappings. Both machines have the CF apps in C:\Webroot\AppName On CF9 I have one mapping in the admin \ maps to C:\Webroot\ With that mapping, any absolute path in CFML is relative to that. e.g. I can

Re: HMail server

2014-05-12 Thread .jonah
Al, Be sure to revoke and reissue the SSL certificate you use with hMail in addition to the upgrading and changing passwords you did. If you don't there is a possibility the attacker can impersonate your server. (I run hMail too - it's simple but seems to work well.) On 5/11/14, 8:05 AM,

Re: (ot) barcodes and mobile sites

2014-04-10 Thread .jonah
OK, that's cool. Great use of intents and hooks. On 4/10/14, 5:49 PM, Dave Watts wrote: You might find this interesting: http://chris.m0nk3y.net/blog/post/scanning-barcodes-from-your-mobile-web-apps ~| Order the Adobe

Re: Displaying page loading message

2014-03-24 Thread .jonah
Display a page with the loading message then a client-side (meta or js) redirect to the slow page. On 3/24/14 1:53 PM, fun and learning wrote: All, I have an issue with displaying a page loading message on a page with heavy database queries. My page has two frames, and I am trying to

Site hanging randomly.

2014-03-13 Thread .jonah
So, here's a tricky one. I have a server that hangs seemingly randomly but around once a day. Windows Server 2008, IIS, ColdFusion 9. It will either return a 503 or the browser will just keep spinning and never return anything. When I go in to restart it (with a batch file) sometimes the

Re: Site hanging randomly.

2014-03-13 Thread .jonah
properly and eventually kill CF. You could try to upgrade your JVM to a newer version that is officially supported, but not sure if that will help your issue (trialerror). Good luck! 2014-03-14 0:50 GMT+01:00 .jonah jonah@creori.com: So, here's a tricky one. I have a server that hangs

Re: Site hanging randomly.

2014-03-13 Thread .jonah
. On Fri, Mar 14, 2014 at 12:12 AM, .jonah jonah@creori.com wrote: I hadn't thought to check a static resource to see if it was still available. I'll do that next time it hangs. I'm currently running jdk1.6.0_32 with these JVM arguments: -server -Dsun.io.useCanonCaches=false -XX:MaxPermSize

Re: ColdFusion ListServ app

2014-02-27 Thread .jonah
The other thing I'd recommend is using an email server with list capability and then having a CF front-end to handle web-based subscriptions and archives rather than doing the actual list distribution in CF. On 2/27/14 2:32 PM, Russ Michaels wrote: why do you want CF based ? the most

Re: (ot) Anyone know how to clear your google details from a browser?

2014-01-31 Thread .jonah
If it's an Incognito window and closing it doesn't make your session go away that's scary. What about restarting the browser? Still has your name there when you go to google.com? On 1/31/14 12:38 AM, Mike K wrote: Thanks Andrew. I thought that's what that was for too. But it's an incognito

Re: (ot) Anyone know how to clear your google details from a browser?

2014-01-31 Thread .jonah
is and browser? Do you mean the chrome login? On Jan 31, 2014 3:57 AM, Mike K afpwebwo...@gmail.com wrote: Here's how scary, Jonah. In an incognito window, I go to the help file, Disabling automatic sign-in and see up in the top right corner a button saying sign in.Good, that would mean

Re: (ot) Anyone know how to clear your google details from a browser?

2014-01-30 Thread .jonah
There used to be some sort of sign-out completely link but I can't find it right now. Just go into their prefs. and clear cookies for the google.com domain... On 1/30/14 11:44 PM, Mike K wrote: I recognise the auto form fill in - in chrome it colours fields yellow if it thinks it knows the

Re: CFLDAP socket closed error against SSL

2013-12-10 Thread .jonah
That's only necessary if the certificate from the LDAP server isn't signed by a known CA. (e.g. it's self-signed.) If it is, you need to import the LDAP server's public key into your CF server's java keystore. I wrote up a doc on how to do it a while back:

Re: CFLDAP socket closed error against SSL

2013-12-10 Thread .jonah
Nice! On 12/10/13 4:18 PM, Russ Michaels wrote: easiest solution is to use this http://certman.riaforge.org/ On Tue, Dec 10, 2013 at 11:31 PM, Dan LeGate d...@legeek.com wrote: No. How do we do that? Is it the individual server certificate(s) that we connect to that are put into the

Re: CFLDAP socket closed error against SSL

2013-12-10 Thread .jonah
Can you connect to it via any other tools on the CF box? If you have another client that might help determine whether it's a server/network issue or a CF/Java issue. On 12/10/13 4:19 PM, Dan LeGate wrote: Okay, so I looked up how to and used the following command syntax:

Re: CMS Vs Framework

2013-12-05 Thread .jonah
The real answer is it depends. What's the site for? Is, as someone else mentioned, a primarily content site? How closely does it fit with the model the CMS provides? etc. As for ecommerce, don't build your own unless you've used several others already and have a very specific reason to.

Re: Creating maps with CF

2013-12-03 Thread .jonah
/muralocations/ [2] http://www.stephenwithington.com/ [3] http://www.my-arianna.com/imagine/locations/ .jonah On 12/3/13 6:58 AM, Dave Long wrote: Can anyone suggest a link to a good tutorial on setting up an app to create either a Google or Bing map populated by a MySQL db using ColdFusion

Re: Creating maps with CF

2013-12-03 Thread .jonah
/muralocations/ [2] http://www.stephenwithington.com/ [3] http://www.my-arianna.com/imagine/locations/ .jonah On 12/3/13 6:58 AM, Dave Long wrote: Can anyone suggest a link to a good tutorial on setting up an app to create either a Google or Bing map populated by a MySQL db using ColdFusion

Re: Frustrated and on a deadline please assist

2013-11-18 Thread .jonah
It looks double prefixed/escaped. http://www.petefreitag.com/item/720.cfm You really want it to come back as: //[Miami Area Geriatric Education Center,Miami Children's Hospital,Miami Research Associates,Miami University (Oxford, Ohio),Miami Valley Hospital,Miami, FL-546,University of

Re: Saving updated sort order in mysql jquery list to update database

2013-09-25 Thread .jonah
The callback called after you drop your sorted item should place an ajax call to your selected endpoint with a list of IDs in their new order. (I haven't used the jQuery UI sortables to know the details.) Then on the CF side just update the DB. A naive way might be like this: cfloop from=1

Re: Barcodes

2013-08-29 Thread .jonah
Can't you just use a barcode font with cfimage or directly on the page as a webfont? On 8/29/13 8:45 AM, Chad Gray wrote: Just regular old code 39 type of barcodes. I will check out the java library also. -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent:

Re: More Mail woes with Gmail with ColdFusion

2013-08-28 Thread .jonah
So the emails are going into the Sent folder on Google's mail servers but not getting to their recipients? That's implying they're getting to Google OK and it's a deliverability issue on their end not an issue with getting the messages from your CF server to Google. On 8/28/13 7:03 PM, Andrew

Re: CF10 Dev Edition...

2013-08-13 Thread .jonah
Is it making multiple concurrent calls? Does the CF10 developer edition restriction mean only TWO concurrent calls (from any IPs?) On 8/13/13 4:33 PM, Eric Roberts wrote: No...1 ip...local...it is calling a page that makes an http request to another local page hat has http requests an cfc

Re: issue with cfhttp and client certificates

2013-07-25 Thread .jonah
Good point. Here is the Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files 7 Download: http://www.oracle.com/technetwork/java/javase/downloads/jce-7-download-432124.html On 7/25/13 2:52 PM, Jon Clausen wrote: Long shot, but what is the key length on the

Re: Date Ranges: Drop Down Menus vs Calendar Based

2013-04-16 Thread .jonah
Really depends on your implementation, I'd say. Also, have you tested it with actual users? How does it work for them? On 4/16/13 5:13 PM, Matt Blatchley wrote: I've been writing an application in CF that imports cost data from Analytics, AdWords, BING, and other APIs that generate reports

Re: Large amounts of CF email

2013-04-11 Thread .jonah
1. 150k-200k emails/month isn't really that many for a dedicated or even shared server. 2. http://mandrill.com/ is another option and much less expensive than the sendgrid numbers you quoted. On 4/11/13 11:44 AM, Michael Muller wrote: Hey all, Ok, so I'm all set on the question of SPF etc.

Re: dragon dictation and CF

2013-03-22 Thread .jonah
What you need is an Amanuensis[1]. I have a friend who's used one for many years. It's actually an awesome opportunity for someone to learn from the guru. [1] http://en.wikipedia.org/wiki/Amanuensis On 3/22/13 12:01 PM, Chad Gray wrote: Has anyone tried to use Dragon dictation software to

Re: Curmudgeon painted in a corner

2013-03-18 Thread .jonah
Sounds like you need Linux! On 3/17/13 8:41 PM, Dave Long wrote: I want to own the machine, not have the machine own me. ~| Order the Adobe Coldfusion Anthology now!

Re: Apostrophes in email addresses

2013-02-24 Thread .jonah
I take issue! ;) Kevin simply asked to his regex working with an apostrophie. My answer did that. He didn't ask for the be-all-end-all of email validators. Now, as to the rest of your comment and blog post, I'm in agreement. It's rarely done correctly. (Not accounting for plus addressing

Re: Apostrophes in email addresses

2013-02-24 Thread .jonah
Something tangential to keep in mind is BE CONSISTENT. I've come across numerous instances out there where different features on a site don't have the same validation. For example, the account creation process might accept an email address with a plus sign in it, but the password reset

Re: Apostrophes in email addresses

2013-02-24 Thread .jonah
February 2013 15:00, .jonah jonah@creori.com wrote: I take issue! ;) Kevin simply asked to his regex working with an apostrophie. My answer did that. He didn't ask for the be-all-end-all of email validators. Now, as to the rest of your comment and blog post, I'm in agreement. It's rarely done

Re: Apostrophes in email addresses

2013-02-23 Thread .jonah
This seems to work, no? ^[A-Za-z0-9_\'\.-]{1,}\@([[:digit:]a-zA-Z-]{1,}\.){1,}[[:digit:]a-zA-Z-]+$ I added \' before the \. in the first set. On 2/22/13 11:30 PM, Kevin Parker wrote: As much as I wonder why you would do it apparently the odd network admin does and its valid. 100% of

Re: Severe memory issue

2013-01-30 Thread .jonah
Have you tuned the JVM heap size and garbage collection? It's not a fix but sometimes, that's what you've gotta do. It might keep things running while you re architect things at least. I had a long-running task like that in one of my apps and one thing that helped was to break it up into

Re: Running Coldfusion on a SSD server

2013-01-19 Thread .jonah
Some of the NoSQL systems are optimized for SSD, I don't know about RDBMSs. Since their capabilities are different, I'd look into tuning whichever DB to run best on SSD. On 1/19/13 10:56 AM, =?ISO-8859-1?Q?Claude_Schn=E9egans wrote: Ssd makes the most difference to rdbms like mysql or mssql

(OT) Selling domains?

2013-01-08 Thread .jonah
that, they're names I picked up for past projects that didn't get off the ground.) Thanks! .jonah ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http

(OT) Selling Domains?

2013-01-08 Thread .jonah
that, they're names I picked up for past projects that didn't get off the ground.) Thanks! .jonah ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http

Re: URGENT : How to Detect screen resolution in COLDFUSION?

2012-12-23 Thread .jonah
Good point. A simple unobtrusive way to do this is to provide a Desktop Version link in the footer of the mobile version which resets the session vars to desktop. Putting a popup or interstitial screen is pretty annoying in my pov and having a link in the footer is pretty common these days

Re: Redirecting PDF documents

2012-12-20 Thread .jonah
Would need to be done at the web server level. On 12/20/12 1:59 PM, Dave Watts wrote: Just wondering if it possible to redirect a pdf document. In coldfusion, I am assuming no since we need to have some kind of redirect code on that particular page we want to redirect? I'm not sure what

Re: CF 7 + Apps .. minimum ram

2012-12-11 Thread .jonah
Are you just developing on it? Doing QA? Load Testing? I develop using VMs with CF9/10 and SQL 2000 or 2005. I give them around 2GB and with some fairly memory intensive apps, that works fine. RAM is cheap these days though, 8-16GB should be reasonable. On 12/11/12 10:04 PM, Byron Mann wrote:

Re: Future Proofing/Backward compatibility

2012-12-06 Thread .jonah
, but it's been a while since I tested it. On 12/5/12 8:31 PM, Chris Velevitch wrote: On Thu, Dec 6, 2012 at 11:27 AM, .jonah jonah@creori.com wrote: value = structAppend( struct, { 'new_field' = 0 }, false ); Interesting solution, however, value needs to be struct.new_field, structAppend

Re: Future Proofing/Backward compatibility

2012-12-05 Thread .jonah
You can also do: value = structAppend( struct, { 'new_field' = 0 }, false ); On 12/5/12 3:50 PM, Chris Velevitch wrote: value = #iif(StructKeyExists(struct,'new_field'),Evaluate(DE('struct.new_field')),0)# ~| Order the

Re: Running CF-32bit on Windows Server 2008 R2 64-bit

2012-11-16 Thread .jonah
My understanding is that 64 bit windows does not support COM at all. So, it's not a matter of which version of CF you run, but rather the OS itself. (I have to keep an old 32 bit server running for a single site that uses some COM objects...) On 11/16/12 9:51 AM, jul...@b-ravestudio.com

Re: Running CF-32bit on Windows Server 2008 R2 64-bit

2012-11-16 Thread .jonah
Nice to know! On 11/16/12 2:25 PM, Russ Michaels wrote: 32bit com wont work on 64bit windows by default. See this http://www.gfi.com/blog/32bit-object-64bit-environment/ Regards Russ Michaels www.michaels.me.uk www.cfmldeveloper.com - Free CFML hosting for developers www.cfsearch.com -

Re: SQL Express and CF

2012-11-15 Thread .jonah
Works fine for me. (I think it has a 2GB database size limit.) It also doesn't support DTS and some other nice management functionality, but most of the features of Enterprise Manager are there. On 11/15/12 2:23 AM, Kevin Parker wrote: Are there any issues using Express versions of SQL Server

Re: SQL Express and CF

2012-11-15 Thread .jonah
Oh, and I don't think you can run scheduled backups either. Which is an issue when using it in production. On 11/15/12 1:32 PM, Mike Kear wrote: the things cut out of the express version are the kinds of things we use coldfusion for anyway. I havent found any issues at all in connecting

Re: multi sessions in one

2012-10-30 Thread .jonah
In this case, you can't store that information in the session. You'd have to do something like passing all the request specific keys in the URL from page to page. ?confID=xxx. Then, when you build your URLs, pass them along on every link. There isn't a way to send different cookies back from

Re: cfm files bypass permissions -- htm files get 401 unauthorized

2012-10-19 Thread .jonah
Although I don't know for sure, that makes sense. If the CF process has permissions to access the file it'll read, process, and return the contents to IIS. e.g. IIS doesn't touch the file on the filesystem. On 10/19/12 2:36 PM, Matt Quackenbush wrote: I've not done anything like what you're

Re: cf schudule varication

2012-10-17 Thread .jonah
Under Logging Settings in the CF admin, check Enable logging for scheduled tasks. Then the results should show up in your CF logs. On 10/17/12 3:59 PM, John Barrett wrote: Hi, I need to create a script to check if my cfschedule runs at the specified time, without depending on the email

Re: Coldfusion and @query

2012-10-07 Thread .jonah
You can get browser width with JavaScript, then add it to a hidden form field, URL parameter, or cookie to send it back to the server where you can do whatever you want with it. On 10/7/12 1:30 PM, Terry Troxel wrote: Raymond, Thank you. It sure seems like we could use a way to capture the

Re: Localisation - file or database?

2012-10-02 Thread .jonah
Either way you'll want to cache all (or at least the majority of the) the strings in memory on application load. If you're making an admin tool to edit the strings, whether it writes to a flat file or to the DB wouldn't really matter that much. The resource bundle pattern is pretty well used

Re: CF8 Instance hogs cpu

2012-10-02 Thread .jonah
Are you logging long-running requests? Any requests hanging? Can you correlate the memory/cpu spike with site traffic or spiders? Like Wil said, it's probably the code in a certain request / page that's using more memory/cycles than it needs to. You may need something like FusionReactor to

Justify text in CFDOCUMENT?

2012-09-25 Thread .jonah
I'm creating HTML with CF and then converting it to a PDF with CFDOCUMENT. It doesn't seem to support justifying text. Is there a way to make it do so? I've set in the CSS: p { text-align:justify; } But the text still comes out ragged right...

Re: Justify text in CFDOCUMENT?

2012-09-25 Thread .jonah
cfdocument doesn't support it and Adobe have confirmed numerous times they can't fix it because of the underlying engine. Basically, they need to rewrite it. So your options for now are: 1. Live with it (meh) 2. Use iText. Andy On 25 September 2012 21:49, .jonah jonah@creori.com wrote

Re: Justify text in CFDOCUMENT?

2012-09-25 Thread .jonah
engine that provides cfdocument doesn't support it and Adobe have confirmed numerous times they can't fix it because of the underlying engine. Basically, they need to rewrite it. So your options for now are: 1. Live with it (meh) 2. Use iText. Andy On 25 September 2012 21:49, .jonah jonah

Re: Justify text in CFDOCUMENT?

2012-09-25 Thread .jonah
your needs. For me it was RTF = oolib = PDF G! On Tue, Sep 25, 2012 at 7:52 PM, .jonah jonah@creori.com wrote: Interesting. Are there any writeups on doing that kind of thing? On 9/25/12 4:40 PM, Gerald Guido wrote: 2. Use iText. iText can a PITA for complex documents. I found

Re: Modern (and free) html/cf editor that is similar to Homesite?

2012-09-24 Thread .jonah
And there are CFML syntax coloring and code completion extensions. On 9/24/12 12:32 PM, Rick Faircloth wrote: That's just appearing! Michael, are you censoring me? (No, actually, I've just realized I'm having email server problems...) -Original Message- From: Rick Faircloth

Re: Question about using AJAX with Authorize.net

2012-09-23 Thread .jonah
are in the Authorize.net docs and can also be found starting at line 423 of this file, but remember CF uses 1 based indexes while JS uses 0 based. http://svn.riaforge.org/cfpayment/trunk/api/gateway/authorizenet/authorizenet.cfc On 9/22/12 10:16 PM, Rick Faircloth wrote: All that's quite beyond me, Jonah

Re: Question about using AJAX with Authorize.net

2012-09-23 Thread .jonah
I don't quite know how you're using that endpoint with AJAX. If you click on that URL in firebug, you'll see you're not actually getting a response at all. Also, try your form in Chrome. I get this in the console: XMLHttpRequest cannot load https://test.authorize.net/gateway/transact.dll.

Re: Question about using AJAX with Authorize.net

2012-09-23 Thread .jonah
on Authorize.net's end. They send me the customer and merchant email receipts. I just can't figure out how to get a response back to my AJAX function. Any more suggestions? Rick -Original Message- From: .jonah [mailto:jonah@creori.com] Sent: Sunday, September 23, 2012 3:51 PM To: cf

Re: Question about using AJAX with Authorize.net

2012-09-22 Thread .jonah
Wait, you're doing this in CF? Just use the cfpayment library: http://cfpayment.riaforge.org/ or the the good parts of the authorizenet.cfc by itself. On 9/22/12 7:23 PM, Rick Faircloth wrote: After running a regular form post (no AJAX, no CFHTTP), I get back all my form values in a

Re: (ot) How compatible is SQLServer 2012 with SQL Server 2005 databases?

2012-09-14 Thread .jonah
I don't know, but you may be able to DTS the DBs back to the older version - while losing any 2008-specific features? I know I can connect to and manage a SQL 2000 database server from 2008 enterprise manager. On 9/14/12 2:43 AM, Mike Kear wrote: Thanks, Maureeen and Russ. I fully expected

Re: Embedding image to a document that is attached to an email

2012-09-13 Thread .jonah
Ok, so what is the url to the image that actually works in your browser and what is the webroot for your server and the document root for that particular site? On 9/13/12 6:17 AM, John Drake wrote: I have done the following: http://www.makeaherodonations.com/Images/Logo.png Neither that

Re: Embedding image to a document that is attached to an email

2012-09-13 Thread .jonah
/Images/Logo.png you get a 404 error. The IMG SRC is Images/Logo.png. I am at a loss. It seems that if a file is there when you browse to it you should see it. Weird. Bruce On Sep 13, 2012, at 10:30 AM, .jonah jonah@creori.com wrote: Ok, so what is the url to the image that actually

Re: Embedding image to a document that is attached to an email

2012-09-13 Thread .jonah
What tag do you have in the HTML to generate your PDF now? On 9/13/12 11:37 AM, Bruce Sorge wrote: Yeah, that is the live server and I have no control over that. My testing server does the same thing and it's a MAC Bruce On Sep 13, 2012, at 12:24 PM, Russ Michaels r...@michaels.me.uk

Re: Embedding image to a document that is attached to an email

2012-09-13 Thread .jonah
Aahh, OK. And then the HTML code in that that's used to generate the content of the PDF? (Well, just the img tag in question.) On 9/13/12 11:52 AM, Bruce Sorge wrote: cfdocument format=PDF filename=Voucher.pdf overwrite=Yes On Sep 13, 2012, at 12:49 PM, .jonah jonah@creori.com wrote

Re: Embedding image to a document that is attached to an email

2012-09-13 Thread .jonah
See if img src=/Images/logo.png width=413 height=87 alt=Make a Hero.org / works... On 9/13/12 1:42 PM, Bruce Sorge wrote: img src=Images/logo.png width=413 height=87 alt=Make a Hero.org / ~| Order the Adobe Coldfusion

Re: Embedding image to a document that is attached to an email

2012-09-13 Thread .jonah
. This is so frustrating. On Sep 13, 2012, at 3:30 PM, .jonah jonah@creori.com wrote: See if img src=/Images/logo.png width=413 height=87 alt=Make a Hero.org / works... On 9/13/12 1:42 PM, Bruce Sorge wrote: img src=Images/logo.png width=413 height=87 alt=Make a Hero.org

Re: automated screen capture of web pages

2012-09-12 Thread .jonah
There are a bunch of webpage-thumbnail-as-a-service offerings. See if any one of them works for you! On 9/12/12 12:50 PM, Dave Jemison wrote: A recent project involves removing over a thousand folders from a site and archiving them. There is also a requirement to create an image of each

Re: Embedding image to a document that is attached to an email

2012-09-12 Thread .jonah
And actually make the path absolute to the app root: img src=/images/site/logo_print.png alt=#siteName# name=logo/ On 9/12/12 2:16 PM, Russ Michaels wrote: you should reference the image locally, e.g. image src=images/bird.jpg On Wed, Sep 12, 2012 at 10:09 PM, Bruce Sorge

Re: cfhttp ignore SSL error

2012-09-10 Thread .jonah
Good point. Here's my writeup on importing certs into the java keystore in ColdFusion: https://docs.google.com/document/d/12Ef1SwddMh0oO11TS3lt5E8VGiVCsdI8WmYn8qQLW4c/edit .jonah On 9/10/12 9:21 PM, Byron Mann wrote: You can download the certificate and import it into your server jre cacerts

Re: Getting thread name via CF

2012-09-06 Thread .jonah
Take a look at the CFTracker source: http://www.cftracker.net/ On 9/6/12 12:28 PM, Rick Root wrote: Hi, I have a process that runs using an event gateway. Sometimes, I'd like to be able to look in FusionReactor and see what it is currently doing, if anything. But I don't alwaysk now

Re: SOT: Thoughts on Hostek?

2012-08-31 Thread .jonah
, Aug 30, 2012 at 8:41 PM, Jordan Michaels jor...@viviotech.net wrote: The folks at Hostek are good people that I'm proud to call friends of mine. They know their stuff. I'm confident they can take care of you and your client. Warm Regards, Jordan Michaels On 08/30/2012 06:35 PM, .jonah

SOT: Thoughts on Hostek?

2012-08-30 Thread .jonah
Hi All, I have a client who's thinking of using Hostek.com for a fairly large Mura site. I don't know anything about them - any experiences / thoughts / recommendations? (Off list is fine too.) Thanks! .jonah ~| Order

Re: OT - JS Question

2012-08-29 Thread .jonah
Trigger the form serialization and AJAX form submission onchange and then trigger the popup from the success callback to the AJAX call. Are you doing this with vanilla.js or using a library like jQuery? On 8/28/12 3:30 PM, Bruce Sorge wrote: Can someone point me to a site or a sample of JS

Re: JVM settings question

2012-08-29 Thread .jonah
Are you running 64bit Java? You can give the JVM as much RAM as you can spare. On 8/29/12 4:56 PM, Robert Rhodes wrote: Hello to all. I have several Windows 2008 R2 x64 servers running Coldfusion 9 standard. Each has 6 gigabytes of RAM. Each runs about 50 fairly active sites. I have

Re: JVM settings question

2012-08-29 Thread .jonah
, Robert Rhodes wrote: Yes: Java HotSpot(TM) 64-Bit Server VM How about I try setting min and max heap size to 2gb and see how that goes? Anything else I should tweak? Garbage Collection? On Wed, Aug 29, 2012 at 8:05 PM, .jonah jonah@creori.com wrote: Are you running 64bit Java? You

Re: JVM settings question

2012-08-29 Thread .jonah
and see how that goes? Anything else I should tweak? Garbage Collection? On Wed, Aug 29, 2012 at 8:05 PM, .jonah jonah@creori.com wrote: Are you running 64bit Java? You can give the JVM as much RAM as you can spare. On 8/29/12 4:56 PM, Robert Rhodes wrote: Hello to all. I have

Re: Updating SQL Lite Offline

2012-08-08 Thread .jonah
-load-data-into-sqlite Read up on sqlite's .import and see where that and a batch file gets you. Cheers, .jonah On 8/8/12 3:09 AM, Kevin Parker wrote: I can't see an elegant solution to this but thought I'd pose the question here in case someone has a better insight than me to this type of issue

Re: simple question...cfmodule

2012-07-24 Thread .jonah
Is clientID a reserved word? Have you tested calling it something else? On 7/24/12 2:43 PM, Eric Roberts wrote: cfmodule template=#application.paths.includes#/meeting/MeetingFunctions.cfm action=GetSingle mode=full meetingID=#variables.meetingID#

Re: Error accessing COM object

2012-07-16 Thread .jonah
Are you on a 64-bit OS? They don't support COM. On 7/16/12 12:28 AM, Megha Kolpyakwar wrote: hi Wwhen I try to use cfobject for code it gives an error cfobject action=CREATE class=#Attributes.ProgId# type=COM name=XMLDoc The error message is An exception occurred when

Re: Code Re-Factoring

2012-07-09 Thread .jonah
IntelliJ IDEA seems to get the best rep for refactoring. On 7/10/12 2:15 PM, Brett Davis wrote: Question: Has anyone ever had to do code re-factoring that involved taking attributes from one set of tags and moving them to a different set of tags within the same template? For example taking

Re: In CF 10, how to force session to end when browser is closed

2012-07-04 Thread .jonah
Take a look at CFCOOKIE. http://cfquickdocs.com/cf9/?getDoc=cfcookie#cfcookie On 7/5/12 5:26 AM, Byte Me wrote: Anyone know how to force the session to end when the browser is closed when using CF 10? In the CF Administrator, go to Server Settings --Memory Variables scroll down to Session

  1   2   >