Re: ColdFusion 9 on Java 8

2015-03-12 Thread Eric Roberts
This is googleable...i was just looking for a similar solution with 10...you ar going to have to move several files from the sdk jre directory...one is tools.jar and msvcr1000.dll (I think)...you also have to change the java home setting in cfadmin to the jre directory in the sdk as well.

RE: Decrypting MD5

2015-03-12 Thread DURETTE, STEVEN J
Hashes have other uses as well. I pull data from a source database that has over 3 gigs of data in it and every hour the owners of that database flag all the rows as updated even if they weren't. I need to pick up just the changed rows, so I pull down the primary key and a hash of all of the

Re: Decrypting MD5

2015-03-12 Thread Byron Mann
Just for reference. Here's a pretty good article on how to hash properly. https://crackstation.net/hashing-security.htm Hashing is often done incorrectly, even if it's being salted you never want to use the same salt across the board. Simple thing is, compute power is so available, brute

RE: Decrypting MD5

2015-03-12 Thread LRS Scout
Yeah checking hashed values of software is used to confirm changes or lack there of. I use a piece of a hashed value in encrypted url qury strings to make sure the value wasn't changed between requests. Hash has a ton of uses. On Mar 12, 2015 9:15 AM, DURETTE, STEVEN J sd1...@att.com wrote:

Re: Decrypting MD5

2015-03-12 Thread Russ Michaels
no it certainly is not useless. The whole point in hashing a value is so that it cannot be decrypted, typically this is used for passwords. Imagine a hacker gets into your web app, which is extremely common, then all your encrypted data is useless, because he has access to your code and can

Re: ColdFusion 9 on Java 8

2015-03-12 Thread Wil Genovese
So is this still a Windows 2003 server too? :D Wil Genovese Sr. Web Application Developer/ Systems Administrator CF Webtools www.cfwebtools.com wilg...@trunkful.com www.trunkful.com On Mar 12, 2015, at 9:59 AM, Scott Stewart webmas...@sstwebworks.com wrote: Wil, that's what I'm pushing

Re: Decrypting MD5

2015-03-12 Thread Russ Michaels
Brute forcing MD5 hashes is really only going to work if you are still using weak passwords to begin with and just hashing them. This then works in exactly the same way as a brute force dictionary attack on a plain password, except they try the hashed version of the same password. You should

Re: ColdFusion 9 on Java 8

2015-03-12 Thread Scott Stewart
Wil, that's what I'm pushing for. The powers that be having been dragging their feet on upgrading. This may be just the thing to push them over. On Thu, Mar 12, 2015 at 10:48 AM, Wil Genovese jugg...@trunkful.com wrote: Unless I missed it, Adobe has not certified ColdFusion 9.0.x on Java 8.

Re: ColdFusion 9 on Java 8

2015-03-12 Thread Scott Stewart
No, they seem to keep up with Microsoft releases :) On Thu, Mar 12, 2015 at 11:01 AM, Wil Genovese jugg...@trunkful.com wrote: So is this still a Windows 2003 server too? :D Wil Genovese Sr. Web Application Developer/ Systems Administrator CF Webtools www.cfwebtools.com

Re: ColdFusion 9 on Java 8

2015-03-12 Thread Scott Stewart
It's a COTS app (CommonSpot) They've already produced a code base that will support 11. On Thu, Mar 12, 2015 at 12:12 PM, Dan G. Switzer, II dswit...@pengoworks.com wrote: You may find the jump from CF9 to CF10/11 to require changes to your app. I know the change for us was not

RE: Can you use a CFTHREAD inside an Ajax routine?

2015-03-12 Thread David Phelan
Steven, What is it that is telling you that the thread is not running? What is it supposed to do that it is not, manipulate the file system, execute a stored procedure? Is it supposed to return a value that you are not seeing? Remember that a function that initiates a thread will continue

Re: ColdFusion 9 on Java 8

2015-03-12 Thread Dan G. Switzer, II
You may find the jump from CF9 to CF10/11 to require changes to your app. I know the change for us was not straightforward. Make sure you plan for an extensive QA cycle after upgrading. One of the biggest issues we ran into was with date/time conversions. We store everything in UTC. Adobe changed

Re: Decrypting MD5

2015-03-12 Thread Dave Watts
I want to know if I can decrypt passwords stored as MD5 in a SQL Server database using the Decrypt function? There are online tools out there that decrypt MD5 so I'm hoping that I can do this in CF. There are no tools that actually decrypt MD5 hashes, to the best of my knowledge. MD5 is a

RE: Decrypting MD5

2015-03-12 Thread Robert Harrison
It looks like you can if you know the salt: http://www.hashkiller.co.uk/md5-decrypter.aspx http://www.md5online.org/ http://md5decryption.com/ http://www.md5decrypter.com/ Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234  ext.118 Direct Line:

RE: Decrypting MD5

2015-03-12 Thread Rick Sanders
So basically MD5 is useless if you can't decrypt the value! That sucks. Kind regards, Rick -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Thursday, March 12, 2015 9:57 AM To: cf-talk Subject: Re: Decrypting MD5 I want to know if I can decrypt passwords

RE: Decrypting MD5

2015-03-12 Thread Robert Harrison
So basically MD5 is useless if you can't decrypt the value! That sucks. Maybe, if you're storing data you need to retrieve. Generally I use if for data I need to compare (like passwords), then I just encrypt the values the same way and compare the encrypted values. Robert Harrison Full Stack

ColdFusion 9 on Java 8

2015-03-12 Thread Scott Stewart
Oracle is EOL'ing Java 7 in February. The agency that I work for is going to require upgrades to Java 8. Does anyone know definitively whether or not ColdFusion 9 will work on Java 8. We are in deep poop if it doesn't. Thanks sas -- -- Scott Stewart Adobe Certified Instructor, ColdFusion 8

Re: Decrypting MD5

2015-03-12 Thread Dave Watts
So basically MD5 is useless if you can't decrypt the value! That sucks. I don't know about useless. Hashing is not the same as encryption. They're intended to solve different problems. Let's say you're using a Windows network, with Active Directory. Active Directory doesn't actually know your

Re: ColdFusion 9 on Java 8

2015-03-12 Thread Andy G
Also, don't forget that with Java 8 you will not have access to any ODBC datasources as they have removed the JDBC-ODBC bridge in Java 1.8. This is a non-issue for most, but for company's like ours that provide middleware for legacy applications using older dBase, FoxPro, etc. back ends,

CF11 cannot validate default PDF Service Manager

2015-03-09 Thread m
Not sure where to look with this one, would appreciate any thoughts: Am using a freshly installed CF11 Enterprise box and cannot generate PDFs. Simple tests with cfdocument led to my finding that in the CF admin I cannot validate the default PDF Service Manager. Settings look the same as a

Re: trying to shorten long string

2015-03-09 Thread Bryan Stevenson
just keep in mind that periods exist in text for other reasons than ending sentences - this code will NOT always work as intended This will kill your desired end result There are 4.5 houses finished. ;-) SorryI don't have a solution handy - just spotted a potential issue Take care -Bryan

Re: trying to shorten long string

2015-03-09 Thread Dean Lawrence
Another option would be to place the entire description in a div and then truncate it via css. http://www.w3schools.com/cssref/css3_pr_text-overflow.asp On Sat, Mar 7, 2015 at 1:31 AM, Mark Spence markpence...@gmail.com wrote: I have a long product description I am trying to truncate. I

Re: trying to shorten long string

2015-03-09 Thread Dean Lawrence
Well, the reason for the alternative approach is that he didn't specify why he wanted to truncate the description. Typically, this is due to layout and not necessarily content. Also, counting words breaks down as soon as you introduce html into the mix, because it is very easy to lop off closing

Re: trying to shorten long string

2015-03-09 Thread Michael Grant
I think the point is that he's trying to truncate the text in a meaningful way, such as at the end of a sentence. One way around 4.5 houses is to only use a period as a delimiter if it is followed by at least one space and an uppercase letter. It's not perfect of course, but it would eliminate

Line breaks being lost in textarea form field

2015-03-08 Thread Mark Spence
I don't know if this specifically a CF question so sorry if it is considered OT. I have an admin section of the site that lets the owner add and edit items/products. I am having an issue with the description field where the newline/enter key input is being lost when editing an entry. To give

CF Express for simple intranet/extranet app?

2015-03-08 Thread Pete Ruckelshaus
I manage a very small non-profit organization. I am working on an app for internal use and am using CF. Are there limitations to CF Express that would prevent me from running this as an intranet/extranet application? Does it use IIS as a web server like other versions, or does it use the

Re: CF Express for simple intranet/extranet app?

2015-03-08 Thread Russ Michaels
It is really only intended for development and testing. details here: https://wikidocs.adobe.com/wiki/display/coldfusionen/Installing+ColdFusion+Express On Sun, Mar 8, 2015 at 2:39 PM, Pete Ruckelshaus pruckelsh...@gmail.com wrote: I manage a very small non-profit organization. I am working

Re: Line breaks being lost in textarea form field

2015-03-08 Thread Byron Mann
I would view the source to see if the subsequent form edit has line breaks. If not this would indicate the data is not being saved as it was entered. You could also copy and paste the data out of the database into notepad or something, to see how the data is actually being stored. On Mar 8, 2015

Re: trying to shorten long string

2015-03-07 Thread Byron Mann
Might be something to test, but first look if there is no period on a string +200, I don't believe anything will return. Another method might be to use reMatch to break the string into an array of sentences. Then loop over the returned array, concatenating the string back together until length

Re: trying to shorten long string

2015-03-07 Thread Captain Obvious
Variable I is undefined. This works, cfif len(variables.description) gt 200 cfset variables.i = false cfloop condition=variables.i eq false cfset variables.description = listDeleteAt(variables.description,listLen(variables.description, .),.) cfif

Accessing data returned from json call

2015-03-06 Thread Torrent Girl
Hello I have the following json call: script $.ajax({ url:data.cfc?method=getData ,dataType:json ,success: function( cfdata ){ data= $.standardiseCfQueryJSON( cfdata ); // do something with the data return data; } });

Re: Accessing data returned from json call

2015-03-06 Thread Akos Fortagh
Hi, your CFC should just simply return the array and there's no need for #serializeJSON(data)#, so assume you're populating the array correctly just do cfreturn data / Then modify your ajax statement to something like the following: $.ajax({ type: get,

Re: Accessing data returned from json call

2015-03-06 Thread Rob Parkhill
Well, I don't know what standardiseCfQueryJSON does, but here's what I do: cffunction name=listFields displayname=List Fields access=remote returntype=query cfargument name=growerID displayName=Grower ID type=numeric hint=I am the Grower ID required=true / cfset var q = ''/ cfquery name=q

Re: Accessing data returned from json call

2015-03-06 Thread Torrent Girl
Thanks Rob I recreated your example with the cfartgallery data source in CF. Here is my method: cffunction name=data access=remote returntype=query cfset var q = ''/ cfquery name=q datasource=cfartgallery select * from artists /cfquery Cfif q.recordcount eq 0 Cfset q =

Re: Accessing data returned from json call

2015-03-06 Thread Rob Parkhill
Well, I actually had to look at the result set from the CFC, to know which columns in the result.DATA array were the right ones. There's also a result.COLUMNS that gives you the list of column names, so for me result.DATA[0][2] was the name and the Acres field was in result.DATA[0][12] - hence

trying to shorten long string

2015-03-06 Thread Mark Spence
I have a long product description I am trying to truncate. I could just truncate it, but I don't want to break off sentences. Here is the solution I came up with but it does not seem to have any effect. Any ideas? cfset variables.description = qry_productsGet.productdescription cfif

Can you use a CFTHREAD inside an Ajax routine?

2015-03-05 Thread John Pullam
It seems to me that the CFTHREAD I attempt to start from inside an Ajax routine (triggered by a CFWINDOW) never runs and doesn't generate any error message. Can anyone advise if this is a legitimate thing to do? ~| Order the

Re: 404

2015-03-05 Thread Dave Watts
In IIS, the handler for *.cfm is: C:\ColdFusion10\config\wsconfig\1\isapi_redirect.dll Does that look right...? Yes. Could this be a permissions issue...? Are you able to run any CF pages? If so, probably not. Dave Watts, CTO, Fig Leaf Software 1-202-527-9569 http://www.figleaf.com/

ACF10 32 - 64 bit

2015-03-05 Thread John M Bliss
Hi. So we're moving from ACF10 32 bit to ACF10 64 bit. On ACF10 32 bit, we settled on: Minimum JVM Heap Size (in MB)1369 Maximum JVM Heap Size (in MB)1369 On the ACF10 64 bit box, we have 32 GB of RAM to play with. Given that this box is just: ACF10 The OS (Windows Server 2012)

Re: 404

2015-03-05 Thread John M Bliss
I think it did. Then I deleted it. Genius. On Thu, Mar 5, 2015 at 3:54 PM, Dave Watts dwa...@figleaf.com wrote: Found it, I think: I was missing the IIS virtual directory /jakarta mapped to C:\ColdFusion10\config\wsconfig\1 Does that look right? Yes, you will need that. The web

Re: 404

2015-03-05 Thread John M Bliss
In IIS, the handler for *.cfm is: C:\ColdFusion10\config\wsconfig\1\isapi_redirect.dll Does that look right...? Could this be a permissions issue...? On Thu, Mar 5, 2015 at 2:28 PM, John M Bliss bliss.j...@gmail.com wrote: Hi. I'm moving an ACF10 / FuseBox 5 site from Windows Server 2003

RE: Can you use a CFTHREAD inside an Ajax routine?

2015-03-05 Thread DURETTE, STEVEN J
Yes, this works. I do it for an application I'm working on. The ajax call hits a page with a cfthread and it runs fine. I do have problems when that cfthread calls other cfm/cfc pages that also have cfthread in them. When that happens I get an error. Steve -Original Message-

404

2015-03-05 Thread John M Bliss
Hi. I'm moving an ACF10 / FuseBox 5 site from Windows Server 2003 (32 bit) to Windows Server 2012 (64 bit) with new IIS, etc. My default fuse seems to work fine but whenever I specify another fuse like: http://www.domain.com/index.cfm?fuseaction=User.ShowLoginForm ...I'm getting the generic IIS

Re: 404

2015-03-05 Thread John M Bliss
Found it, I think: I was missing the IIS virtual directory /jakarta mapped to C:\ColdFusion10\config\wsconfig\1 Does that look right? On Thu, Mar 5, 2015 at 3:14 PM, Dave Watts dwa...@figleaf.com wrote: In IIS, the handler for *.cfm is:

Re: 404

2015-03-05 Thread Dave Watts
Found it, I think: I was missing the IIS virtual directory /jakarta mapped to C:\ColdFusion10\config\wsconfig\1 Does that look right? Yes, you will need that. The web server configuration tool should have created that for you. Dave Watts, CTO, Fig Leaf Software 1-202-527-9569

Re: 404

2015-03-05 Thread Russ Michaels
the requirement for the jakarta vdir I just find annoying, so I am using the boncode handler with CF, then all you need is the handler and nothing else, so you can enable/disable cf via the web.config alone. On Thu, Mar 5, 2015 at 9:41 PM, Dave Watts dwa...@figleaf.com wrote: I think it did.

Re: 404

2015-03-05 Thread Dave Watts
I think it did. Then I deleted it. Genius. Don't feel too bad, it's not immediately obvious what it's for unless you're familiar with Tomcat already. I know I did a double-take the first time I installed CF 10, then I remembered there was no more JRun. Dave Watts, CTO, Fig Leaf Software

Re: ACF10 32 - 64 bit

2015-03-05 Thread Dave Watts
Hi. So we're moving from ACF10 32 bit to ACF10 64 bit. On ACF10 32 bit, we settled on: Minimum JVM Heap Size (in MB)1369 Maximum JVM Heap Size (in MB)1369 On the ACF10 64 bit box, we have 32 GB of RAM to play with. Given that this box is just: ACF10 The OS (Windows

Re: ACF10 32 - 64 bit

2015-03-05 Thread Dave Watts
Hi. So we're moving from ACF10 32 bit to ACF10 64 bit. On ACF10 32 bit, we settled on: Minimum JVM Heap Size (in MB)1369 Maximum JVM Heap Size (in MB)1369 On the ACF10 64 bit box, we have 32 GB of RAM to play with. Given that this box is just: ACF10

Re: ACF10 32 - 64 bit

2015-03-05 Thread John M Bliss
In the old days, the wisdom was to make min and max match so that CF wasn't spending horsepower constantly re-sizing the heap. Is that no longer true? On Thu, Mar 5, 2015 at 7:08 PM, Dave Watts dwa...@figleaf.com wrote: Hi. So we're moving from ACF10 32 bit to ACF10 64 bit. On ACF10 32

Re: ACF10 32 - 64 bit

2015-03-05 Thread John M Bliss
In the last week, we maxed out at 960 MB. On Thu, Mar 5, 2015 at 5:35 PM, Dave Watts dwa...@figleaf.com wrote: Hi. So we're moving from ACF10 32 bit to ACF10 64 bit. On ACF10 32 bit, we settled on: Minimum JVM Heap Size (in MB)1369 Maximum JVM Heap Size (in MB)1369

Re: ACF10 32 - 64 bit

2015-03-05 Thread Dave Watts
In the old days, the wisdom was to make min and max match so that CF wasn't spending horsepower constantly re-sizing the heap. Is that no longer true? It's never been true, in an unqualified sense. That's why they give you two fields. Any place there's a choice in the CF Administrator, it's

Re: CF9 License

2015-03-05 Thread Russ Michaels
I will skype you On Thu, Mar 5, 2015 at 2:07 AM, Mik Muller ad...@montaguema.net wrote: Standard would be fine. Mik At 05:49 PM 3/4/2015, Russ Michaels wrote: Do you want std or enterprise On Wed, Mar 4, 2015 at 21:18 PM, Mik Muller ad...@montaguema.net wrote: I know that

Determine if PDF previously flattened

2015-03-04 Thread daniel kessler
We have a process where some PDFs are flattened and some are not. They'll be flattened later. We use cfpdf for this. Is there a test that we can do to determine if a PDF has been flattened already? Currently we're trying to insert a watermark and if it fails, we suspect it's been flattened.

RE: CF9 License

2015-03-04 Thread Mik Muller
Montague WebWorks, in Greenfield, MA http://MontagueWebWorks.com/ Mik At 04:20 PM 3/4/2015, Steve LaBadie wrote: Mik, What is the name of your organization and where are you located? Steve LaBadie, Web Manager East Stroudsburg University 570-422-3999 slaba...@esu.edu -Original

CF9 License

2015-03-04 Thread Mik Muller
I know that it's no longer supported, but I'm looking to purchase a license for ACF9. I have a few sites that moving onto a server with no included ACF licenses. The sites are running under ACF9 and use many tags that are not supported under Railo / Lucee. I've seen licenses on eBay for $800

Re: Determine if PDF previously flattened

2015-03-04 Thread daniel kessler
Also, I should have said that we are on CF9 for this. thank you. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

RE: CF9 License

2015-03-04 Thread Steve LaBadie
Mik, What is the name of your organization and where are you located? Steve LaBadie, Web Manager East Stroudsburg University 570-422-3999 slaba...@esu.edu -Original Message- From: Mik Muller [mailto:ad...@montaguema.net] Sent: Wednesday, March 04, 2015 4:18 PM To: cf-talk

Fulltime Position::ColdFusion Consultant::SC

2015-03-04 Thread Hemant Makwana
Hi Weare an IT Services Organization and Offering IT/ITES (Staffing) Services to ourDedicated Direct Customers. We have urgent openings with one of our directclients with an utmost importance now and would like to share the jobdescriptions as mentioned below to seek your comfort ability and

RE: CF9 License

2015-03-04 Thread Steve LaBadie
We are no longer using version 9 we upgraded to 11. I will check with our CIO and see i can pass it on. Sent via the Samsung Galaxy S™ III, an ATT 4G LTE smartphone Original message From: Mik Muller Date:03/04/2015 4:29 PM (GMT-05:00) To: cf-talk Subject: RE: CF9 License

Re: CF9 License

2015-03-04 Thread Russ Michaels
Do you want std or enterprise On Wed, Mar 4, 2015 at 21:18 PM, Mik Muller ad...@montaguema.net wrote: I know that it's no longer supported, but I'm looking to purchase a license for ACF9. I have a few sites that moving onto a server with no included ACF licenses. The sites are running under

Re: CF9 License

2015-03-04 Thread Mik Muller
Standard would be fine. Mik At 05:49 PM 3/4/2015, Russ Michaels wrote: Do you want std or enterprise On Wed, Mar 4, 2015 at 21:18 PM, Mik Muller ad...@montaguema.net wrote: I know that it's no longer supported, but I'm looking to purchase a license for ACF9. I have a few sites that moving

Corrupted CFIDE/scheduler/scheduletasks.cfm

2015-03-03 Thread Lonny Eckert
Been a good while... Looks like CFIDE/scheduler/scheduletasks.cfm on one of our CF servers has been corrupted. IIRC, the scheduled task definitions are stored elsewhere. In theory, can I just copy in a scheduletasks.cfm from another CF9 server? Will of course look for other evidence of

RE: (ot) JavaScript detecting foreign scripts

2015-03-03 Thread UXB Internet
Just throwing ideas out there. :) All my pontificating aside for this particular purpose I am just trying to detect if the string adx.myturfads.com exists anywhere on the DOM. For my sister, I've already stopped it from loading by editing the hosts file on the PC to disallow that domain.

Re: (ot) JavaScript detecting foreign scripts

2015-03-03 Thread Dave Watts
Second, if you use TLS (SSL) exclusively, you should be able to prevent this. I tested for this and yes it does prevent it. However that is not actually the point. The point is much bigger than the pennies they sole from my websites ad revenue. Maybe I am the only one but to me this

Re: CF Builder 3

2015-03-03 Thread Roger Austin
I would let it expire and see if you need the license. I use the expired trial and it does everything I need. It isn't worth spending the $300 unless you use the extra tooling. William Seiter will...@seiter.com wrote: Good Afternoon, I have been playing with the mobile abilities of

RE: (ot) JavaScript detecting foreign scripts

2015-03-03 Thread UXB Internet
I agree with you that Comcast should die in a fire, So I'm not crazy then. I have to wonder some times. I like Jochem's solution, of which I was unaware, but still recommend you use HTTPS. Actually I can also prevent it by switching to a different/newer ad type with a different script

RE: (ot) JavaScript detecting foreign scripts

2015-03-03 Thread DURETTE, STEVEN J
Using HTTPS may not be able to solve the problem completely either. A lot of companies, and now apparently ISPs, do a man in the middle certificate and have access to the whole encrypted stream. Companies do it to ensure that their work product isn't being ex-filtrated, ISPs seem to do it

Re: (ot) JavaScript detecting foreign scripts

2015-03-03 Thread Jochem van Dieten
On Mon, Mar 2, 2015 at 8:52 PM, UXB Internet denn...@uxbinternet.com wrote: I apologize for this off topic post. A while back someone posted a thread where they were working on a script that would enumerate the DOM and detect foreign JS scripts running or loaded. I am looking to consult

Re: (ot) JavaScript detecting foreign scripts

2015-03-02 Thread Claude Schnéegans
I am looking to consult with that person off-list Please don't do it off-list, several of us could be interrested. I developped a client side javascript error trackink tool and it helped me a lot to debug my scripts, but I get many errors happening in foreign JS scripts. I fixed my program to

RE: (ot) JavaScript detecting foreign scripts

2015-03-02 Thread UXB Internet
I developped a client side javascript error trackink tool and it helped me a lot to debug my scripts, but I get many errors happening in foreign JS scripts. I fixed my program to detect 5 or 6 of them and now the system is almost perfect. Should have known it was you smile. What is

CF Builder 3

2015-03-02 Thread William Seiter
Good Afternoon, I have been playing with the mobile abilities of CF11 recently and just noticed that my trial copy of the CFB is coming to an end soon. Does anyone have an extra license for CFB 3 that they would be willing to part with? I don't want to pay the full retail price for something I

Re: (ot) JavaScript detecting foreign scripts

2015-03-02 Thread Dave Watts
It appears as if in some locations Comcast's proxies are intercepting advertising scripts (google/doubleclick) and replacing them with their own JS that substitutes their own contracted ads. I am looking for a way to detect this on a test page to determine how wide spread the practice is.

RE: (ot) JavaScript detecting foreign scripts

2015-03-02 Thread UXB Internet
Thanks Dave I do appreciate the information. First, my understanding is that this only happens for users of Comcast public access hotspots, not for subscribed users: http://arstechnica.com/tech-policy/2014/09/why-comcasts-javascript-ad- injections-threaten-security-net-neutrality/ In

(ot) JavaScript detecting foreign scripts

2015-03-02 Thread UXB Internet
I apologize for this off topic post. A while back someone posted a thread where they were working on a script that would enumerate the DOM and detect foreign JS scripts running or loaded. I am looking to consult with that person off-list because I have a case where I need to do the same. It

Remove Jrun Server Instance

2015-02-27 Thread Donnie Carvajal
Hi, I've removed a Jrun Server Instance by clicking on the Delete Icon in the Available Servers list under CF Admin-Enterprise Manager-Instance Manager for CF 9, but the c:\Jrun4\Servers\[instancename] folder is still on the C drive. Can I remove this folder? Also, are there any other

Re: Remove Jrun Server Instance

2015-02-27 Thread Jochem van Dieten
On Fri, Feb 27, 2015 at 7:39 PM, Donnie Carvajal wrote: I've removed a Jrun Server Instance by clicking on the Delete Icon in the Available Servers list under CF Admin-Enterprise Manager-Instance Manager for CF 9, but the c:\Jrun4\Servers\[instancename] folder is still on the C drive. Can I

ACF10 and IIS8

2015-02-26 Thread John M Bliss
So I'm looking at this: http://blogs.coldfusion.com/post.cfm/cautions-for-configuring-cf-10-with-iis-8-on-windows-2012-server ...and I'm here: 4) If all the above steps have been followed and if you are still getting the error, please verify that update 8 is installed properly by checking the

Re: ACF10 and IIS8

2015-02-26 Thread Russ Michaels
in most cases it is just a jar files that you stick in the updates folder. Have you tried manually downloading the update and seeing what it contains and if there are any manual install instructions On Thu, Feb 26, 2015 at 7:59 PM, John M Bliss bliss.j...@gmail.com wrote: So I'm looking at

Re: ACF10 and IIS8

2015-02-26 Thread Wil Genovese
Configure the ColdFusion internal web server on port 8500 and then you have access to the CFAdmin without IIS. http://www.carehart.org/blog/client/index.cfm/2012/7/23/the-builtin-web-server-in-coldfusion-10-enabling-it-configuring-it-reconsidering-it Wil Genovese Sr. Web Application

Re: ACF10 and IIS8

2015-02-26 Thread John M Bliss
I can't even find where to download the .jar. On Thu, Feb 26, 2015 at 3:01 PM, Russ Michaels r...@michaels.me.uk wrote: in most cases it is just a jar files that you stick in the updates folder. Have you tried manually downloading the update and seeing what it contains and if there are any

Re: ACF10 and IIS8

2015-02-26 Thread John M Bliss
Thanks! On Thu, Feb 26, 2015 at 3:02 PM, Wil Genovese jugg...@trunkful.com wrote: Configure the ColdFusion internal web server on port 8500 and then you have access to the CFAdmin without IIS.

ACF10 Mandatory Update

2015-02-26 Thread John M Bliss
Working on this: https://helpx.adobe.com/coldfusion/kb/coldfusion-10-mandatory-update.html I have the update saved to: C:\ColdFusion10\cfusion\hf-updates\cf10_mdt_updt.zip ...and then, from: C:\ColdFusion10\jre\bin ...I run: java -jar C:\ColdFusion10\cfusion\hf-updates\cf10_mdt_updt.zip

Re: ACF10 Mandatory Update

2015-02-26 Thread Russ Michaels
extracting the zip ? On Thu, Feb 26, 2015 at 8:19 PM, John M Bliss bliss.j...@gmail.com wrote: Working on this: https://helpx.adobe.com/coldfusion/kb/coldfusion-10-mandatory-update.html I have the update saved to: C:\ColdFusion10\cfusion\hf-updates\cf10_mdt_updt.zip ...and then, from:

Re: Embedding files in a PDF

2015-02-25 Thread Michael Grant
Hi Kevin, The CF8 documentation seems to indicate that PDF merging is supported with cfpdf. http://help.adobe.com/livedocs/coldfusion/8/htmldocs/help.html?content=Tags_p-q_02.html From the docs: *Merge PDF documents into an output PDF file* cfpdf*required* action = merge *one

RE: Embedding files in a PDF

2015-02-25 Thread Mark A Kruger
Yes but he's talking about arbitrary files I think - supporting documents. I think the first step is to identify what document types you wish to support. If you can specify only PDF's and images for example, you could make this work with CF natively. If you have to do (for example) word doc

Re: ColdFusion_10_WWEJ_win64.exe error

2015-02-25 Thread John M Bliss
That's why I: ;-) I'm constantly posting dumb questions here. :-) On Feb 25, 2015 2:42 PM, Russ Michaels r...@michaels.me.uk wrote: Hey everyone does something dumb occasionally 😊 On Wed, Feb 25, 2015 at 19:38 PM, John M Bliss bliss.j...@gmail.com wrote: No. Come on, Russ,

RE: Embedding files in a PDF

2015-02-25 Thread Kevin Parker
Thanks guys - you're right - file types are quite arbitrary, most likely office documents I would expect. Thank you for your help! ++ Kevin Parker ++ -Original Message- From: Mark A Kruger [mailto:mkru...@cfwebtools.com] Sent: Thursday, 26 February 2015 1:49 AM

Re: ColdFusion_10_WWEJ_win64.exe error

2015-02-25 Thread Russ Michaels
Hey everyone does something dumb occasionally 😊 On Wed, Feb 25, 2015 at 19:38 PM, John M Bliss bliss.j...@gmail.com wrote: No. Come on, Russ, you've known me for, like, a decade on here! ;-) On Feb 25, 2015 2:36 PM, Russ Michaels r...@michaels.me.uk javascript:; wrote: Not trying to

ColdFusion_10_WWEJ_win64.exe error

2015-02-25 Thread John M Bliss
Reinstalling ACF10 64 bit from physical media from Adobe and getting this when I run the installer: Fatal Application Error This Application has Unexpectedly Quit Invocation of this Java Application has caused an InvocationTargetException. This application will now exit. (LAX) Anyone else seen

Re: ColdFusion_10_WWEJ_win64.exe error

2015-02-25 Thread John M Bliss
No. Come on, Russ, you've known me for, like, a decade on here! ;-) On Feb 25, 2015 2:36 PM, Russ Michaels r...@michaels.me.uk wrote: Not trying to install it on a 32bit os are you? On Wed, Feb 25, 2015 at 19:32 PM, John M Bliss bliss.j...@gmail.com wrote: Reinstalling ACF10 64 bit

Re: ColdFusion_10_WWEJ_win64.exe error

2015-02-25 Thread Russ Michaels
Not trying to install it on a 32bit os are you? On Wed, Feb 25, 2015 at 19:32 PM, John M Bliss bliss.j...@gmail.com wrote: Reinstalling ACF10 64 bit from physical media from Adobe and getting this when I run the installer: Fatal Application Error This Application has Unexpectedly Quit

Re: ColdFusion_10_WWEJ_win64.exe error

2015-02-25 Thread John M Bliss
Do you know where that's located? On Wed, Feb 25, 2015 at 4:13 PM, Russ Michaels r...@michaels.me.uk wrote: Try running as administrator. Take a look at the installer log for more info. On Wed, Feb 25, 2015 at 19:44 PM, John M Bliss bliss.j...@gmail.com wrote: That's why I: ;-)

RE: ColdFusion_10_WWEJ_win64.exe error

2015-02-25 Thread Mark A Kruger
Sorry this one! http://www.coldfusionmuse.com/index.cfm/2010/2/24/CF8-Install-Windows-2003-64bit -mark -Original Message- From: John M Bliss [mailto:bliss.j...@gmail.com] Sent: Wednesday, February 25, 2015 3:15 PM To: cf-talk Subject: Re: ColdFusion_10_WWEJ_win64.exe error Do

Re: ColdFusion_10_WWEJ_win64.exe error

2015-02-25 Thread Russ Michaels
Try running as administrator. Take a look at the installer log for more info. On Wed, Feb 25, 2015 at 19:44 PM, John M Bliss bliss.j...@gmail.com wrote: That's why I: ;-) I'm constantly posting dumb questions here. :-) On Feb 25, 2015 2:42 PM, Russ Michaels r...@michaels.me.uk javascript:;

RE: ColdFusion_10_WWEJ_win64.exe error

2015-02-25 Thread Mark A Kruger
John, I have had (on occasion) to edit the LAX jvm config file to get an install to work on certain OS platforms. Here's a blog post that might give you some clues - at least with regard to where everything is at :) http://www.coldfusionmuse.com/index.cfm/2010/8/18/win2k3.64bit.install

Re: ColdFusion_10_WWEJ_win64.exe error

2015-02-25 Thread John M Bliss
Thanks. I installed 32 bit Java and edited that .lax file with: lax.installer.win32.internal.property.0=C:\\Program Files (x86)\\Java\\jre1.8.0_31\\bin\\java.exe lax.nl.current.vm=C:\\Program Files (x86)\\Java\\jre1.8.0_31\\bin\\java.exe ...and I'm getting the same error. What did I do wrong?

Re: ColdFusion_10_WWEJ_win64.exe error

2015-02-25 Thread Russ Michaels
did you already have a JRE installed ? it may be that CF is trying to use your pre-installed java to do the install, try removing it from your environment variables so that the cfinstaller can't find it and might not try to use it On Wed, Feb 25, 2015 at 10:07 PM, John M Bliss

Re: ColdFusion_10_WWEJ_win64.exe error

2015-02-25 Thread John M Bliss
Thanks, guys. This fixed it: http://www.instructables.com/id/How-to-install-coldfusion-10-64-bit-on-Windows-Ser/?ALLSTEPS On Wed, Feb 25, 2015 at 5:37 PM, Russ Michaels r...@michaels.me.uk wrote: did you already have a JRE installed ? it may be that CF is trying to use your pre-installed

Re: ColdFusion_10_WWEJ_win64.exe error

2015-02-25 Thread Russ Michaels
I guess the installer still has not improved then, MEH! I haven't really bothered with CF since v9, I am well and truly in the Railo (Lucee) camp now. On Wed, Feb 25, 2015 at 10:39 PM, John M Bliss bliss.j...@gmail.com wrote: Thanks, guys. This fixed it:

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