 | 23 Mar 01:04 I just installed the hotfix for cfdocument on my Coldfusion 8 server and to my surprise the following does not work anymore, could anybody help?? <cfdocumentitem type="footer"> <cfif cfdocument.currentpagenumber eq 1> Do this only on the first page </cfif></cfdocumentitem> I already reported this as a bug but maybe i'm doing it wrong?? This worked pre hotfix.... 13 Dec 22:29 After trying several times to resize and crop the image to fit nicely into a square I stumbled upon the function ImageScaleToFit() and that was exactly what I needed for my problem. I want to fit an image into a square thumbnail, but with the imageCrop or Resize you can't get the image to fit. :-(What I did is the following... after I found the ImageScaleToFit function I also found the ImagePaste function which will paste 1 image into the other. 3 Sep 20:58 Just a quick question: How can I create a square image (100x100) from an image file that is for example 800x600. What I want is a cutout of 600x600 that will chop the left and right side of the image and then resizes it to 100x100I can't figure out how to do this with the new ColdFusion 8 functions. I do have another solution with a third party component but I was wondering if something like that could be done with the CFIMAGE tag or functions.Thanks in advance!!UPDATE:I actually figured a way.. 8 Aug 00:06 First of all, let me introduce myself since I hadn't done so in my first post. Hi, I'm Jax, a friend of Tjarko, and I have been a Coldfusion user for the last decade or so. I am also a fairly experienced Java programmer.I am currently working on a project that involves a bit of data harvesting from various sources. One of the data sources is an Excel file hosted on ( or actually: generated by) another webserver. 2 Aug 17:31 Hi there, I have stumbled upon a bug or not sure what it is but it kept me busy for a while and i'm just wondering why this would happen.I have the following query SELECT pset.pst_urlsave ,pset.pst_name ,photo.pho_idFROM photo INNER JOIN photoset pset ON pset.pst_id = photo.pho_pst_id and the pho_id is a numeric value (was bigint, but that didn't work) and now the strange thing happened. 31 Jul 16:13 Yes!! great news on Forta's blog. And about a minute ago I ordered my license because I can't wait to get my projects running in production with this new version. 3 Jul 21:40 You probably encountered this lot's of times, the need for a simple next / prev function to page thru your recordset. If not... uhm.. yeah.. ok.. continue. What I created is a simple function that will calculate the x pages to view and will give you back some variables that you can use to create your own navigation set. First let me show you the function. <! 2 Jul 20:31 See if a certain date is in between two other given dates. Based on the excellent function on cflib.org from Bill King. I just turned it into a cffunction actually, to be used in my functions component... call me lazy. 22 Jun 05:04 I have been using the s3 REST wrapper by Joe Danziger. I changed all the customtag calls from the hmac.cfm page to the underlying customtags. Since MX the first 3 ways of encrypting can be done with the HASH function. 20 Jun 21:33 If you do not specify the scope of the variable, according to the docs, CF will search for it in the following order (this is called the order of precedence): Local variables cfquery CGI File URL Form Cookie Client Other scopes always need to be scoped: Server Application Session Request Attributes Error | |  |