Re: Decrypting MD5

2015-03-13 Thread Alan Rother
Just to clarify Rick, the MD5 is not strictly speaking an encryption algorithm. It's a hashing algorithm, hashes by their very nature are intended to be one way and destructive. There are only a finite number of possible results of the MD5 hash, which is how people have constructed tools to

Re: Avoiding a boat load of queries inserting multiple records - Better Way?

2014-10-09 Thread Alan Rother
-where-do-i-start-notes-from-the-field-014/ http://www.microsoft.com/en-us/download/details.aspx?id=36843 -- Alan Rother ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155

Re: Distributed Caching with TerraCotta

2013-09-17 Thread Alan Rother
Try contacting Rob Brooks-Bilson, he's the ehcache expert in CF http://rob.brooks-bilson.com/ (Also a super nice guy) =] On Tue, Sep 17, 2013 at 12:15 PM, Rick Root rick.r...@gmail.com wrote: Ping... anybody? On Sun, Sep 15, 2013 at 12:32 AM, Rick Root rick.r...@gmail.com wrote: Hi,

Re: Element undefined in SESSION scope

2013-08-06 Thread Alan Rother
Can we see some sample code? On Tue, Aug 6, 2013 at 12:43 PM, fun and learning funandlrnn...@gmail.comwrote: All - I am converting a form variable to a session variable.I enabled session management in application.cfm in cfapplication tag. The change works fine only on my system, but when

Re: test

2013-08-05 Thread Alan Rother
This one showed up =] On Sat, Aug 3, 2013 at 5:12 PM, Torrent Girl moniqueb...@gmail.com wrote: my last post didn't show ~| Order the Adobe Coldfusion Anthology now!

Re: Efflare and ImageCR

2013-07-31 Thread Alan Rother
ever... -- Alan Rother Manager, Phoenix Cold Fusion User Group, www.AZCFUG.org Twitter: @AlanRother ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion

Re: Efflare and ImageCR

2013-07-31 Thread Alan Rother
All I remember at this point was the guy I always spoke to was named Magnus and he used to follow this list - in fact I searched and found an email just like this I sent almost 3 years ago =] On Wed, Jul 31, 2013 at 3:20 PM, Eric Roberts ow...@threeravensconsulting.com wrote: It

Re: fedex tracking cfc

2013-07-11 Thread Alan Rother
Hey Tim, Here is my code for doing FedEx tracking - feel free to email me off list with questions. =] cffunction name=trackShipment access=public returntype=struct !--- Args --- cfargument name=shippingNumber type=string required=true !--- Logic --- cfscript var local = { XMLPacket = '',

Re: fedex tracking cfc

2013-07-11 Thread Alan Rother
cfdump var=#cfcatch#cfabort /cfcatch /cftry !--- Return --- cfreturn local.sReturn / /cffunction Alan Rother Manager, Phoenix Cold Fusion User Group, www.AZCFUG.org Twitter: @AlanRother ~| Order the Adobe Coldfusion Anthology now

Re: ColdFusion 11?

2013-06-19 Thread Alan Rother
There has been a push in Adobe to get a new release of CF out no less than every 18 months... Also I've seen in public events, Adobe has a plan for at least the next 3 or 4 versions of CF. On Wed, Jun 19, 2013 at 4:40 AM, Casey Dougall - Uber Website Solutions ca...@uberwebsitesolutions.com

Re: Can we use cfthread to speed up multi-query report processes?

2013-05-21 Thread Alan Rother
Also, keep in mind - and I'm speculating a bit here on your process - if you have just 6 individual queries that run in a single threaded, linear fashion and they take 6 minutes to execute, running them all concurrently may take just as long as it's sounds like your DB server may be taxed or

Re: Coldfusion 10 on Amazon?

2013-05-09 Thread Alan Rother
Which instances are you talking about? Multiple AWS EC2 instances or multiple instances of CF running on 1 AWS EC2 instance? If as Dave mentioned you mean multiple CF instances on one EC2, then I'm not entirely sure, we are going to be testing that today. As for Multiple EC2 instances, Yes, we

Re: CFFTP Date

2012-09-20 Thread Alan Rother
Have you checked the time and date on your CF server to make sure it's correct first? Drop a Now() in your code as a comparison -- Alan Rother Manager, Phoenix Cold Fusion User Group, www.AZCFUG.org Twitter: @AlanRother

Re: Delimiting a pilcrow

2012-09-06 Thread Alan Rother
Have you tried Chr(244) as the delimiter? On Thu, Sep 6, 2012 at 1:36 PM, Roger Anthony d...@anthony2.net wrote: I've got a MySQL database that has a rather long string in it (HL7 to be precise) that has a pilcrow ( ś ) as the last character of each row. I'm trying to do a ListToArray and

Re: Query with no results is not defined

2012-08-22 Thread Alan Rother
Try explicitly scoping the variable As in variables.PastDueInvoices - first its just good form, second it does make the app run faster, as when you don't provide the explicit scope, CF has to check through a number of scopes for it. It could also explain the issue - if for example anywhere else

Re: CF Developer Edition on a NAS Drive

2012-08-21 Thread Alan Rother
and good products at decent prices -- Alan Rother Manager, Phoenix Cold Fusion User Group, www.AZCFUG.org Twitter: @AlanRother ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp

Re: Port 51011

2012-08-14 Thread Alan Rother
- We really thought we needed to added a couple more machines, he did his work, now I think we can more than triple our load before we add any more hardware... (There are others who do this work as well - CF WebTools for example - I'm just a big fan of Mike) =] -- Alan Rother Manager, Phoenix

Re: I guess it was bound to happen

2012-08-10 Thread Alan Rother
+1 what John said, I was just going to send the same link =] On Fri, Aug 10, 2012 at 11:07 AM, John M Bliss bliss.j...@gmail.com wrote: The only way to reliably do this is to make it so the files' directory is not accessible via HTTP. The two most common ways to do this are: - put

Re: simple question...cfmodule

2012-07-24 Thread Alan Rother
Hey Eric, You shouldnt need to restart - can you show us the code you're using? -- Alan Rother Manager, Phoenix Cold Fusion User Group, www.AZCFUG.org Twitter: @AlanRother ~| Order the Adobe Coldfusion Anthology now! http

Re: simple question...cfmodule

2012-07-24 Thread Alan Rother
attributes and they have the expected values. Eric Roberts Owner/Developer Three Ravens Consulting ow...@threeravensconsulting.com http://www.threeravensconsulting.com tel: 630-881-1515 -Original Message- From: Alan Rother [mailto:alan.rot...@gmail.com] Sent: Tuesday, July 24

Re: CFC Oddity

2012-07-16 Thread Alan Rother
Hmm... ok, I'll run some test against several servers and CF versions and see if I can isolate it. It's quite maddening... -- Alan Rother Manager, Phoenix Cold Fusion User Group, www.AZCFUG.org Twitter: @AlanRother ~| Order

Re: CFC Oddity

2012-07-16 Thread Alan Rother
that if this is an issue, it gets logged/sent to the right people/etc. On Mon, Jul 16, 2012 at 2:17 PM, Alan Rother alan.rot...@gmail.com wrote: Hmm... ok, I'll run some test against several servers and CF versions and see if I can isolate it. It's quite maddening... -- Alan Rother Manager

CFC Oddity

2012-07-13 Thread Alan Rother
that? -- Alan Rother Manager, Phoenix Cold Fusion User Group, www.AZCFUG.org Twitter: @AlanRother ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion

Re: CFC Oddity

2012-07-13 Thread Alan Rother
same request when I do have foo in the cfreturn ConnectionKeep-AliveContent-Typetext/html; charset=UTF-8DateFri, 13 Jul 2012 18:56:57 GMTKeep-Alivetimeout=5, max=100ServerServer/4Set-CookieALAN=Awesome;expires=Sun, 06-Jul-2042 18:56:57 GMT;path=/Transfer-Encodingchunked Thoughts? -- Alan Rother

Re: Code Re-Factoring

2012-07-09 Thread Alan Rother
IS Startheader content here/cfif cfif THISTAG.ExecutionMode IS Endfooter content here/cfif Then the values from the opening cfmodule tag will be available to all of your closing footer tags as well. Feel free to ping me off list with any specific questions alan dot rother at gmail dot com -- Alan

Re: cfscript zip example?

2012-06-25 Thread Alan Rother
This topic has devolved a bit - let's see if we can actually help Paul Paul, are you just looking for an example of creating a zip file from let's say, a specific directory? I'd be happy to send you a couple of working examples if you tell just what you need it to do. =] -- Alan Rother

Re: Grabbing PHP cookies.

2012-06-21 Thread Alan Rother
Looking at your dump, those are pretty much all ColdFusion created cookies. 1. Are you sure that the php app is setting cookies? 2. What data from the cookies are you hoping to use? 3. Is the php app on the same domain as your CF app? -- Alan Rother Manager, Phoenix Cold Fusion User Group

Re: Ralio Diff?

2012-03-05 Thread Alan Rother
Cameron, We doing an over/under on the number of response to this thread? I'll take 46 =] -- Alan Rother Manager, Phoenix Cold Fusion User Group, www.AZCFUG.org Twitter: @AlanRother ~| Order the Adobe Coldfusion Anthology

Re: Opinion: Abuse of session variables

2012-01-31 Thread Alan Rother
to be, I'd move them to a temp database and just carry a reference to the vals in the DB in their session. =] -- Alan Rother Manager, Phoenix Cold Fusion User Group, www.AZCFUG.org Twitter: @AlanRother ~| Order the Adobe

Re: Sending an email by fax solution

2012-01-25 Thread Alan Rother
You want to send an email from CF and have it arrive on a FAX machine, correct? I do this for several clients using eFax.com It's not free, but it's fairly cheap, they have a small month fee plus per fax page pricing based on where you send the FAX to. http://www.efax.com/products/internet-fax

Re: Invisible Scheduled Task

2012-01-18 Thread Alan Rother
If that is the case, then I'd look outward, it could be another CF instance hitting it - Check you log files and see what IP address is hitting that file. =] -- Alan Rother Manager, Phoenix Cold Fusion User Group, www.AZCFUG.org Twitter: @AlanRother

Re: IP analysis by country

2012-01-13 Thread Alan Rother
Hey Nick, I agree with Nathan (usually do anyhow) Keep in mind these IP databases are only so accurate, IP blocks can move around quite a bit, so last month one segment might have been one part of Kansas, then the ISP moved them to some part of Kentucky this month. That kind of DB is fairly

Re: Jrun issue?

2011-11-18 Thread Alan Rother
should tell you if the VPN is up or not. =] -- Alan Rother Manager, Phoenix Cold Fusion User Group, www.AZCFUG.org Twitter: @AlanRother ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology

Re: Question about SQL Encryption VS CF Encryption

2011-10-20 Thread Alan Rother
As long as they both use the same Hash algorithm http://livedocs.adobe.com/coldfusion/8/functions_h-im_01.html You'll need to verify what hash your SQL system is using, Here are the docs for MS SQL Server http://msdn.microsoft.com/en-us/library/ms174415.aspx On Thu, Oct 20, 2011 at 9:29

Re: SHA-1 digest in CF7

2011-10-20 Thread Alan Rother
SHA-1 is in the algorithm options hash in CF 7 http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentationfile=0503.htm SHA: Generates a 28-character string using the Secure Hash Standard SHA-1 algorithm specified by Nation

Re: cgi.HTTP_USER_AGENT

2011-10-19 Thread Alan Rother
Comes up the same on each for me. IE9.0.8112.16421 - Windows 7 Pro 64 bit http://www.austin-williams.com/test_useragent.cfm Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; MALC) http://www.vaughn.edu/test_useragent.cfm Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1;

Re: cgi.HTTP_USER_AGENT

2011-10-19 Thread Alan Rother
It's not IIS or CF Your browser is what is sending that data - it's part of the HTTP request packet the browser sends when it requests a file. On Wed, Oct 19, 2011 at 11:16 AM, Robert Harrison rob...@austin-williams.com wrote: Even stranger now...

Re: I need some CF advocacy resources

2011-10-18 Thread Alan Rother
Argument number 1, never take advice on plumbing from a decorator. Nice Will That's going on my quote wall. =] -- Alan Rother Manager, Phoenix Cold Fusion User Group, www.AZCFUG.org Twitter: @AlanRother ~| Order the Adobe

Re: Sorting Multidimensional Array that contain dates

2011-10-17 Thread Alan Rother
http://www.cflib.org/udf/ArraySort2D =] On Mon, Oct 17, 2011 at 2:45 PM, Rick T rtuinenb...@gmail.com wrote: I got this array CFSET temp = ArrayNew(1) CFSET temp[1][1] = 5/1/2011 CFSET temp[1][2] = Sally CFSET temp[2][1] = 3/4/2011 CFSET temp[2][2] = John How do I sort this array so

Re: MAX and CF

2011-10-04 Thread Alan Rother
DISCLAIMER - I DO NOT WORK FOR ADOBE - I AM JUST GUESSING LIKE EVERYONE ELSE Odds are we'll see some sneak peeks tonight at the event. Based on the development cycle of CF, it's not due

Re: multiple email addresses in cfmail FROM attribute

2011-09-29 Thread Alan Rother
be easier for us to help with. =\ -- Alan Rother Manager, Phoenix Cold Fusion User Group, www.AZCFUG.org Twitter: @AlanRother ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155

Re: Java Files in CF

2011-09-29 Thread Alan Rother
You can also load the JARS on demand using Mark Mandel's JavaLoader project http://javaloader.riaforge.org/ -- Alan Rother Manager, Phoenix Cold Fusion User Group, www.AZCFUG.org Twitter: @AlanRother ~| Order the Adobe

Re: multiple email addresses in cfmail FROM attribute

2011-09-29 Thread Alan Rother
It's not elegant (and it REALLY should save to a database as well..), but I knocked it out in about 3 mins - it'll do the work you need it to - just change some of the things like TO and FROM and you're done cfif StructKeyExists(form, fieldnames cfmail to=some...@some.edu from=norep...@some.edu

Re: Coldfusion Hosting

2011-09-29 Thread Alan Rother
. Not the cheapest mind you - but good -- Alan Rother Manager, Phoenix Cold Fusion User Group, www.AZCFUG.org Twitter: @AlanRother ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp

Re: Generating Bar Codes

2011-09-28 Thread Alan Rother
What kind of bar codes? Simple 3 of 9 ba rcodes is easy using CFIMAGE - It's just a FONT you need to put on the server. 3 of 9 Font - http://www.squaregear.net/fonts/free3of9.shtml Make an image using CFIMAGE with the text being the number of the bar code and use that font. 3D bar codes is a

Re: Does coldfusion see 2 urls as different applications or sessions?

2011-09-26 Thread Alan Rother
session cookies, so if you jump from domainA.com to domainB.com your browser won't know you are on the same site and will not send your session cookies from A to B. =] -- Alan Rother Manager, Phoenix Cold Fusion User Group, www.AZCFUG.org Twitter: @AlanRother

Re: cfquickdocs.com down?

2011-09-26 Thread Alan Rother
If you guys ever get hold of him, I'd be happy to act as a mirror. It would be nice to have a few of those out there... =] On Mon, Sep 26, 2011 at 3:03 PM, Josh Nathanson joshnathan...@gmail.comwrote: Through some digging I was able to connect it to Jacob Munson, who I believe is on this

Re: SOT: Workstation recommendations

2011-09-07 Thread Alan Rother
+1 for Lenovo +0.5 for Dell, I've had pretty good luck with Dell =] -- Alan Rother Manager, Phoenix Cold Fusion User Group, www.AZCFUG.org Twitter: @AlanRother ~| Order the Adobe Coldfusion Anthology now! http

Re: BUG in CF9 Encrypt and Decrypt?

2011-08-31 Thread Alan Rother
It's the TRIM functions, remove them This works cfscript request.testval = 6546; request.inval = encrypt(request.testval,sn); request.outval = decrypt(request.inval,sn); /cfscript On Wed, Aug 31, 2011 at 11:31 AM, Michael Grant mgr...@modus.bz wrote: Who's arguing? And I'd disagree that

Re: BUG in CF9 Encrypt and Decrypt?

2011-08-31 Thread Alan Rother
It's the TRIM functions, remove them This works cfset testval = 6546 cfset inval = encrypt(testval,sn) cfset outval = decrypt(inval,sn) Original cfset testval=6546 cfset inval=#encrypt(trim(testval),sn)# cfset outval=#decrypt(trim(inval),sn)# -- Alan Rother Manager, Phoenix Cold Fusion User

Re: Linking to Uploaded Documents

2011-08-29 Thread Alan Rother
It could be a bunch of things, Offhand though, it's possible that your server is refusing to serve some of the files. In IIS, there is a specific list of Files it is allowed to serve out, this is part of it's security so people can't request protected files. In your case, it's possible that

Re: google map suddenly not showing

2011-08-28 Thread Alan Rother
I dont suppose you could share the link with us. Odds are it's a JS error, hard to tell without seeing the page On Sun, Aug 28, 2011 at 9:35 AM, wrote: The domain name hasn't changed so I guess the API key is still valid. Not so sure. For unknown reason, I had to get a new API key from

Re: Automated File Deployment/Replication

2011-07-05 Thread Alan Rother
Hey Brian, I'm doing something... similar How often do you need it to sync up? Constantly? Only when an update occurs (a manual process)? Scheduled intervals? If you need the boxes to stay in perfect sync at all times and automated process or end users (people using the site/app) add or change

Re: Win 2008 32/CF 9 hardening after the fact

2011-06-30 Thread Alan Rother
One important thing is to make sure it's locked down behind a proper firewall of course. That will go a long way towards making it secure. Only open ports like 80 and 443 Of course that's just one important step. Oh, also make sure that the CF Admin is not publicly available =] On Thu, Jun

Re: COM error

2011-06-30 Thread Alan Rother
When was the last time you fully re-booted the server? I've seen this type of error before and a re-boot sometimes clears it. FWIW - I'm not sure I'm right about this one, so take it with a grain of salt... =\ On Thu, Jun 30, 2011 at 10:20 AM, daniel kessler dani...@umd.edu wrote: Oh, btw

Re: Handling Multiple Requests

2011-06-28 Thread Alan Rother
Just as an argument, I wouldn't focus on stopping the user from clicking a link over and over, in fact you really can't they can just keep hitting re-load... I would focus on determining why the site is slow to load. Fix that problem and you don't have to worry about repetitive clicking. Of

Re: Problem with CF Execute

2011-06-24 Thread Alan Rother
I had a similar issue with cfexecute just yesterday calling an ANT script. cfexecute would, execute, no errors and a dump of the variable was blank. I rebooted the server and the problem just went away... Which is troubling... but manageable for my issue. Can you try to reproduce this on

Re: Problem with CF Execute

2011-06-24 Thread Alan Rother
Ah Ok, that was part of my problem. I had CF running on one account, but that account didn't have access to ANT. You may need a higher permission user account other than the system account, in the services admin panel on Windows you can tell CF what user account to run as. At least for testing

Re: Awful quiet today...did I forget a holiday?

2011-06-03 Thread Alan Rother
Yes, actually it is In the US, today is National Donut day Seriously... http://en.wikipedia.org/wiki/National_Doughnut_Day http://yfrog.com/h8c8roxj =] On Fri, Jun 3, 2011 at 10:44 AM, Carl Von Stetten vonner.li...@vonner.netwrote: Just checking, since I've seen no messages today... =-O

Re: CF 301 Redirect on an HTML page

2011-05-05 Thread Alan Rother
? =] -- Alan Rother Manager, Phoenix Cold Fusion User Group, www.AZCFUG.org Twitter: @AlanRother ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http

Re: Displaying an Excel file in a CF page, period.

2011-05-02 Thread Alan Rother
As with soo many things on this forum... the answer is usually - Ben Nadel Ben wrote a wrapper for a java package that interfaces with Excel, called POI http://www.bennadel.com/projects/poi-utility.htm http://www.bennadel.com/projects/poi-utility.htmIt's pretty badass, point it at an Excel

Re: OT question - is this real or phishing?

2011-04-20 Thread Alan Rother
It screams scam... Especially considering China is hardly known for caring about intellectual property rights. It couldn't hurt to contact them back and say No, I don't know them. And then see what happens. My guess is this email was step one in a scam to solicit money from you. =] -- Alan

Re: Testing

2011-04-05 Thread Alan Rother
However in THIS case, it does seem to be true On Tue, Apr 5, 2011 at 1:05 PM, Michael Grant mgr...@modus.bz wrote: Appearances can be deceiving though. On Tue, Apr 5, 2011 at 3:59 PM, dB dbfu...@gmail.com wrote: It *appears* as though I've subscribed...

Re: Online Test

2011-03-03 Thread Alan Rother
Given that you plan to build several, it would be easiest to make one generic codebase that can query the Database for all questions belonging to a certain test. Then your one codebase can server as all tests =] On Thu, Mar 3, 2011 at 2:00 PM, Jacob ja...@excaliburfilms.com wrote: I would

Re: Calculating Percentage

2011-03-01 Thread Alan Rother
What Phillip said... But keep in mind, there are no dumb questions, some are just REALLY EASY. People here are always happy to help, even with the easy questions. =] On Tue, Mar 1, 2011 at 1:41 PM, Phillip Vector vec...@mostdeadlygame.comwrote: cfset Percentage = Correct/Total * 100 On

Re: cfheader and foreign characters

2011-02-22 Thread Alan Rother
Do this cfprocessingdirective pageencoding=utf-8 cfset xOutput = République cfcontent type=text/html; utf-8 cfheader charset=utf-8 name=content-disposition value=attachment; filename=test.txt cfoutput#xOutput#/cfoutput On Tue, Feb 22, 2011 at 3:00 PM, Leigh cfsearch...@yahoo.com wrote:

Re: cfheader and foreign characters

2011-02-22 Thread Alan Rother
That odd, it totally worked for me... http://alan.rotherfamily.net/demos/utf8/ cfprocessingdirective pageencoding=utf-8 cfset xOutput = République cfcontent type=text/plain; utf-8 cfheader charset=utf-8 name=content-disposition value=attachment; filename=test.txt cfoutput#xOutput#/cfoutput

Re: cfheader and foreign characters

2011-02-22 Thread Alan Rother
What kind of computer (OS) are you on and what browser are you using? I just want to Apples to Apples this... This should be really simple... Oh and what program is the browser opening the text file in. Leigh (as always) is right, this should just work On Tue, Feb 22, 2011 at 5:07 PM, Richard

Re: Big XML files processing Really s-l-o-w. Solution?

2011-02-14 Thread Alan Rother
When in doubt, ask Ben Nadel(or check his blog)... Words to live by I had the same issue, huge variable XML file, lots of variations, had a hell of a time making it work in SQL Server due to the complexity Used this, works amazingly well, all things considered, executes very quickly

Re: cfx_pwtextcrypt CF9

2011-02-10 Thread Alan Rother
Yeah, It's the CFX issue. Basically most CFX objects are C++ and were compiled for 32bit or earlier systems and are not compatible with 64bit systems. We're suffering from a similar issue where we can't get one of our CFX objects upgraded to a 64bit flavor and it's keeping us trapped on 32bit

Re: Application.cfc cfinclude

2011-01-27 Thread Alan Rother
and into the onApplicationStart method, dod you rename the Application scope to force it to reload that method? =] -- Alan Rother Manager, Phoenix Cold Fusion User Group, www.AZCFUG.org Twitter: @AlanRother ~| Order the Adobe Coldfusion Anthology

Re: Application.cfc cfinclude

2011-01-27 Thread Alan Rother
the method to fire? Do you really need to rename the app scope? On Thu, Jan 27, 2011 at 6:03 PM, Alan Rother alan.rot...@gmail.com wrote: Hey Doug, 1. How many lines of code are in the include? I'm just wondering because it might be easiest to simply move your code into the Application.CFC

Re: Return boolean from a CFC query

2011-01-26 Thread Alan Rother
or the right, it's just running a comparison against the statement. It also has no idea that it was a session variable, by the time it gets to the SQL Server, ColdFusion has parsed it out into a SQL string, and that's all that gets passed into the database. -- Alan Rother Manager, Phoenix Cold Fusion User

Re: Extracting a date from a string

2011-01-26 Thread Alan Rother
How consistent is the first part of the string? *Department Summary by Employee Is it ALWAYS that exact string? On Wed, Jan 26, 2011 at 11:43 AM, Kelly webd...@gmail.com wrote: which date? will both dates always be identical? Or will it sometimes be a range? Would you need to extract

Re: Return boolean from a CFC query

2011-01-26 Thread Alan Rother
it in a certain way. Mike On Jan 26, 2011, at 1:23 PM, Alan Rother wrote: MSSQL doesn't care if the field is on the left or the right, it's just running a comparison against the statement. ~| Order the Adobe Coldfusion

Re: CF_Wheels Model_Glue

2011-01-26 Thread Alan Rother
Well, To be honest you're coming at it a little backwards. Which one you would use depends on what you're planning on building and what you hope to get out of a framework. This is like asking if you should buy a truck or a boat. The answer is always going to be, it depends. So start with What

Re: RGBA Alpha channel

2011-01-10 Thread Alan Rother
I've had the same issue. I use ImageFlare...The solution I've been using is a TOTAL HACK, but it works. Create a blank transparent PNG file in Photoshop, then use that as the basis for your new image. cfx_imageflare source=\ b = Bitmap( '#expandpath('Trans.png')#' ) f = Font( 'Coliseum

Re: RGBA Alpha channel

2011-01-10 Thread Alan Rother
I am waiting for a reply from them, Yeah...Good luck with that... I've been waiting several years to hear back from them on several issues... =\ On Mon, Jan 10, 2011 at 2:03 PM, Leigh cfsearch...@yahoo.com wrote: Thanks to the rest of you as well, but I am asking for a way to create a

Re: cfloop working but not how I want it too:

2010-12-29 Thread Alan Rother
it. =] -- Alan Rother Manager, Phoenix Cold Fusion User Group, www.AZCFUG.org Twitter: @AlanRother ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion

Re: cfloop working but not how I want it too:

2010-12-29 Thread Alan Rother
you're trying to output, rather than parsing through the text to display it. =] -- Alan Rother Manager, Phoenix Cold Fusion User Group, www.AZCFUG.org Twitter: @AlanRother ~| Order the Adobe Coldfusion Anthology

Re: OT - MySQL

2010-12-04 Thread Alan Rother
:09 PM, Alan Rother wrote: Hey Everyone, I'm helping some folks performance tune their Flex / CF Based app. I'm pretty sure the bottleneck is happening in their DB server, but I'd like to be able to offer some analytics beyond my best guess. They're using CF8 Ent and MySQL 5

OT - MySQL

2010-12-03 Thread Alan Rother
enough info about how the MySQL is performing. Can anyone recommend a good graphical analysis tool for MySQL similar to the tools that come with MSSQL like SQL Server Profiler, essentially something that can tell me how busy the DB is at any given moment. =] -- Alan Rother Manager, Phoenix Cold

Re: CF QR Code Generator

2010-11-17 Thread Alan Rother
cfSearching has a great example, requires some JAva and Java Loader http://cfsearching.blogspot.com/2010/04/coldfusion-zxing-read-write-qrcode.html =] On Wed, Nov 17, 2010 at 11:29 AM, Robert Harrison rob...@austin-williams.com wrote: Just curious, has anyone seen any CFCs or CF code

Re: CF Blog software

2010-11-09 Thread Alan Rother
Hey Dave, CFCONTENT and CreateObject both have serious security implications. I know all about CreateObject's security risks from a hosting perspective, but I've never heard of an issue with CFCONTENT (I'm not doubting you, I'm just curious what the issues are.) =] On Tue, Nov 9, 2010 at 11:33

Re: CF Blog software

2010-11-09 Thread Alan Rother
Ah, that does make sense. Thanks Dave! =] On Tue, Nov 9, 2010 at 11:56 AM, Dave Watts dwa...@figleaf.com wrote: I know all about CreateObject's security risks from a hosting perspective, but I've never heard of an issue with CFCONTENT (I'm not doubting you, I'm just curious what the

Re: OT Windows Command line HTTP request

2010-10-28 Thread Alan Rother
I have the code for doing it in VB Script... Can you use DOS to call a VB Script? URL = http://www.someaddress.com; Set WshShell = WScript.CreateObject(WScript.Shell) Set http = CreateObject(Microsoft.XmlHttp) http.open GET, URL, FALSE http.send set WshShell = nothing set http = nothing

Re: Query Var Disappears

2010-10-26 Thread Alan Rother
Bryan and Matt, please tell me you use cfqueryparam on your SELECT statements where you accept user provided information such as FORM or URL variables... right? If you don't you are exposing yourselves to SQL Injection attacks, it's not just on INSERT and UPDATE statements that you are

Re: Query Var Disappears

2010-10-26 Thread Alan Rother
Ok.. My Bad I did not get that at all from the post. That is SUPER weird. I have also never seen nor done that before... But makes sense in a SELECT INTO @ Alan- Perhaps I misunderstood Bryan's question/comment, but you (and therefore probably others) definitely misunderstood mine. This is

Re: Memory Upgrade - Revisited

2010-10-21 Thread Alan Rother
We have 32-bit hardware. Bummer, that means you will be limited to 4gigs total on the box and only about 1.4gigs allocated to ColdFusion =\ On Thu, Oct 21, 2010 at 9:17 AM, Steve LaBadie slaba...@po-box.esu.eduwrote: We have 32-bit hardware. Steve LaBadie, Web Manager East Stroudsburg

Re: Question on form variables

2010-09-07 Thread Alan Rother
Any chance you could just share your code with us so we can stop guessing about it? =] On Tue, Sep 7, 2010 at 12:28 PM, Matthew a.matthe...@yahoo.com wrote: My guess is that you've not set the method attribute in your form to post, the default is get if not set. Sent from my iPhone On 7

Re: Image manipulation code: unit testing approach

2010-08-18 Thread Alan Rother
You should have a set of baseline images that you know the source of. Things you made in Photoshop using your digital camera, that you can validate the color space and dimensions of. I would also collect random images from around the web from various sources such as a Google Image search,

Re: Move CF website to non CF host

2010-08-13 Thread Alan Rother
all your files will kill the archives any of the Search Engines have on your site...) Just an alternative =] -- Alan Rother Manager, Phoenix Cold Fusion User Group, www.AZCFUG.org Twitter: @AlanRother ~| Order the Adobe

Re: Upgrade CF5 to CF8 and undefined session

2010-08-09 Thread Alan Rother
One thing to look at is in the CF Administrator, are SESSION variables enabled? admin server settings memory variables Enable Session Variables YES That's not the most likely problem, but it is possible. I think your issue may be related to the frames.It;s possible that in each frame you

Re: SOT: Best CF development laptop

2010-08-03 Thread Alan Rother
I'd lean towards the Sony if the price is comparable... but I would wipe the hard drive and re-install Windows7 clean from an original media disk, not from the Sony disks... Too much bloat ware. As a 3rd alternate I'd look at Lenovo (Formally IBM) I've been really happy with my ThinkPad, but it

Re: Turning off client variables

2010-06-30 Thread Alan Rother
Nope, you should be fine. =] On Wed, Jun 30, 2010 at 11:20 AM, Robert Harrison rob...@austin-williams.com wrote: AFAIK I am not using any client variables on a site (i.e., any variables in scope client.myvar). I am using session variables (scope session.myvar). I'd like to turn off

Re: Contact for FullAsAGoog?

2010-06-28 Thread Alan Rother
Geoff Bowers http://twitter.com/modius =] On Mon, Jun 28, 2010 at 2:57 PM, Andy Matthews li...@commadelimited.comwrote: He's a mystery, wrapped in an enigma. -Original Message- From: Jeff Chastain [mailto:li...@admentus.com] Sent: Monday, June 28, 2010 4:53 PM To: cf-talk

Re: In a pickle, need some help...

2010-06-25 Thread Alan Rother
Can you share a link so we can look at it as well? =] On Fri, Jun 25, 2010 at 10:56 AM, Che Vilnonis ch...@asitv.com wrote: I am in the process of moving two sites that I have hosted for over 10 years, from my server to my clients server. At the moment, only I can see how the sites that

Re: CF9 Developer Edition - IP Addresses

2010-06-16 Thread Alan Rother
Well... The Developer License in CF9 is still exactly the same, you can freely download and use the developer edition just as you do today, with the IP restrictions... IF you have purchased CF9 for your production systems, you may also install a copy on your DEV / Staging servers at no

Re: CF9 Developer Edition - IP Addresses

2010-06-16 Thread Alan Rother
that is enterprise only, no? Mark On Thu, Jun 17, 2010 at 4:31 AM, Alan Rother alan.rot...@gmail.com wrote: IF you have purchased CF9 for your production systems, you may also install a copy on your DEV / Staging servers at no additional cost and without violating the license

Re: transfering data from one part of same page to another?

2010-05-29 Thread Alan Rother
Can you post your code? What you are describing doesn't make sense. There really isn't any trick to accessing data like that in ColdFusion. =] On Sat, May 29, 2010 at 9:48 AM, Phillip Perry philjpe...@gmail.com wrote: Thanks for the help on the form problem I had, but now I have a new issue

  1   2   3   4   5   6   >