Re: Embedding CF in CMS Content

2015-04-17 Thread Jon Clausen
No, CF won’t evaluate the output of a database query - nor should it.  That would pose all sorts of security and stability concerns.  A better solution is to incorporate the dynamic content you want in to your CMS as a module.  Most CMS systems have a method for including custom modular

Re: Ajax Post Value on CF Side

2015-04-07 Thread Jon Clausen
With JQuery: var post_data = $('#myform').serializeArray(); $.post('/mycfpage',post_data,function(data){ //do stuff with JSON data here var name = data.name; var value = data.value; //then manipulate the DOM from there },'json'); On April 7, 2015 at 11:55:47 AM,

Re: CF11 Migration Tool?

2015-02-23 Thread Jon Clausen
It’s in the CFIDE/administrator under Debugging Logging Code Analyzer On February 23, 2015 at 2:33:59 PM, Robert Glover (sled...@gmail.com) wrote: I was told that there's a Migration Tool for CF11... it supposedly scans your code and tells you of any incompatibilities with CF11. I had

Re: Issue with Changes (?) to CFDocument and a background image.

2015-02-20 Thread Jon Clausen
Your background image uses a relative URL: background: url(img/pdfCARD.gif) left top no-repeat; Have you tried it with an absolute URL? or, alternately, using CSS box shadow: .PDFCARD{ box-shadow: 3px 3px 2px #33; } On February 20, 2015 at 4:19:25 PM, lesm...@bellsouth.net

Re: Issue with Changes (?) to CFDocument and a background image.

2015-02-20 Thread Jon Clausen
the heck not??? Bet I'm not the only one with a legacy application that this change broke!! Swapped it out for a .png and all is well. PDF version - no difference. http://www.internationalhelpers.co.gg/test/pdf.cfm Thanks very much Jon! Ah! It’s the image type. Â Apparently

Re: Issue with Changes (?) to CFDocument and a background image.

2015-02-20 Thread Jon Clausen
Ah! It’s the image type.  Apparently CF11 doesn’t support .GIF images.   If you convert the image to a JPEG it will work.  Just tested it locally and it went through with a JPG, but not with a GIF. Jon On February 20, 2015 at 5:45:42 PM, Les Mizzell (lesm...@bellsouth.net) wrote: On 2

Re: (ot) FarCry upgrade to 7.x

2015-02-12 Thread Jon Clausen
Jon On February 12, 2015 at 12:24:31 PM, Uwe Degenhardt (cf-t...@sdsolutions.de) wrote: Hi everybody, I know that there a are some guys out here on the list using FarCry. We used FarCry 6.0.6 for quite a while. Now we want most likely upgrade to 7.x since I have the hope it comes

Re: Passing arguments into base class

2015-02-06 Thread Jon Clausen
with your injection framework and be done with them. 2) If the methods are all static helpers, incorporate it as a mixin to your Application.cfc, so that the methods become available globally, without scope, on every request.  Jon   On February 6, 2015 at 1:24:03 PM, Dean Lawrence (dean

Re: Mura or ContentBox

2015-01-28 Thread Jon Clausen
modules.contentbox-admin.handlers.baseHandler and then use custom routes to bring them in to the admin path. They will be under the influence of the security interceptor that way. On Tue, Jan 27, 2015 at 10:38 AM, Jon Clausen jon_clau...@silowebworks.com wrote: I have and will continue to use

Re: Mura or ContentBox

2015-01-27 Thread Jon Clausen
/permissions administration and functionality of ContentBox to Mura Hope that helps, Jon On Jan 26, 2015, at 1:37 PM, Dean Lawrence dean...@gmail.com wrote: I'm about to start a new project for a client that will require a CMS. I would typically build out the functionality that is needed

Re: PHP To Cold Fusion

2015-01-16 Thread Jon Clausen
1) No, that won’t work. toBase64(hash('testing', SHA-256)) gets you close but hash_hmac is a very specific PHP function in what it does. Is there a way you can use a different method to generate that signature or are you trying to maintain backward compatibility? Alternately, here’s a UDF

Re: PHP To Cold Fusion

2015-01-16 Thread Jon Clausen
) On Fri, Jan 16, 2015 at 1:04 PM, Jon Clausen jon_clau...@silowebworks.com wrote: 1) No, that won’t work. toBase64(hash('testing', SHA-256)) gets you close but hash_hmac is a very specific PHP function in what it does. Is there a way you can use a different method to generate

Re: CF10 Updater 14

2015-01-09 Thread Jon Clausen
through the CFAdmin with either Windows or Linux. Stopping the server, running the update on the CLI and reinstalling the web server connectors has been much more reliable. HTH, Jon On Jan 9, 2015, at 9:06 AM, george.e...@ssa.gov george.e...@ssa.gov george.e...@ssa.gov wrote: When

Re: Moving to Railo

2014-12-23 Thread Jon Clausen
to you. It’s a very good upgrade, IMHO, and, generally, a painless switch. Jon On Dec 23, 2014, at 3:49 PM, Mik Muller ad...@montaguema.net wrote: Hey all, I'm moving my server to a new company who does not offer CF licenses on a monthly basis, though they do have some CF experience

Re: Trouble with ArrayAppend

2014-12-20 Thread Jon Clausen
Address in allAddresses){ ... } Jon On Dec 20, 2014, at 12:10 PM, Dean Lawrence dean...@gmail.com wrote: 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

Re: Creating columns that aren't included in a query result

2014-12-11 Thread Jon Clausen
Please see my last response. In your situation you should use Steve’s example. My SQL example was just that - an example. It doesn’t reflect your actual column names. Jon On Dec 11, 2014, at 8:50 AM, Torrent Girl moniqueb...@gmail.com wrote: I get the following error on Jon's example

Re: Creating columns that aren't included in a query result

2014-12-11 Thread Jon Clausen
Since you’re handling all of the the counts in the case statements, you don’t need to select the increasedKnowlege column value, order or group by it anymore. Your SQL should be: SELECT Sum(case increasedKnowledge WHEN 'agree' then 1 else 0 end) as 'agree', Sum(case increasedKnowledge WHEN

Re: Eliminating CFM extensions in IIS 7

2014-12-10 Thread Jon Clausen
match url=^news/(.*) ignoreCase=false /action type=Rewrite url=/news.cfm?{R:1} appendQueryString=false / /rule If you add this rule above the “AddCFM” rule, it will stop processing subsequent rules and should give you the behavior you are looking for. HTH, Jon

Re: cfmail causing problems for our server

2014-12-10 Thread Jon Clausen
). Then you can also ensure CAN-SPAM compliance as well. If you’re using a CMS to send the mail through, then you might need to create a module to hook in to the main mailing list feature, but the long-term result would be better. Jon On Dec 10, 2014, at 1:23 PM, Dave Long d

Re: Creating columns that aren't included in a query result

2014-12-10 Thread Jon Clausen
that could probably find a better way to aggregate the sub-select. HTH, Jon On Dec 10, 2014, at 7:32 PM, Torrent Girl moniqueb...@gmail.com wrote: Sorry let me try that again...what I meant was Not quite. The value returned is a COUNT of the number of each response (sorry I

Re: Creating columns that aren't included in a query result

2014-12-10 Thread Jon Clausen
to convert that to a bit value for your purposes. Either way, the end result is that you have one query, grouped by question with your response counts for each question. Then you only have to loop the query once instead of keeping track of iterations, cases and conditionals. Jon On Dec 10, 2014, at 9

Re: Creating columns that aren't included in a query result

2014-12-10 Thread Jon Clausen
for. Jon On Dec 10, 2014, at 9:39 PM, Torrent Girl moniqueb...@gmail.com wrote: Jon can I do this even though disagree, etc. are columns but actual values? I could be wrong, but it seems like you might be making it harder than it needs to be from the query side, if you are looking

Re: Redirects

2014-11-10 Thread Jon Clausen
Sorry: typo. You should use a 307 status code for temporary redirects. Jon On Nov 10, 2014, at 3:53 PM, Jon Clausen jon_clau...@silowebworks.com wrote: Is the current “www4” a Linux or Windows machine? I would suggest handling those at the web server level, with a 303 status code to let

Re: Redirects

2014-11-10 Thread Jon Clausen
http://www4.esu.edu:80; include /etc/nginx/proxy.conf; } } Jon On Nov 10, 2014, at 3:54 PM, Steve LaBadie slaba...@po-box.esu.edu wrote: www4 is a windows box Steve LaBadie, Web Manager East Stroudsburg University 570-422-3999 slaba...@esu.edu

Re: Redirects

2014-11-10 Thread Jon Clausen
. If you want to use CF, then I would create an index.cfm file and then put the redirect in your Application.cfc’s onRequestStart() function. Jon On Nov 10, 2014, at 4:17 PM, Steve LaBadie slaba...@po-box.esu.edu wrote: The Unix box (www) is going away and the www4 (windows box) will be renamed

Re: Redirects

2014-11-10 Thread Jon Clausen
HTH, Jon On Nov 10, 2014, at 3:39 PM, Steve LaBadie slaba...@po-box.esu.edu wrote: We are currently using a meta date redirect from a UNIX box. The redirects currently sit on www and the production server sit at www4. We are taking down www so the redirects have to be recreated on our

Re: Is time for a change?

2014-11-07 Thread Jon Cavanaugh
Rick, please reach out to me and I'll make sure your taken care of. Jon C. -- Jon Cavanaugh j...@hostek.com Anyone using Hostek? I have been with them for. well a long time. But in the last year it seems there have been more problems than ever. I really hate the idea of moving all my clients

Re: Writing an Apache 404 Handler in CF

2014-10-10 Thread Jon Clausen
/%{REQUEST_URI} [QSA,L,NS] If you change the rule for static files to include .aspx, then Apache will handle that 404 as usual: RewriteCond %{REQUEST_URI} \.(aspx|bmp|gif|jpe?g|png|css|js|txt|xls|ico|swf)$ HTH, Jon On Oct 10, 2014, at 4:34 PM, Russ Michaels r...@michaels.me.uk wrote: Wouldn't

Re: Anyone have experience running CyberSource Secure Acceptance

2014-09-16 Thread Jon Clausen
Sandra, I just sent you a couple of files off-list that may help. Jon On Sep 16, 2014, at 2:05 PM, Sandra Clark sclarkli...@gmail.com wrote: Found that, used it. Still using the basics of the javas.crypto library. I get the hmac issue now. But getting the system to accept a test sample

Re: Querying a comma separated list

2014-08-26 Thread Jon Clausen
listContains() isn’t a function of the database but, rather, a CFML function. If you’re storing the list as a string list, and are querying the database, then your query will have to use Access string functions as it doesn’t know CFML: http://www.techonthenet.com/access/functions/ HTH, Jon

Re: Handling 404 errors by Coldfusion

2014-07-30 Thread Jon Clausen
Claude, This should be just a setting that needs to be adjusting in IIS: IIS Manager [Site] Error Pages 404 - Uncheck “Insert content from static file in to the error response” and/or reconfigure as fits your need. HTH, Jon On Jul 30, 2014, at 2:49 PM, Claude Schnéegans schneeg

Re: Handling 404 errors by Coldfusion

2014-07-30 Thread Jon Clausen
it handle everything for static content. Then just remove the IIS error handlers from the site and let CF handle all of those when the NGINX proxy is in effect. HTH, Jon On Jul 30, 2014, at 3:53 PM, Claude Schnéegans schneeg...@internetique.com wrote: IIS Manager [Site] Error Pages 404 - Uncheck

Re: Locks on Access files in CF 9

2014-07-03 Thread Jon Clausen
the directory. Jon On Jul 3, 2014, at 2:15 PM, Scott Stewart webmas...@sstwebworks.com wrote: You *could* put a system together where the client, or you uploads the access database, the system programatically creates a datasource on the fly transfers any data changes to the real database, kills

Re: Writing huge data to excel

2014-07-01 Thread Jon Clausen
/WSc3ff6d0ea77859461172e0811cbec1fb12-7fd6.html You can create your workbook and then use SpreadsheetWrite() to write each worksheet to the workbook. I think you’ll find that having a dynamic number of sheets in the workbook will be easier using script syntax. HTH, Jon On Jul 1, 2014, at 10:03 AM

Re: Writing huge data to excel

2014-07-01 Thread Jon Clausen
SpreadSheetWrite function to write to a file. I am storing all the sheets in a variable and using cfheader and cfcontent to prompt the user to save or download. Do you think this is a preferred option? On Tue, Jul 1, 2014 at 2:17 PM, Jon Clausen jon_clau...@silowebworks.com wrote: I’ve

Re: XML - no encoding

2014-06-17 Thread Jon Clausen
CDATA: MyXMLObj.MyXMLChild[1].XMLCData=‘http://myurl.com?x=ya=b'; Most XML libraries for other languages will read CDATA just like they would a non-escaped node. On Jun 17, 2014, at 2:33 PM, John M Bliss bliss.j...@gmail.com wrote: I'm working with a vendor to troubleshoot an error and

Re: XML - no encoding

2014-06-17 Thread Jon Clausen
PM, Jon Clausen jon_clau...@silowebworks.com wrote: CDATA: MyXMLObj.MyXMLChild[1].XMLCData=蘇ttp://myurl.com?x=ya=b'; Most XML libraries for other languages will read CDATA just like they would a non-escaped node. On Jun 17, 2014, at 2:33 PM, John M Bliss bliss.j...@gmail.com wrote

Re: SOT: EXT grid timeout

2014-06-14 Thread Jon Clausen
the 200. HTH, Jon On Jun 14, 2014, at 10:16 AM, John M Bliss bliss.j...@gmail.com wrote: Hi! So I added this code to increase our EXT grid timeout from 2.5 minutes to 10 minutes: Ext.onReady(function(){ Ext.Ajax.timeout = 60; }); So now, EXT grids will wait longer for CF

Re: Spam management for forms handling

2014-04-17 Thread Jon Clausen
+1 for the honeypot. Depending on the type of submissions you are looking to get from your form, conversion rates also increase for valid submissions over captcha-protected inputs. Jon On Apr 17, 2014, at 1:00 PM, Robert Harrison rob...@austin-williams.com wrote: You can use: 1

Re: Moving part of my hosting business - thoughts about my plan please ...

2014-03-28 Thread Jon Clausen
://www.modcfml.org/ A Control Panel is really helpful for administering multiple clients. VirtualMin is my preference among Linux CP’s. HTH, Jon On Mar 28, 2014, at 5:21 AM, Mike K afpwebwo...@gmail.com wrote: Yes yes yes, I know its been done and done again here.I'd like to know the opinion

Re: CAN THIS PLEASE BE THE END? Re: The long tail of ColdFusion fail

2014-03-28 Thread Jon Clausen
You have all said your piece here, in the very public openness of the web, where Google will pick it up and run, and allow the naysayers to say see, even their own community…” ^^ +1 ^^ cfhorse beaten=true dead=true / cfabort

Re: The long tail of ColdFusion fail

2014-03-28 Thread Jon Clausen
Jordan and Dave, Thanks! You just helped me solve a totally unrelated problem on an IIS site with a lot of static content requests. I’ve got several servers using Apache as a reverse proxy to NGINX but I don’t know why it didn’t occur to me to look in to doing the same for IIS... Jon

Re: DevEdit

2014-03-27 Thread Jon Clausen
http://hesab.net/book/asp.net/devedit_aspnet_demo/DevEditSetupGuideNET.pdf On Mar 27, 2014, at 10:06 AM, C. Hatton Humphrey chumph...@gmail.com wrote: I'm working on an old CMS and it's using DevEdit as its WYSIWYG. I need to figure out a way to change the configuration but the site is

Re: Displaying page loading message

2014-03-24 Thread Jon Clausen
in sequence. Working with loading messages is a situation where AJAX really shines. Any reason why that isn’t an option? Jon On Mar 24, 2014, at 4:53 PM, fun and learning funandlrnn...@gmail.com wrote: All, I have an issue with displaying a page loading message on a page with heavy

Re: database design conundrum

2014-03-20 Thread Jon Clausen
, thing1, thing2... user_things - key,user_id,relation_user_id,thing1(bit),thing2(bit)... That’s how I have and would approach it but now I’m also curious as to how others would. HTH, Jon On Mar 20, 2014, at 8:33 PM, PT cft...@gmail.com wrote: I have a design issue I can't seem to get my head

Re: CFML tags was: The long tail of ColdFusion fail

2014-03-18 Thread Jon Clausen
On Mar 18, 2014, at 10:17 AM, Adam Cameron dacc...@gmail.com wrote: Tag-based code is godawful anywhere other than in a view, or some other situation in which text-processing is needed. Which does not describe an awful lot of CFML code out there. That Macromedia/Adobe pushed the tag side

Re: CFML tags was: The long tail of ColdFusion fail

2014-03-18 Thread Jon Clausen
But the bulk of your *code* should be separate from your views. So be nowhere *near* HTML. So, accordingly, the reason for having tag-based constructs in CFML should not be relevant in almost all your code. Presuming you are doing a MVC framework. MVC and/or frameworks aren't the reason

Re: The long tail of ColdFusion fail

2014-03-17 Thread Jon Clausen
On Mar 17, 2014, at 3:26 PM, Wil Genovese jugg...@trunkful.com wrote: PHP isn’t safer. Just different. And just because you’re not hosting the servers does not me you are not responsible for them and you certainly are responsible for the damage caused by the hack. Go to

Re: Trying to perfect SES urls - Integrating Coldbox with Cartweaver 3

2014-02-10 Thread Jon Clausen
up” the extension pages and handle the category-subcategory-product links (name/value pairs work well here), but there are all sorts of examples and tutorials for mod-rewrite, ISAPI rewrite and IIS URL Rewriting out there. HTH, Jon On Feb 10, 2014, at 9:07 AM, Matt Gibson gibson...@gmail.com

Re: # in variables

2014-02-07 Thread Jon Clausen
allow for the characters to be rendered correctly and then re-run the replacement to double # the remaining pound symbols - even if CF is evaluating them. Jon On Feb 7, 2014, at 12:36 PM, Bryan Stevenson br...@electricedgesystems.com wrote: Thanks Rob/Russstarting to think I will either do

Re: Jrun Restarts Itself Every Few Minutes - CF 8

2014-02-06 Thread Jon Clausen
for some (Examples: http://www.trunkful.com/index.cfm/2013/8/8/ColdFusion-on-Java-17 http://helpx.adobe.com/coldfusion/kb/cumulative-hotfix-4-coldfusion-901.html) but I’m not sure if that would work with CF8. HTH, Jon On Feb 6, 2014, at 10:35 AM, E Cohen eron_co...@yahoo.com wrote: Thanks Mark

Re: Creating Grayscale PDF with CFDocument in CF8?

2014-01-31 Thread Jon Clausen
In a word, no, unless you wanted to convert the PDF to an image, greyscale it, and then convert it back to a PDF - losing all of your text selection in the process. My suggestion would also be the stylesheet solution. If you use SASS (http://sass-lang.com/ ) you can declare your color

Re: Viviotech?

2014-01-28 Thread Jon Clausen
Looks like it was an exploit on some servers which use KloxoCP: https://twitter.com/VivioSupport/status/428245229737492480 that affected the whole network. On Jan 28, 2014, at 2:16 PM, Money Pit websitema...@gmail.com wrote: Yup sure enough mine just came back up too. I've noticed the

Re: UTF8 encoding issues on response from HTTP request

2014-01-17 Thread Jon Clausen
Are they both running off of the same database server? If not are all the database table encodings set to UTF8? I had a similar Problem with a pair of clustered PostgreSQL servers once where the second server defaulted to LATIN1 and was returning data like what you have below. HTH, Jon

Re: SSL certificate problem with 3rd party

2014-01-16 Thread Jon Clausen
Is it a 2048 bit cert? I seem to remember CF8 needing a patch to handle those. Jon On Jan 16, 2014, at 3:05 PM, Jason Durham jqdur...@gmail.com wrote: A payment processor changed one of their certificates which is causing CF to throw an exception when we try to connect via CFHTTP using

Re: Windows server 2008 or 2012

2014-01-16 Thread Jon Clausen
Agree with Russ. Having used both, I prefer 2012 now - once I got used to the new interface. -J On Jan 16, 2014, at 2:54 PM, Russ Michaels r...@michaels.me.uk wrote: if your starting from scratch then you may as well start with 2012, there is no reason not to except the elarning curve

Re: How do I pass this jQuery variable as arguments to a cfc method?

2014-01-15 Thread Jon Clausen
I would set your argument type as a list and then validate,loop and process the list in your CFC method. If so you’ll need to change your each() loop to append the variables in to the list and then post the string in your $.post() request. HTH, Jon On Jan 15, 2014, at 3:56 PM, Rick

Re: How do I pass this jQuery variable as arguments to a cfc method?

2014-01-15 Thread Jon Clausen
On a related note, the Postman extension for Chrome is great for testing what your remote CFC's are doing with form variables. On Jan 15, 2014, at 4:53 PM, Jon Clausen jon_clau...@silowebworks.com wrote: I would set your argument type as a list and then validate,loop and process

Re: How do I pass this jQuery variable as arguments to a cfc method?

2014-01-15 Thread Jon Clausen
:59 PM, Jon Clausen jon_clau...@silowebworks.comwrote: On a related note, the Postman extension for Chrome is great for testing what your remote CFC's are doing with form variables. On Jan 15, 2014, at 4:53 PM, Jon Clausen jon_clau...@silowebworks.com wrote: I would set your argument

Re: Hosting... Again

2014-01-13 Thread Jon Clausen
+1 for Viviotech. I’ve never had anything but excellent support and turnaround times from them. I’ve heard some great things about Edge Web Hosting, too, but never had a reason to switch from Viviotech. On Jan 10, 2014, at 8:22 AM, Robert Harrison rob...@austin-williams.com wrote: Hi

Re: Scheduled Tasks Oddity

2013-12-18 Thread Jon Clausen
Initial thought: Do you have any browser-sniffing code that's been added recently, such as something for a mobile site? On Dec 13, 2013, at 3:02 PM, John M Bliss bliss.j...@gmail.com wrote: Another clue? Tasks in this state have a Resume Scheduled Task button instead of a Pause

Re: Simple SQL Query sometimes really Slow?

2013-12-05 Thread Jon Clausen
are happening: http://msdn.microsoft.com/en-us/library/tcbchxcb%28VS.80%29.aspx HTH, Jon On Dec 5, 2013, at 12:26 PM, Brook Davies cft...@logiforms.com wrote: This may not be the right place to post this (man, CF-TALK has changed a lot in the last 5 or so years ;)). I have a simple SQL

Re: CMS Vs Framework

2013-12-05 Thread Jon Clausen
-complicated by attempting to customize the CMS. HTH, Jon On Dec 5, 2013, at 6:41 PM, Nils n...@thecomputerchief.com wrote: Why would I choose a CF Framework over a CF CMS system? I have no real=0A= experience with either, other than installing both and playing around.=0A= If a CF CMS system

Re: CMS Vs Framework

2013-12-05 Thread Jon Clausen
Sorry, first paragraph should read “it’s often far easier to do the latter than the former”. My bad. On Dec 5, 2013, at 8:19 PM, Jon Clausen jon_clau...@silowebworks.com wrote: To answer your question, the major difference between customizing a CMS versus incorporating your content

Re: isValid - numeric vs. float

2013-12-04 Thread Jon Clausen
Agreed. I would recommend stripping the commas out before you validate the number. They do strange things with calculations. For instance, numberFormat() converts “1,000” to 41274, as does JavaCast(“int”,”1,000) or JavaCast(“float”,”1,000). I actually think it’s kind of incorrect that

Re: Java iterator problem

2013-12-04 Thread Jon Clausen
=#result.iterator().next()# /cfloop I’m not good with the “under-the-hood” java of what is happening here, but it seems to me that by placing the your result variable in the loop, you are re-starting the loop with each sequence. HTH, Jon On Dec 4, 2013, at 6:19 PM, Tom McNeer tmcn...@gmail.com wrote

Re: QoQ Question

2013-12-03 Thread Jon Clausen
or with a UNION statement. SELECT * from qNumber UNION SELECT * from qNoNumber The above is intensive in processing so I wouldn’t recommend it if the recordset is large. HTH, Jon On Dec 2, 2013, at 6:05 PM, John M Bliss bliss.j...@gmail.com wrote: Hi! I have a query result set stored

Re: QoQ Question

2013-12-03 Thread Jon Clausen
strings as NULLS for SQL purposes) and, if you need those null records, us an “IS NULL query separately or with a UNION statement. SELECT * from qNumber UNION SELECT * from qNoNumber The above is intensive in processing so I wouldn’t recommend it if the recordset is large. HTH, Jon On Dec 3

Re: Creating maps with CF

2013-12-03 Thread Jon Clausen
and geometry values to lat/lon floats. Note that the JS below uses XML, is missing some of the custom marker variables which were set earlier in the JS library. It was also written for an earlier version of the API. HTH, Jon - script type=“text

Re: mapping/redirect mystery

2013-11-27 Thread Jon Clausen
of the site root. You might also check the VirtualHost directive for the site, if it’s Apache, to see if there’s an Alias reference. HTH, Jon On Nov 27, 2013, at 8:39 AM, Russ Michaels r...@michaels.me.uk wrote: I have a site I am migrating from other host/server which is causing me a bit

Re: per application settings

2013-11-26 Thread Jon Clausen
: Alias /cup/ /er/cup/ CF mappings are only recognized by the CF server. If you’re trying to change that directory dynamically, you can serve via cfcontent. Jon On Nov 26, 2013, at 1:36 PM, Eric Roberts ow...@threeravensconsulting.com wrote: I am trying to set up some local mappings (CF9

Re: per application settings

2013-11-26 Thread Jon Clausen
On Nov 26, 2013, at 2:11 PM, Eric Roberts ow...@threeravensconsulting.com wrote: So why does the mapping in CFADmin work if I set that up? That is all I am doing, just at an application level...that doesn't make sense... When CF renders the page, it should render the mapping, just like

Re: per application settings

2013-11-26 Thread Jon Clausen
Are you developing on the standalone CF server? If so, that may be why you’re getting that behavior when you specify it in the CF Admin, but not at the application level. You may get that behavior if you’re serving everything through the self-contained server, but that behavior won’t carry

Re: per application settings

2013-11-26 Thread Jon Clausen
OK, Just ran a test and I can’t duplicate your server mapping functionality with a standard Apache/CF Connector server setup but I *can* duplicate that functionality when I tell Apache to serve an image MIME type (e.g. - .jpg, .png) through Coldfusion. Is this how your setup is configured?

Re: per application settings

2013-11-26 Thread Jon Clausen
On Nov 26, 2013, at 3:15 PM, Eric Roberts ow...@threeravensconsulting.com wrote: so back to the question...why are the per application settings not working? Eric I suspect the answer lies within the unique configuration of your development server. No matter what variables you have

Re: Application.cfc question

2013-11-25 Thread Jon Clausen
what you want to do. Ben Nadel has a nice tutorial on the subject: http://www.bennadel.com/blog/1179-Ask-Ben-Extending-Application-cfc-And-OnRequestStart-With-SUPER.htm HTH, Jon On Nov 25, 2013, at 1:30 PM, Eric Roberts ow...@threeravensconsulting.com wrote: Here's the background

Re: CF/Railo development environment

2013-11-21 Thread Jon Clausen
+1 (++) cfeclipse ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Re: Frustrated and on a deadline please assist

2013-11-18 Thread Jon Clausen
you navigate directly to it? If so, are you using JQuery’s native .getJSON() method? That should give you an immediately workable JS array. HTH, Jon On Nov 19, 2013, at 12:36 AM, Torrent Girl moniqueb...@gmail.com wrote: This is what my response looks like: //\/\/[\Miami Area Geriatric

Re: Frustrated and on a deadline please assist

2013-11-18 Thread Jon Clausen
PS - if you're using double quotes in your JSON, you don't need to escape the single quotes. [Note: Typo assistance courtesy of iPhone] On Nov 19, 2013, at 1:02 AM, Jon Clausen jon_clau...@silowebworks.com wrote: Are you specifying the return type in your function call or are you pulling

Re: Frustrated and on a deadline please assist

2013-11-17 Thread Jon Clausen
Hi TG, Do you have 'access=“remote”’ in your function declaration? What is Firebug showing you, the return looks like from the AJAX call? Jon On Nov 17, 2013, at 6:32 PM, Torrent Girl moniqueb...@gmail.com wrote: I am trying to do something as a simple CFC JSON call and can't get

Re: CF7 to CF9 timeout issues

2013-11-15 Thread Jon Clausen
the database? HTH, Jon On Nov 15, 2013, at 11:05 AM, Andrew Scott andr...@andyscott.id.au wrote: Using monitoring software like seeFusion or FusionReactor would be your best bet here. Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com

Re: CF 10 on Mavericks AND Adobe download links not working

2013-10-28 Thread Jon Clausen
I hesitate to jump in on this post as it seems to have generated some vitriol, but I would have to wholeheartedly agree with Ben Here. I upgraded to Mavericks and rolled back to Snow Leopard after 12 hours because of the mod_jk issue. This weekend, thanks to some footwork by Sean Coyne and

Re: MAMP not processing ColdFusion

2013-10-28 Thread Jon Clausen
not aware that it would touch the httpd.conf file. For me it was just dying with a cryptic error in /var/log/apache2 . Jon On Oct 28, 2013, at 2:41 PM, Scott Brady dsbr...@gmail.com wrote: I mentioned this in my latest reply/rant about Mavricks, but thought it should be its own thread

Re: MAMP not processing ColdFusion

2013-10-28 Thread Jon Clausen
/ColdFusion10/cfusion/wwwroot/CFIDE” Directory /Applications/ColdFusion10/cfusion/wwwroot/CFIDE Options Indexes FollowSymLinks AllowOverride None Order allow,deny Allow from all /Directory His there a rogue *.conf in another directory that might be overriding the first path specified? Jon On Oct 28

Re: MAMP not processing ColdFusion

2013-10-28 Thread Jon Clausen
Brady dsbr...@gmail.com wrote: Well, this is no longer using the built-in apache server, but one included with MAMP (which uses the same Apache version that CF 10 supports). Scott On Mon, Oct 28, 2013 at 1:57 PM, Jon Clausen jon_clau...@silowebworks.comwrote: Scott, Have you

Re: I need a CF alternative that supports flash forms

2013-08-12 Thread Jon Clausen
of service now that I'd be willing to let go cheap. Send me an email offline if you're interested. All my apps are running on Railo now. Jon On Aug 12, 2013, at 9:20 PM, Raymond Camden raymondcam...@gmail.com wrote: I'd just tell em that nothing else supports it and the cost of CF STD

Re: issue with cfhttp and client certificates

2013-07-25 Thread Jon Clausen
Long shot, but what is the key length on the encryption? Could it be an issue with the encryption capabilities currently set on the new JVM for CF10? Explanation: http://www.petefreitag.com/item/803.cfm On Jul 25, 2013, at 4:44 PM, Jeff Garza j...@garzasixpack.com wrote: Mark, On the

Re: Client wants CMS that functions similar to Joomla, for example

2013-07-24 Thread Jon Clausen
. I've found that the more a client interacts with their site, the more valuable it becomes as a business tool and the more requests I get to add functionality and features to help then. Best of luck, Jon -Original Message- From: Rick Faircloth [mailto:r...@whitestonemedia.com] Sent

Re: Possible Hack?

2013-02-08 Thread Jon Ewing
This little amendment to the footer of the home page will hopefully be enough to help me rest comfortably over the weekend... cffile action = read file = network path\application.cfm variable = strApplicationTest cfif left(strApplicationTest,14) EQ cfapplication !---Success!

Re: Error handler or database bringing down server?

2011-10-11 Thread Jon F
Install a full JDK and use jstack to generate a thread dump when this happens again. Then you can see what is going on and fix it. Thanks for your help on this issue. It was able to assist in finding the issue. The problem was due to the timeout setting in CF Administrator and the number of

Error handler or database bringing down server?

2011-10-05 Thread Jon F
I have a situation where the web server became unresponsive and have been unable to pinpoint the exact issue as to why. System: Win 2008 vmware server running IIS 7.5 and CF 9 Situation: A database server on another system went down and a popular page on the site makes 2 calls to the

RE: Order By question

2010-06-30 Thread Jon Sala
Exclude them from the query, then append them with QueryAddRow() and QuerySetCell() -Original Message- From: Les Mizzell [mailto:lesm...@bellsouth.net] Sent: Wednesday, June 30, 2010 1:03 PM To: cf-talk Subject: Order By question Not 100% sure how to do this... Need to return a list

RE: Order By question

2010-06-30 Thread Jon Sala
disagree with this approach. Doing it in the db will be much faster. On Wed, Jun 30, 2010 at 3:06 PM, Jon Sala jon.s...@albertahealthservices.ca wrote: Exclude them from the query, then append them with QueryAddRow() and QuerySetCell() -Original Message- From: Les Mizzell [mailto:lesm

CFPDF Merge - ZLIB Error - CF8 vs CF9

2010-06-04 Thread Jon Sala
) at coldfusion.pdf.PDFDocOperation.merge(PDFDocOperation.java:359) at coldfusion.pdf.PDFDocOperation.merge(PDFDocOperation.java:406) at coldfusion.tagext.lang.PDFTag.doEndTag(PDFTag.java:955) at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:2641) at -- Jon This message and any attached

RE: CFPDF Merge - ZLIB Error - CF8 vs CF9

2010-06-04 Thread Jon Sala
Forgot to mention - there was a reason this server was not brought to CF 8.0.1 -Original Message- From: Jon Sala Sent: Friday, June 04, 2010 1:47 PM To: cf-talk Subject: CFPDF Merge - ZLIB Error - CF8 vs CF9 Hello all - is there a patch/JAR somewhere that addresses this? It works

RE: Spreadsheet manipulation - clearing/deleting cell contents

2010-05-28 Thread Jon Sala
I may not be following you on this Leigh; if I put a long string in A1 using SpreadsheetSetCellValue and nothing in B1, A1 is still clipped...? -Original Message- From: Leigh [mailto:cfsearch...@yahoo.com] Sent: Friday, May 28, 2010 2:32 AM To: cf-talk Subject: RE: Spreadsheet

RE: Spreadsheet manipulation - clearing/deleting cell contents

2010-05-28 Thread Jon Sala
So it seems the culprit is creating a spreasheet from a query with SpreadsheetAddRows(). Rows created by QueryAddRow() although empty, are not 'blank' in Excel's opinion. In this case, I needed some blank spreadsheet rows to inject long overflowing strings, inbetween the rows of source query

RE: Spreadsheet manipulation - clearing/deleting cell contents

2010-05-27 Thread Jon Sala
Yes, thanks Leigh that is great cheat to get into production with! Hopefully it doesn't break to soon if ever, -- Jon -Original Message- From: Leigh [mailto:cfsearch...@yahoo.com] Sent: Wednesday, May 26, 2010 9:02 PM To: cf-talk Subject: Re: Spreadsheet manipulation - clearing

Retrive query cell value by key/value pair instead of row number?

2010-05-26 Thread Jon Sala
to get some sleep. -- Jon This message and any attached documents are only for the use of the intended recipient(s), are confidential and may contain privileged information. Any unauthorized review, use, retransmission, or other disclosure is strictly prohibited. If you have received this message

RE: Retrive query cell value by key/value pair instead of row number?

2010-05-26 Thread Jon Sala
write a function that takes a colname, col value and query name, and perform a qoq- assuming the function will have access to the original query... Hope that helps! On 5/26/10, Jon Sala jon.s...@albertahealthservices.ca wrote: Is it possible to retreive from a query in memory a cell value

  1   2   3   4   5   6   7   8   9   10   >