Re: CF builder installer?

2014-11-24 Thread Carl Von Stetten
Doug, I've reached out to Gavin to give him a copy of the installer (I have the Update 1 version of the Windows installer). It's 32-bit only (there was no 64-bit installer for CFBuilder 2). I'll send you a direct email with a ling to my Dropbox folder where I have a copy. -Carl V. On 11

Re: CF builder installer?

2014-11-21 Thread Carl Von Stetten
http://www.gpickin.com/cfrepo/ -Carl V. On 11/21/2014 2:28 PM, Doug R wrote: Hi all - I just had my laptop reimaged and one of the items I am missing is the CFbuilder2 installer package. I have my serial... just need the installer. If anyone has it, I would appreciate it if I could get

Re: HMAC Algorithms and Encoding?

2014-09-09 Thread Carl Von Stetten
Does SHA256 require the Java Cryptography Extension be installed, or is that just SHA512 and above? -Carl V. On 9/9/2014 11:36 AM, Sandra Clark wrote: Thanks Pete! -Original Message- From: Pete Freitag [mailto:p...@foundeo.com] Sent: Tuesday, September 9, 2014 2:11 PM To: cf-talk

Re: expire application variable

2014-08-07 Thread Carl Von Stetten
Are you on ColdFusion 9+? Why not use the built-in cache functionality (cachePut(), cacheGet(), etc.)? If you are on ColdFusion 10+, you can even put related objects into a cache region and manually flush that region using CacheRemoveAll( region ) . -Carl V. On 8/7/2014 1:06 PM, John M

Re: Calling a Custom Tag Twice Duplicates Query Results?

2014-05-30 Thread Carl Von Stetten
Yup, MX was attached to the version numbers of both ColdFusion releases that Macromedia was responsible for. Adobe dropped the MX when they released ColdFusion 8. On 5/30/2014 8:19 AM, Scott Brady wrote: On Wed, May 28, 2014 at 1:57 PM, Phillip Vector vec...@mostdeadlygame.com wrote: Also,

Re: CF Builder 3 frustrates!!!

2014-05-08 Thread Carl Von Stetten
(probably in a similar place). At least that worked with the Thunder Beta version I have. -Carl V. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion

Re: Unable to add text to HTML HEAD tag

2014-05-07 Thread Carl Von Stetten
in implementing current versions of JS libraries yourself and reaping the benefits of the cumulative feature improvements/bug fixes of those libraries. Just my $0.01 (inflation sucks, don't it) -Carl V. On 5/7/2014 8:35 AM, John Pullam wrote: So you suggest going back and rewriting a 50,000

Re: DW versions that supported CF

2014-04-30 Thread Carl Von Stetten
Eclipse plugins that are useful to you (I like the MXUnit and EGit plugins for Unit Testing and Git interactions, respectively). -Carl V. On 4/30/2014 11:16 AM, Bruce Sorge wrote: On my machine using CC, I just told it to open .cfm files with dreamweaver by default, then it works. I even have tag

Re: DW versions that supported CF

2014-04-30 Thread Carl Von Stetten
Bruce, Good stuff. And in case you didn't know, you can use the CFBuilder 3 trial version until it expires, then it reverts to CFBuilder Express. So you can continue to use most of it's functionality until you are ready to make the purchase. -Carl V. On 4/30/2014 12:13 PM, Bruce Sorge

Re: CFB3

2014-04-29 Thread Carl Von Stetten
to do the Eclipse + CFBuilder plugin thing. They also incorporated Eclipse 4.3.1 (Kepler SR1) instead of the old Eclipse 3.7.2 (Indigo SR2). -Carl V. On 4/29/2014 10:42 AM, John M Bliss wrote: Hi! Working on justifying upgrade from CFB2 to CFB3 to my boss. Three new features listed here do

Re: ColdFusion 10 does not allow Access datasource

2014-04-28 Thread Carl Von Stetten
to that 32-bit ODBC data source from within CF Administrator. HTH, -Carl V. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http

Re: ColdFusion 10 does not allow Access datasource

2014-04-28 Thread Carl Von Stetten
running? They both may need to be reinstalled. -Carl V. On 4/28/2014 12:58 PM, John Pullam wrote: I went into Services and the ODBC service is defined and it set up as automatic. When I started it, it said it started and then stopped. It indicated that some services only start when

Re: CF9 java applet error. any solutions?

2014-04-01 Thread Carl Von Stetten
If you've upgraded to the Java 7 JVM (1.7.x) on your desktop, the error may be due to a new security feature. Take a look at this thread on the Adobe forums: http://forums.adobe.com/thread/1433308?tstart=0 -Carl V. On 4/1/2014 12:18 PM, Dave Watts wrote: Russ is this a new thing? I have

Re: Patch/update 9.0 help

2014-03-24 Thread Carl Von Stetten
Did you do a backup of your computer before the upgrade so you can revert? If so, take a look at the Unofficial Updater 2 http://www.uu-2.info/ to make the patching process a bit easier. -Carl V. On 3/21/2014 4:49 PM, Pete Ruckelshaus wrote: Awesome. Ran the 9.01 updater and the CF service

Re: CFC Not Returning JSON properly from an array

2014-03-14 Thread Carl Von Stetten
Are you doing SerializeJSON() in your CFC method, AND have returntype=JSON on the function definition? If so, it is double serializing the data. Remove the SerializeJSON() call and allow the function to automatically do the serialization. HTH, -Carl V. On 3/14/2014 12:26 PM, Rixon Reed

Re: Default Values for Built-in Function Optional Parameters

2014-03-10 Thread Carl Von Stetten
CFCs for ACF Railo. The line that runs cachePut() in ACF looks like this: CachePut( id, val, , , myregion ); while the one for Railo looks like this: CachePut( id:id, value:val, cacheName:myregion ); The empty strings for the two timeout arguments is acceptable on ACF. -Carl V. On 3/10/2014 8

Re: CF session management suddenly not sticking ...

2014-03-07 Thread Carl Von Stetten
for permanent use. So I think your assumptions and gruffness and were a bit off the mark. -Carl V. On 3/6/2014 7:35 PM, Andrew Scott wrote: If you are going to be dumping things out in production, for the world to see, I would stop that habit. The last thing you want to do is annoy your clients

Re: CF session management suddenly not sticking ...

2014-03-07 Thread Carl Von Stetten
+1 for J2EE sessions. -Carl V. On 3/7/2014 9:20 AM, Dave Watts wrote: The best solution, in my opinion, is to switch to J2EE sessions, assuming you can invest the time and effort to do that. ~| Order the Adobe Coldfusion

Re: CF session management suddenly not sticking ...

2014-03-07 Thread Carl Von Stetten
IIRC, unless you explicitly access CFID/CFTOKEN in your code, there shouldn't be any issues. -Carl V. On 3/7/2014 10:45 AM, Les Mizzell wrote: So considering the above - what, in theory, would be the exact consequences in switching to J2EE sessions? I don't this there would be that much code

Re: CF session management suddenly not sticking ...

2014-03-07 Thread Carl Von Stetten
I forgot about the persistence issue. Personally, I consider the lack of session persistence to be a security benefit. But not everyone will agree. -Carl V. On 3/7/2014 11:17 AM, Dave Watts wrote: If you're not directly referencing CFID and CFTOKEN in your code, and you're not relying

Re: CF session management suddenly not sticking ...

2014-03-07 Thread Carl Von Stetten
I think by add on he might have been referring to a browser add-on or plugin that the users have installed into Internet Explorer. -Carl V. Or maybe you have an add on that is killing cookies. That was my very first thought and I went straight to the design team who swore that we weren't

Re: Textfield Format

2014-02-27 Thread Carl Von Stetten
Yeah, sorry. I somehow completely overlooked the ExtJS reference in the OP. -Carl V. On 2/27/2014 4:01 AM, Steve 'Cutter' Blades wrote: Carl, You should really review the documentation on the ExtJS site, for the version you are using. You do not need additional plugins for this type

Re: Textfield Format

2014-02-25 Thread Carl Von Stetten
://jasny.github.io/bootstrap/javascript/#inputmask (Bootstrap plugin) -Carl V. On 2/25/2014 12:13 PM, Richard White wrote: Hi, This is not really a CF question but rather seeking general code advise. I want to create a textfield using ExtJS and would like the user only to have access to alter

Re: Moving from CF8 tp CF10 - Session Issues

2014-02-24 Thread Carl Von Stetten
Dan, Please make sure to log a bug with Adobe https://bugbase.adobe.com/index.cfm on this so they fix it in Splendor before the final release. -Carl V. On 2/22/2014 4:37 PM, Dan Crouch wrote: I was testing a migration from CF8 to the Splendor Beta and I ran into a weird session issue

Re: Upgrading CF9 Hotfixes

2014-02-13 Thread Carl Von Stetten
9.02 is not an update - it is a full install (see Charlie Arehart's blog entry for an excellent explanation http://www.carehart.org/blog/client/index.cfm/2013/8/19/understanding_ColdFusion_9.0.2_a_FAQ). As such, it cannot be installed over the top of 9.0 or 9.0.1. -Carl V. On 2/13/2014 9:19

Re: danger in increasing PostParameterLimit ?

2014-01-17 Thread Carl Von Stetten
the form data in pieces to the server (maybe adding each section's fields to a session variable until the last page is completed)? -Carl V. On 1/17/2014 7:52 AM, Chris wrote: How dangerous is increasing PostParameterLimit in CFv9 ? We have increased from the default 100 to 1,100 to meet

Re: per application settings

2013-11-26 Thread Carl Von Stetten
, is the application scope even available to make assignments before the onApplicationStart() function is called? Your application.cuproot variable may not even exist when the constructor is processing the cfset this.mappings... stuff (especially on first run of the application). HTH, -Carl V. On 11/26/2013 10

Re: per application settings

2013-11-26 Thread Carl Von Stetten
Eric, To clear up any questions about how the URL is being built/coded, can you post the content of your .cfm file that handles the header. -Carl V. On 11/26/2013 11:52 AM, Eric Roberts wrote: Philip...it is in a .cfm file that handles the header. in this specific instance, it is calling

Re: Problem with data formatting in CFINSERT

2013-11-05 Thread Carl Von Stetten
If you move to MSSQL 2008 or newer, the varchar(MAX) nicely replaces the Access TEXT data type. If you use the SQL Server import tools rather than the Access migration tools, you should be able to do identity insert on on auto increment columns and preserve their values. -Carl V. On 11/5

Re: CFMX 10 cluster question

2013-11-04 Thread Carl Meyer
Hi Alex, That all makes sense. What tho about users browsing to IIS, will they URL to one or the other or both somehow via a load balancer? Regards, Carl. - On BOX1 connect IIS to the local cluster - On BOX2 connect IIS to the local cluster Does this sound correct

Re: No directory deletion after cfcontent

2013-08-23 Thread Carl Von Stetten
I believe cfcontent effectively issues an abort after execution (at least the CF10 docs say so, not sure about CF9), so any code that follows the cfcontent is not executed. You might be better off setting up a recurring scheduled task to do your directory cleanup. HTH, -Carl V

Re: Does Windows 7 include SMTP server?

2013-08-22 Thread Carl Von Stetten
in ColdFusion Administrator. So, like Dave Watts suggests, you might try Apache James. -Carl V. On 8/13/2013 7:36 AM, Joy Paulose wrote: Does windows 7 include SMTP server? I came across some notes on windows discussion forum that said windows 7 does not include SMTP Mail server. But after

Re: Using IN() within a cfquery statement

2013-08-19 Thread Carl Von Stetten
I wonder if the problems with cfquickdocs and cfgloss are related to the switchover of the ColdFusion docs to the new wiki format? Or is that only for CF10 docs? -Carl V. On 8/19/2013 7:15 AM, DURETTE, STEVEN J wrote: I know from trying to look something up last week that I couldn't get

Re: Does Windows 7 include SMTP server?

2013-08-13 Thread Carl Von Stetten
Joy, At least two other people have already answered this question in your other thread. Windows 7 does come with SMTP server, but it is not installed by default. You'll have to install it from add/remove Windows Features. You also need IIS6 Management Console to manage SMTP. -Carl V

Re: coldfusion.server.ServiceFactory get datasource names? cf10

2013-08-13 Thread Carl Von Stetten
/WSc3ff6d0ea77859461172e0811cbf364104-7fcf.html. Take a close look at datasource.cfc. HTH, -Carl V. On 8/13/2013 11:04 AM, morchella wrote: They turned this off on one of our servers. we do not have access to cfadmin. can any one think of a way to output the names of dsn's set up on a server without having access to java

Re: How to Address Prompts for Java Updates

2013-07-03 Thread Carl Von Stetten
the latest Java SE JDK from Oracle - this JVM has additional server components that ColdFusion needs. Once that is installed, as Pete said, you'll need to update the JVM path to point to the new Java SE JDK. Again, you'll need to install all the hotfixes first as Pete stated. -Carl V. On 7/2

Re: How to Address Prompts for Java Updates

2013-07-03 Thread Carl Von Stetten
I don't see any replies from you on this thread... I think there are two parallel threads going here. -Carl V. On 7/3/2013 8:56 AM, Russ Michaels wrote: Isn't that what I said :) Russ Michaels www.michaels.me.uk On 3 Jul 2013 16:21, Carl Von Stetten vonner.li...@vonner.net wrote: Just

Re: Best means of setting a library of reusable code

2013-06-25 Thread Carl Von Stetten
elsewhere in your application. -Carl V. On 6/25/2013 12:03 PM, Rick Faircloth wrote: Well, the good news is that I can include the application variables in the AJAX post and pass them into the contact.cfc (which is also out of the webroot and in the library) via the AJAX call to contact.cfc

Re: Adobe no longer supports ColdFusion??? Really?

2013-06-19 Thread Carl Von Stetten
One weird thing I noticed when installing Dreamweaver CC: it actually stopped mid-install and made me shut down my ColdFusion 10 services before I could proceed any further. If ColdFusion is no longer supported in DW, why would it be checking for and stopping if ColdFusion is running? -Carl

Re: ColdFusion 11?

2013-06-19 Thread Carl Von Stetten
Alan, It was actually two versions of CF and two corresponding versions of CF Builder that were announced and are shown on the ColdFusion roadmap. Still, nice to see there is commitment to continued development of the product! :-) -Carl V. On 6/19/2013 7:49 AM, Alan Rother wrote

Re: ColdFusion 11?

2013-06-19 Thread Carl Von Stetten
, how many organizations would actually upgrade annually? -Carl V. On 6/19/2013 11:31 AM, Byron Mann wrote: Software maintenence in the industry has always been frequent for the most part. Most of those updates are more reactive, as patches and hot fixes. I was getting more to feature additions

Re: (ot) .NET vs. CF

2013-03-12 Thread Carl Von Stetten
Justin, With regard to a CFML engine running on .NET, New Atlanta has a BlueDragon .NET edition http://www.newatlanta.com/products/bluedragon/index.cfm that does exactly that. -Carl V. On 3/12/2013 2:07 PM, Justin Scott wrote: For those of u on this list that have experience with both, can

Re: now( ) is off by an hour

2013-03-12 Thread Carl Von Stetten
Daniel, What version of ColdFusion are you running? Maybe you can upgrade the JVM to a newer version that has updated DST settings? I think the start/end dates for DST in the US were changed in 2007, while Java 1.4 hasn't been current since around 2004. -Carl V. On 3/12/2013 6:31 AM

Re: (ot) .NET vs. CF

2013-03-12 Thread Carl Von Stetten
Justin, As a one-time Java BlueDragon user, I'd say the .NET version is the only reason I'd use BlueDragon over ACF at this point. They have fallen way behind in comparable feature support (last time I checked they were about equivalent to ACF 7/8). -Carl V. On 3/12/2013 3:49 PM, Justin

Re: Creating indexes on cdata and cglobal tables?

2013-03-05 Thread Carl Von Stetten
include index rebuilding. -Carl V. On 3/5/2013 2:25 PM, Dave Watts wrote: No, the database will do that for you automatically. INSERTs, UPDATEs and DELETEs may take a bit longer with indexes as a result, but SELECTs will be faster if they filter by key columns. Dave Watts, CTO, Fig Leaf

Re: Installing CF 10 Updater 8

2013-03-01 Thread Carl Von Stetten
-33adffe0134c60cd31c-7ffe.html page. I just tried following it and all of my previous update angst was resolved. -Carl V. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag

Re: Installing CF 10 Updater 8

2013-03-01 Thread Carl Von Stetten
install is to put the ColdFusion service account into the local Administrators group whenever I install updates. -Carl V. On 3/1/2013 9:51 AM, Rick Root wrote: Alright that seems to work. Huh. I guess the server updates section was a nice idea ;) Rick

Re: Installing CF 10 Updater 8

2013-03-01 Thread Carl Von Stetten
Adam, I don't know if it's related to extra security in Windows 7 Pro vs. Home Premium, or the fact my development PCs and my server are joined to a Windows domain. But this issue has been reproducible on all of my computers since Updater 4. -Carl V

Re: jquery forms

2013-02-14 Thread Carl Von Stetten
The jQuery Validation plugin is pretty awesome: http://bassistance.de/jquery-plugins/jquery-plugin-validation/ Also, that plugin is built into the ValidateThis framework: http://www.validatethis.org/ HTH, -Carl V. On 2/14/2013 8:00 AM, John M Bliss wrote: Hi! Time-back-way-back, my favorite

Re: Coldfusion 10 automatic updates not working

2013-02-07 Thread Carl Von Stetten
want to restart the ColdFusion service after putting the account in the Administrators group. -Carl V. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion

Re: Coldfusion 10 automatic updates not working

2013-02-07 Thread Carl Von Stetten
granting the ColdFusion service account full permissions to the entire /ColdFusion10 folder structure. Updates since update 2 have not installed without installing with Administrator group rights. -Carl V. On 2/7/2013 7:53 AM, DURETTE, STEVEN J wrote: And yet I believe that would go against

Re: Coldfusion 10 automatic updates not working

2013-02-07 Thread Carl Von Stetten
they do install successfully), switch the service back to the local system account and stop/restart it again. Since you are running as local service, is this your local development machine or your production server? Just curious. -Carl V. On 2/7/2013 2:40 PM, Jeff Carpenter wrote: I am not sure I

Re: ColdFusion license

2013-02-01 Thread Carl Von Stetten
have at most two physical processors in the server). HTH, -Carl V. On 2/1/2013 1:04 AM, Pradeep Viswanathan Rajasekaran wrote: I know that the EULA changes from ColdFusion 9 and above allows free staging and test instance, but does that mean we can actually install the original production

Re: ColdFusion license

2013-02-01 Thread Carl Von Stetten
Pradeep, I agree that the EULA is a bit vague about using the same license key. I confirmed it though through comments and responses on the Adobe ColdFusion Blog (*http://blogs.coldfusion.com/post.cfm/coldfusion-10-eula)*. -Carl V. On 2/1/2013 8:11 AM, Pradeep Viswanathan Rajasekaran wrote

Re: table (rows...)[...]not indexable by 1 -- error

2013-01-30 Thread Carl Von Stetten
I think you can remove all of the references to [getEmployeeList.currentrow] in your a tags. Since you are looping through the query with cfloop, any place you reference #getEmployeeList. you will get only the value of that field for the current row. HTH, Carl V

Re: JRun errors after security patch install

2013-01-16 Thread Carl Von Stetten
here http://helpx.adobe.com/coldfusion/kb/coldfusion-security-hotfix.html. HTH, -Carl V. On 1/16/2013 7:36 AM, Terry Ford wrote: Hello -- I installed the security patch last night on cf 9.1 linux, and woke up this morning to find that some of our templates no longer work: [Wed Jan 16 09:28

Re: form-post to SQL-insert creates double-entry

2013-01-16 Thread Carl Von Stetten
) //Your query here /cfif Again, as the others have stated, this will cause the query to only be executed if the form is actually submitted, rather than on every page load. HTH, -Carl V ~| Order the Adobe Coldfusion Anthology

Re: (ot) Windows Mesh Alternatives

2012-12-14 Thread Carl Von Stetten
+1 for Dropbox. Dropbox for Teams looks interesting as well. -Carl V. On 12/14/2012 9:50 AM, Cameron Childress wrote: On Fri, Dec 14, 2012 at 12:36 PM, John M Bliss bliss.j...@gmail.com wrote: Hi! Currently, my geographically dispersed company uses Windows Mesh as a network drive for shared

Re: CFERROR Handler

2012-12-06 Thread Carl Von Stetten
ColdFusion can only route runtime errors to an error handler (your soft error). Compile errors (such as invalid tag names) can't be interpreted by ColdFusion and cause a hard error. Not much you can do about that. -Carl V. On 12/6/2012 8:39 AM, Robert Harrison wrote: I have an exception

Re: CFMAIL Not getting to mail server

2012-11-27 Thread Carl Von Stetten
server settings from your CF7 install to your CF9 install? -Carl V. On 11/27/2012 2:23 PM, Brian Cain wrote: Hello All, I recently migrated to CF 9 from 7, and there seems to be an issue with not all cfmail messages going out. I an not getting any errors, and the log files in CF actually

Re: Where is information used by the Scheduler?

2012-11-26 Thread Carl Von Stetten
Claude, Try neo-cron.xml (should be in the \lib folder under your ColdFusion installation). -Carl V. On 11/26/2012 11:03 AM, =?ISO-8859-1?Q?Claude_Schn=E9egans wrote: Hi, When I open the Scheduler in the CF administrator (CF 9), I get the error: 11/26/2012 1:58:00 PM is an invalid date

Re: SQL Express and CF

2012-11-16 Thread Carl Von Stetten
I spoke too soon. The installer with tools provides limited replication support and SSMS, but not SSIS. -Carl V. On 11/15/2012 4:30 PM, Carl Von Stetten wrote: Starting with SQL Server Express 2008 R2 (and maybe some prior versions), you can download an installer that includes the SSMS

Re: SQL Express and CF

2012-11-15 Thread Carl Von Stetten
Starting with SQL Server Express 2008 R2 (and maybe some prior versions), you can download an installer that includes the SSMS tools, which I think includes SSIS as well. -Carl V. On 11/15/2012 1:32 PM, Mike Kear wrote: the things cut out of the express version are the kinds of things we use

Re: Case statement inside cached query

2012-11-08 Thread Carl Von Stetten
I don't think the CASE function is supported in Query-of-Query statements. -Carl V. On 11/8/2012 8:07 AM, Nathan Chen wrote: Matt, sorry I wasn't clear. I got a query of queries syntax error like this: Query Of Queries syntax error. Encountered sum ( case. Incorrect Select List, Nathan

Re: cfdirectory

2012-10-29 Thread Carl Von Stetten
This should work, so you need to address the rights issue. What Windows user account is the ColdFusion service running under? If you have it running as a specific Active Directory account, you need to modify the fileserver folder to grant Read access to that account. -Carl V. On 10/29/2012

CF10 Solr Searches using Addresses

2012-10-25 Thread Carl Von Stetten
anyone played around with parsing addresses and assembling an optimized Solr search? I'm hoping to save some time on experimentation. Thanks, Carl V. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe

Re: calling coldfusion page from SSIS package

2012-09-18 Thread Carl Von Stetten
. HTH, -Carl ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:352653

Re: Mailing list for Responsive and Adaptive Web Design

2012-09-17 Thread Carl Von Stetten
. If I have a SQL issue, I hit the Google or a couple of SQL Server specific groups (SSWUG, MSSQLTips, SQLServer Central). -Carl On 9/16/2012 11:26 AM, Rick Faircloth wrote: If the topics for mailing were to be restricted to CF only, which I could understand, then there would be no mailing

Re: (ot) How compatible is SQLServer 2012 with SQL Server 2005 databases?

2012-09-14 Thread Carl Von Stetten
). This is followed by a long table that explicitly states the differences in compatibility from previous versions. I'm assuming the docs for SQL Server 2012 would have something similar. HTH, Carl ~| Order the Adobe Coldfusion Anthology now

Re: CF10 on Win7

2012-09-06 Thread Carl Von Stetten
has been absolutely necessary to get new IIS web sites wired up properly. Your experience may be different. -Carl ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag

Re: CF10 on Win7

2012-09-05 Thread Carl Von Stetten
, and configure the IIS request handler. The reason http://foo/ worked is that IIS is falling back to the global CF wildcard handler to route the request through CF. HTH, -Carl On 9/5/2012 1:33 PM, Chad Gray wrote: This is kind of interesting. If I type a real missing html file like http://foo

Re: CF10 on Win7

2012-09-05 Thread Carl Von Stetten
web sites is pretty similar. I seem to recall having the same issues when I added ColdFusion 9 web sites to IIS, especially on IIS7 (Windows 7) or IIS7.5 (Windows Server 2008 R2). -Carl ~| Order the Adobe Coldfusion Anthology

Re: CF10 on Win7

2012-09-05 Thread Carl Von Stetten
the versions). This has been my experience over the past few years working on Windows 7 and Windows Server 2008R2. -Carl ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag

Re: Problem with Authentication on IIS 7.5 Scheduled Task

2012-08-13 Thread Carl Von Stetten
suggestions! -Carl On 8/10/2012 4:19 PM, Dave Watts wrote: OK. I created a local Windows user account named SchedTasks. I gave that account read permissions to the folder. I set Anonymous Authentication to Enabled just for that folder, and set the credentials to use the SchedTasks account

Re: Modern (and free) html/cf editor that is similar to Homesite?

2012-08-13 Thread Carl Von Stetten
Another +1 for Notepad++. -Carl ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm

Problem with Authentication on IIS 7.5 Scheduled Task

2012-08-10 Thread Carl Von Stetten
account created for the application pool, and the built-in IUSR account) have permissions to read from that subdirectory. I can't for the life of me figure out what I'm doing wrong. Anyone have any ideas? Thanks -Carl ~| Order

Re: Problem with Authentication on IIS 7.5 Scheduled Task

2012-08-10 Thread Carl Von Stetten
Digging a little more into IIS (by the way, I Googled IIS 7.5 stuff for a while before my initial post) - I checked the Authorization Rules for the subdirectory in question. I changed the Allow rule to include All anonymous users instead of All users. Didn't help. -Carl

Re: Problem with Authentication on IIS 7.5 Scheduled Task

2012-08-10 Thread Carl Von Stetten
authentication enabled. I'll post back with the results. And yes, CF is running under a custom Active Directory account that has been granted rights to the entire directory structure, so it should be able to access the file in question. Thanks, Carl Try different browser and see if it still works

Re: Problem with Authentication on IIS 7.5 Scheduled Task

2012-08-10 Thread Carl Von Stetten
Dave, How would you create the USERNAME with PASSWORD? I'm not sure I follow (I looked in IIS under Basic Authentication, and the only thing you can set there is Default Domain and Realm). -Carl And yes, CF is running under a custom Active Directory account that has been granted rights

Re: Problem with Authentication on IIS 7.5 Scheduled Task

2012-08-10 Thread Carl Von Stetten
, and even rebooted the server, all to no avail. -Carl Looks like you haven't got that subdir set to anon access properly. Chech the authentication settings on another site for comparison to see what it should be. It needs to run under the iis_iusr account. Or you could just put login details

Re: Problem with Authentication on IIS 7.5 Scheduled Task

2012-08-10 Thread Carl Von Stetten
Nope. One of the early steps in the ColdFusion lockdown guide has you remove the Default web site for security. -Carl Surely you have the default website still? Regards Russ Michaels ~| Order the Adobe Coldfusion Anthology

Re: Problem with Authentication on IIS 7.5 Scheduled Task

2012-08-10 Thread Carl Von Stetten
for the username, and filled in the correct password. I still get the 401.2 error when running the scheduled task. -Carl How would you create the USERNAME with PASSWORD? I'm not sure I follow (I looked in IIS under Basic Authentication, and the only thing you can set there is Default Domain

ColdFusion 10 Administrator Javascript Errors

2012-08-09 Thread Carl Von Stetten
this before? -Carl ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:352077

Re: ColdFusion 10 Administrator Javascript Errors

2012-08-09 Thread Carl Von Stetten
Russ, Thank you for the suggestions. I just figured it out. On my IIS site, I hadn't removed the Deny URL request filtering on the /scripts folder (the Deny URL filtering per the lockdown guide). Once I removed it, all is well. Thanks, -Carl

Re: 500 - Internal server error

2012-07-01 Thread Carl Meyer
://helpx.adobe.com/coldfusion/kb/coldfusion-security-hotfix.html HTH, Carl. We have a new Coldfusion 10 install that is running the identical code on many other systems but it is throwing a 500 - Internal server error and not running the cferror routine that we have built. Been all over the CFAdmin thinking

Re: 500 - Internal server error

2012-07-01 Thread Carl Meyer
://helpx.adobe.com/coldfusion/kb/coldfusion-security-hotfix.html HTH, Carl. We have a new Coldfusion 10 install that is running the identical code on many other systems but it is throwing a 500 - Internal server error and not running the cferror routine that we have built. Been all over the CFAdmin thinking

Re: ON-THE-FLY FILTERS

2012-06-28 Thread Carl Von Stetten
, the query will return all records. If you update session.F to contain an actual value, then that string will be used to filter the records. HTH, Carl On 6/28/2012 8:29 AM, Stephens, Larry V wrote: CF8 SELECT tblY.fldX FROM tblY WHERE tblY.fldA='something'; That works okay. But I want to set

Re: Maximum Post Variables

2012-06-28 Thread Carl Von Stetten
to edit the neo-runtime.xml file per the release notes to increase the number of parameters allowed. HTH, Carl On 6/29/2012 1:55 PM, Paul Alkema wrote: Hi All, I'm running into an issue, where when I create over 100 different form elements with different content I get a 500 error. I'd like

Re: Distributed Cache in Coldfusion 9 with Terracotta

2012-05-29 Thread Carl Von Stetten
Rick, Try this: http://li-ma.blogspot.com/2010/04/run-terracotta-server-as-windows.html HTH, -Carl ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion

Re: Variables

2012-05-16 Thread Carl Von Stetten
= bar HTH, Carl ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:351206

Re: CF9 no longer recognizes virtual directories on IIS after install of Apache

2012-05-01 Thread Carl Von Stetten
permissions that grant them access to that remote folder? -Carl Dave, Thanks for your thoughts. I am pretty sure that the IIS virtual directories must be the problem. I can go into IIS and browse to the virtual directories and see all of the files in them but IIS does not seem to want

Re: CF9 no longer recognizes virtual directories on IIS after install of Apache

2012-05-01 Thread Carl Von Stetten
Whoops. That was supposed to be directed to Curt, not Dave. My bad. -Carl Dave, Have you checked the permissions on the folder the Virtual Directory points to? Is directory security in IIS on the Virtual Directory set to Enable anonymous access with an account that has Windows

Re: Migrate back and forth between cf7 and cf8 on IIS

2012-03-09 Thread Carl Von Stetten
He's on Windows XP and is thus limited to one site in IIS. Man I love multiple IIS sites in Windows 7! -Carl On 3/9/2012 10:04 AM, Russ Michaels wrote: why not just setup separate sites and set each site to use the appropriate cf version instead of keep switching one site between different

Re: Help with REFind and Insert()

2012-02-24 Thread Carl Von Stetten
of the matched string. Try this: cfset DocContents = Insert(#i#, DocContents, REFind(#url.terms#, DocContents, 1)+Len(url.terms))/ HTH, -Carl ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion

Re: CFScript Book

2012-02-21 Thread Carl Von Stetten
Yeah, or how about the red seal on the cover that says High Quality Content by WIKIPEDIA articles!? LOL :-D On 2/21/2012 11:04 AM, Steve 'Cutter' Blades wrote: You mean I should write a book on CFScript? Fantastic? Betascript Publishing hhhm... Anyone notice the tagline states:

Re: [5] RE: cfspreadsheet issue when reads dates from spreadsheet

2012-02-09 Thread Carl Von Stetten
The only thing I might add is that if you are on CF9, you might consider using the new in-memory virtual file system (VFS) to write your new spreadsheet and read it back in (might improve the performance if the spreadsheet is large). -Carl On 2/8/2012 8:34 AM, Hong Chen wrote: I used

Re: debugging in cfscript

2012-02-09 Thread Carl Von Stetten
Rex, I think cf_abort is a custom tag, not a UDF, so it would not be called using cf_abort(). -Carl On 2/9/2012 9:19 AM, Rex wrote: yes, but to call cf_abort, you want to do cf_abort() It's like calling #now# instead of #now()# - Rex On 2/9/2012 5:46 AM, daniel kessler wrote: you have

Re: debugging in cfscript

2012-02-09 Thread Carl Von Stetten
Oops. I missed that. Nevermind! :-[ On 2/9/2012 10:10 AM, Matt Quackenbush wrote: Nopers. Daniel has ancffunction name=cf_abort in his CFC. See his previous posts in the thread. On Thu, Feb 9, 2012 at 12:04 PM, Carl Von Stetten vonner.li...@vonner.netwrote: Rex, I think cf_abort

Re: ORM global event handler

2011-12-29 Thread Carl Von Stetten
Maybe an issue with the case of your function calls to setCreated. For example, you check if the arguments.entity has a setCreated method, but you try to call using setcreated (notice the c in created is not capitalized). HTH, Carl On 12/29/2011 9:02 AM, Tom Small wrote: Hi Matt Thanks

Re: DirectoryExists sometimes returning incorrect value

2011-12-07 Thread Carl Von Stetten
directory=#variables.dirpath# /cfif HTH, Carl On 12/6/2011 1:56 PM, Shannon Rhodes wrote: This appears to happen randomly, making it difficult to replicate. Code will error that looks like this: cfif DirectoryExists(#variables.dirpath#) IS Nocfdirectory action=CREATE directory

  1   2   3   >