Re: CFHTTP SSL call returns Peer Not Authenticated

2014-02-25 Thread Pete Freitag
Is the server using a 2048 bit or higher key? I had a client with some issues connecting to twitter after they upgraded their SSL to 2048 bit, and the issue was resolved in this case by updating the CF9 server with the latest hotfixes (9.0.1 Cumulative Hotfix 4). I know you are on CF8, but you

Re: Versions of Apache Supported on CF10 Linux?

2014-02-25 Thread Steve 'Cutter' Blades
64-bit Apache is not officially supported. There are posts in the Adobe ColdFusion forums where people have compiled custom mod_jk.so connectors, but again, they aren't officially supported. You can run 64-bit CF on top of 32-bit Apache, use the 32-bit web server option in the connector

CFDOCUMENT Output without Page Break

2014-02-25 Thread Richard Colman
I am trying to output a PDF through the cfdocument tag, without any any page breaks. I would like to get one long document, with pagination. Does anyone know of a way to do this? -- rick ~| Order the Adobe Coldfusion

Re: CFDOCUMENT Output without Page Break

2014-02-25 Thread Dave Watts
I am trying to output a PDF through the cfdocument tag, without any any page breaks. I would like to get one long document, with pagination. I'm confused a bit by your question. What do you mean by pagination, if you have no page breaks? PDF isn't designed to give you one long document with

Re: CFDOCUMENT Output without Page Break

2014-02-25 Thread Jochem van Dieten
On Tue, Feb 25, 2014 at 5:10 PM, Richard Colman wrote: I am trying to output a PDF through the cfdocument tag, without any any page breaks. I would like to get one long document, with pagination. Does anyone know of a way to do this? Specify a sufficiently long pageHeight? Jochem --

Re: Versions of Apache Supported on CF10 Linux?

2014-02-25 Thread Jochem van Dieten
On Tue, Feb 25, 2014 at 12:37 AM, Dan LeGate wrote: We are on 64-bit Redhat, which has Apache 2.2.3, which I've read doesn't support the ap_get_server_description What do you all recommend? Run the standard Tomcat and standard AJP connector with a ColdFusion WAR deployed on them. Jochem

RE: CFDOCUMENT Output without Page Break

2014-02-25 Thread Robert Harrison
I am trying to output a PDF through the cfdocument tag, without any any page breaks. I would like to get one long document, with pagination. The system is not designed to do this as PDF documents are paginated to the size of the paper page you specify. You use CFDOCUMENT to create the PDF

Re: Versions of Apache Supported on CF10 Linux?

2014-02-25 Thread Pete Freitag
On Tue, Feb 25, 2014 at 10:42 AM, Steve 'Cutter' Blades cold.fus...@cutterscrossing.com wrote: 64-bit Apache is not officially supported. I don't think that is true, perhaps with Apache on Windows? But not with linux. The support matrix lists Apache support for both 32 and 64 bit on all

URL is specified in wrong format

2014-02-25 Thread John M Bliss
ACF 10,0,12,286680 I have a Scheduled Task imported from ACF 9 which works fine. However, now when I edit it, change the schedule (but not the URL), and click Save, I'm getting: URL is specified in wrong format. URL (which I know works) is:

Re: URL is specified in wrong format

2014-02-25 Thread Raymond Camden
So I went to test this. I made a new scheduled task and I'm immediately logged out. There was an error accessing this page. Check logs for more details. On Tue, Feb 25, 2014 at 1:24 PM, John M Bliss bliss.j...@gmail.com wrote: ACF 10,0,12,286680 I have a Scheduled Task imported from ACF

Re: URL is specified in wrong format

2014-02-25 Thread Raymond Camden
Yeah - sorry man - ignore me. On Tue, Feb 25, 2014 at 1:30 PM, John M Bliss bliss.j...@gmail.com wrote: WTF? That's a different / bigger(?) problem... On Tue, Feb 25, 2014 at 2:29 PM, Raymond Camden raymondcam...@gmail.com wrote: So I went to test this. I made a new scheduled task

Re: URL is specified in wrong format

2014-02-25 Thread Raymond Camden
Wow, I can't do anything in my CF Admin anymore. I login. I try to change something. And I get that error. Sorry to hijack the thread. There was an error while verifying the token. Either the session timed out or un-authenticated access is suspected. On Tue, Feb 25, 2014 at 1:29 PM, Raymond

Re: URL is specified in wrong format

2014-02-25 Thread John M Bliss
WTF? That's a different / bigger(?) problem... On Tue, Feb 25, 2014 at 2:29 PM, Raymond Camden raymondcam...@gmail.comwrote: So I went to test this. I made a new scheduled task and I'm immediately logged out. There was an error accessing this page. Check logs for more details. On Tue,

Textfield Format

2014-02-25 Thread Richard White
Hi, This is not really a CF question but rather seeking general code advise. I want to create a textfield using ExtJS and would like the user only to have access to alter parts of the text... For example, I want to populate the textfield with 'CP - - U' When the user clicks on this

Re: Setting Cookie Secure, Domain, Path

2014-02-25 Thread Richard White
Thanks for the info Pete, I will investigate further! Richard Hi Richard, Normally you can switch between J2EE and CFID/CFTOKEN cookies without problem unless something in your application code is relying on one or the other. It may be easy to change that or it may be quite involved, it depends

Re: Textfield Format

2014-02-25 Thread Carl Von Stetten
Richard, You'll need to do some JavaScript magic to accomplish that. There are some widgets and jQuery plugins out there that seem to fit the bill: http://digitalbush.com/projects/masked-input-plugin/ (jQuery plugin) http://jquery-plugins.net/tag/masked-input (a list of jQuery plugins)

Re: URL is specified in wrong format

2014-02-25 Thread John M Bliss
Anyone? Is there an .xml file I can edit? On Tue, Feb 25, 2014 at 2:24 PM, John M Bliss bliss.j...@gmail.com wrote: ACF 10,0,12,286680 I have a Scheduled Task imported from ACF 9 which works fine. However, now when I edit it, change the schedule (but not the URL), and click Save, I'm

Re: URL is specified in wrong format

2014-02-25 Thread Russ Michaels
Yea its neo-cron.xml I think Russ Michaels www.michaels.me.uk cfmldeveloper.com cflive.net cfsearch.com On 25 Feb 2014 21:52, John M Bliss bliss.j...@gmail.com wrote: Anyone? Is there an .xml file I can edit? On Tue, Feb 25, 2014 at 2:24 PM, John M Bliss bliss.j...@gmail.com wrote: ACF

Re: Versions of Apache Supported on CF10 Linux?

2014-02-25 Thread Dan LeGate
We are on RHEL 5.9 currently. Debating as to whether we should move to 6. Dan On 2/25/2014 9:48 AM, Pete Freitag wrote: On Tue, Feb 25, 2014 at 10:42 AM, Steve 'Cutter' Blades cold.fus...@cutterscrossing.com wrote: 64-bit Apache is not officially supported. I don't think that is true,

Re: Versions of Apache Supported on CF10 Linux?

2014-02-25 Thread Steve 'Cutter' Blades
It does support Apache on 64-bit Windows, just not 64-bit Apache. I would not be surprised if the Linux stuff is the same. Apache Foundation doesn't offer an official 64-bit build (at least as a binary), you have to go someplace like Apache Haus. I've been down this road a few times recently,

Re: URL is specified in wrong format

2014-02-25 Thread John M Bliss
In: var=valuehttp://www.siteonthisserver.com/index.cfm?fuseaction=fuse.actionvar=value ...it was not allowing an @ in the value. Instead, I had to use %40 On Tue, Feb 25, 2014 at 5:39 PM, Russ Michaels r...@michaels.me.uk wrote: Yea its neo-cron.xml I think Russ Michaels

Re: URL is specified in wrong format

2014-02-25 Thread Raymond Camden
Was there a @ in your original post? On Tue, Feb 25, 2014 at 9:01 PM, John M Bliss bliss.j...@gmail.com wrote: In: var=value http://www.siteonthisserver.com/index.cfm?fuseaction=fuse.actionvar=value ...it was not allowing an @ in the value. Instead, I had to use %40 On Tue, Feb 25,

Re: URL is specified in wrong format

2014-02-25 Thread John M Bliss
No. I wrote, http://www.SiteOnThisServer.com/index.cfm?fuseaction=fuse.actionvar=valuehttp://www.siteonthisserver.com/index.cfm?fuseaction=fuse.actionvar=value CF earlier than v10 was fine with: var=va...@gmail.com On Tue, Feb 25, 2014 at 10:03 PM, Raymond Camden

Re: URL is specified in wrong format

2014-02-25 Thread Raymond Camden
I think GMail is mucking it up. This is what I saw: https://www.evernote.com/shard/s3/sh/8e0fdc74-d3a1-4384-b8ca-f3c99c6c87a7/30019c7b1b44d51381e339d16d4a1f40 On Tue, Feb 25, 2014 at 9:06 PM, John M Bliss bliss.j...@gmail.com wrote: No. I wrote,

Re: URL is specified in wrong format

2014-02-25 Thread John M Bliss
That's what I typed. I did not think it mattered that my value was actually an email address: var=cf-talk@houseoffusion.com Versions of CF before 10 did not complain about that it a task URL. On Tue, Feb 25, 2014 at 10:12 PM, Raymond Camden raymondcam...@gmail.comwrote: I think GMail is

Re: URL is specified in wrong format

2014-02-25 Thread Raymond Camden
Ahhh - ok. :) On Tue, Feb 25, 2014 at 9:23 PM, John M Bliss bliss.j...@gmail.com wrote: That's what I typed. I did not think it mattered that my value was actually an email address: var=cf-talk@houseoffusion.com Versions of CF before 10 did not complain about that it a task URL. On

Re: URL is specified in wrong format

2014-02-25 Thread John M Bliss
Even worse: when I use: var=cf-talk%40houseoffusion.com ...CF tells me: Next Run: EXPIRED ...despite the fact that I have: Duration: Jan 28, 2009 - INDEFINITELY Recurring Daily at 1:24 AM This is only for tasks with URL containing %40 On Tue, Feb 25, 2014 at 10:23 PM, John M Bliss

Re: URL is specified in wrong format

2014-02-25 Thread John M Bliss
I even edited the neo-cron.xml file, replaced all of my new %40's with @'s, cycled the server, confirmed that the @'s are back in the URL's...but they still show as: Next Run: EXPIRED On Tue, Feb 25, 2014 at 10:30 PM, John M Bliss bliss.j...@gmail.com wrote: Even worse: when I use: