Sebastiaan
Member since Dec 11, 2008
- Profile: /members/295-sebastiaan.htm
- URL: http://onlinebase.nl
- Comments: 61
Recent Blog Comments By Sebastiaan
-
Testing wkhtmltopdf 0.12.6 With Docker In Lucee CFML 5.3.4.80
Posted on Nov 5, 2020 at 2:39 PM
Have you tried getting HighCharts to render properly in WKHTMLTOPDF? Usually I can get it to work but recently have had an issue only getting the box for the graph but not the graph inside it...... read more »
-
Using The OWASP AntiSamy 1.5.7 Project With ColdFusion 10 To Sanitize HTML Input And Help Prevent XSS Attacks
Posted on Nov 25, 2019 at 7:12 AM
Hi Ben, Cleaning user input is usually easy with built-in functions of CFML. But when when it comes to textareas and rich text editors. I'll try your approach, 'cause my homegrown version doesn't cut it facing all the thousands of ways harmful code can be encoded :-( And @Vikram, too bad ... read more »
-
For Better Security Use HtmlEditFormat() In Conjunction With JSStringFormat() In ColdFusion
Posted on Dec 5, 2014 at 9:23 AM
Hmmm, and then around half a year ago the whole OWASP ESAPI project was denoted because of lack of support and updates. Now people around the ESAPI "tribe" are referring developers (CF'ers also) to the OWASP Java Encoder project: https://www.owasp.org/index.php/OWASP_Java_Encoder_Project ... read more »
-
Using A Name Suffix In ColdFusion's CFMail Tag
Posted on Jun 13, 2014 at 8:48 AM
Hi Ben, how come all unknown commenters (no known Gravatar) are blessed with an image of Arnie? An inside joke? Or an example for all?... read more »
-
CFDirectory Filtering Uses Pipe Character For Multiple Filters (Thanks Steve Withington)
Posted on Oct 1, 2013 at 4:35 AM
Google finds Ben again for my issue on CF9: filter="jquery-?.?.?.min.js|jquery-?.??.?.min.js" Works perfectly! Now I can use one wildcard filter with multiple instances to get me all older versions of jQuery and the newer two-digit versions ;-)... read more »
-
Ask Ben: Parsing Very Large XML Documents In ColdFusion
Posted on May 6, 2013 at 12:40 PM
Ben 2 the rescue! Grrrreat! This works like a charm on a 190MB large XML-file ;-) Thanx a million Ben for this insightful article and completely different take on parsing XML-documents. Now I just have to figure out how to extract the data into the database without doing the cumbersome VARIABLES.Nod... read more »
-
Learning ColdFusion 8: CFZip Part I - Zipping Files And Directories With CFZip
Posted on May 6, 2013 at 12:38 PM
Hi Ben, do you happen to know what the maximum number of files in a ZIP-archive and the maxiumum file-size for a ZIP-file created by CF8/CF9 are? Much appreciated!... read more »
-
New ColdFusion CFMailParam "Remove" Attribute Makes Deleting Attachments Simple
Posted on Jan 8, 2011 at 6:10 AM
Just checked this with the Railo changelog: http://classic.railo.ch/en/index.cfm?treeID=235 As of Railo 3.1.2.011 (dev) and Railo 3.2.001 (stable) this is supported. My ticket has been resolved and implemented ;-) Yeah! That sure feels good, kinda like having contributed a little to the developmen... read more »
-
New ColdFusion CFMailParam "Remove" Attribute Makes Deleting Attachments Simple
Posted on Jan 8, 2011 at 6:07 AM
I think Railo now also supports this as of version 3.2+.... read more »
-
A Book Apart: HTML5 For Web Designers By Jeremy Keith
Posted on Sep 21, 2010 at 7:36 AM
Hi Ben, Your code for autolinking links in comments works for most things but HTTPS-links (see above example). Could you fix this for me? Thanx!... read more »
-
A Book Apart: HTML5 For Web Designers By Jeremy Keith
Posted on Sep 21, 2010 at 7:34 AM
We've just implemented Kroc Camen's Video for Everybody ( http://camendesign.com/code/video_for_everybody ) in our latest webshop: click here (click on "live it >>>" to watch the video - then do View Source to show the HTML5 goodness). So simple and so easy, cannot wait to chuck out the ... read more »
-
Ask Ben: Processing Files With CFThread In ColdFusion
Posted on Apr 9, 2010 at 9:19 AM
@Ben, OK, I think I understand. It means that all application-scoped variables and all query-results need to be passed into the cfthread for it to be aware of them and be able to do something about it? Am I correct in stating that?... read more »
-
Ask Ben: Processing Files With CFThread In ColdFusion
Posted on Apr 9, 2010 at 9:09 AM
Ben, How does the thread "know" about the variable photosDirectory which you created outside of the CFTHREAD?... read more »
-
Ask Ben: Creating A PDF And Attaching It To An Email Using ColdFusion
Posted on Apr 9, 2010 at 5:50 AM
Ben, In the above example do you actually store the created PDF in memory or how do you go about it? I don't understand it quite, is it equal to storing it in the ram:// ? Or can you say that what Railo states in their documentation ( http://wiki.getrailo.org/wiki/3-1-Tags:CFMailParam ) equals wh... read more »
-
Ask Ben: Processing Files With CFThread In ColdFusion
Posted on Apr 9, 2010 at 5:48 AM
Ben, In the example you link to ( http://www.bennadel.com/blog/1700-Ask-Ben-Creating-A-PDF-And-Attaching-It-To-An-Email-Using-ColdFusion.htm ) do you actually store the created PDF in memory or how do you go about it? I don't understand it quite, is it equal to storing it in the ram:// ?... read more »
-
New ColdFusion CFMailParam "Remove" Attribute Makes Deleting Attachments Simple
Posted on Apr 8, 2010 at 9:53 AM
@Ben What are the technical specifics behind this? How does ACF do this? Or is this just part of the tag-magic which we never should ask anything about and just use it? ;-)... read more »
-
Ask Ben: Creating A PDF And Attaching It To An Email Using ColdFusion
Posted on Apr 8, 2010 at 9:50 AM
Hi Ben, Just read the Railo Wiki ( http://wiki.getrailo.org/wiki/3-1-Tags:CFMailParam ) and cannot seem to find a Remove or Delete attribute. So I guess I'm stuck with a Scheduled Task that runs once a night to clean up the temp folder or Railo. As you say in the other post: "This is why the new ... read more »
-
Ask Ben: Creating A PDF And Attaching It To An Email Using ColdFusion
Posted on Apr 2, 2010 at 2:51 PM
Hi Ben, Good article, I'm using it as a starting point for my endeavour into dynamically creating PDF's and attaching them to cfmails, all in a cfloop within a cfthread ;-) I'll be using the ram:// directly instead of a file from a filesystem (still not sure if Railo supports content-parameter of ... read more »
-
Ask Ben: Processing Files With CFThread In ColdFusion
Posted on Apr 2, 2010 at 3:45 AM
Hi Ben! How great that you posted this just today, as I was going to start on some new functionality for a webshop making use of cfthread. The outline is like so: User has ordered a couple of items from the webshop, payment processing has gone great and now we're headed into to the confirmation pa... read more »
-
Explicitly Ending A ColdFusion Session
Posted on Feb 16, 2010 at 8:10 PM
@Ben Nadel, would this work on Railo as well? Am currently doing lots of development with Railo Barry on Jetty and Tomcat, with Apache, MySql and Ubuntu.... read more »