Re: CF builder installer?

2014-11-24 Thread Carl Von Stetten
installer, I'd love to get a copy, and we can also add it to the repo. Thanks Doug R On Fri, Nov 21, 2014 at 3:05 PM, Carl Von Stetten vonner.li...@vonner.net wrote: 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

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
You can actually import your entire CFB2 workspace if you want (projects included). By default (and on Windows), CFB2 put the workspace in C:\Users\Username\Adobe ColdFusion Builder Workspace. You can point CFB3 to that same workspace if you want, or copy it into the one created by CFB3

Re: Unable to add text to HTML HEAD tag

2014-05-07 Thread Carl Von Stetten
Rewrite the whole thing right now? No. I would progressively replace CF UI tags with clean JS frameworks or custom JS as you touch each section of your application. You'll find fewer and fewer people are using the CF UI tags and therefore less and less assistance available. And most of the

Re: DW versions that supported CF

2014-04-30 Thread Carl Von Stetten
Bruce, If you can make it through the first two weeks using CFBuilder, you probably won't look back at Dreamweaver (at least for ColdFusion coding). I was a long-time Dreamweaver user before switching to CFBuilder 2. After a couple of weeks, I never opened Dreamweaver again. And that was

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
John, I'm not going to use those top 3 new features either. But the performance is definitely vastly improved over CFB2 because they scrapped Apatana and rewrote the entire code insight/formatting parts for HTML/JS/CS/CFML. And there's now a 64-bit Windows installer, so no more having to

Re: ColdFusion 10 does not allow Access datasource

2014-04-28 Thread Carl Von Stetten
John, Are you able to manually create a 32-bit ODBC connection to your Access database? If you weren't aware already, you need to run the 32-bit Windows ODBC data sources applet from inside \Windows\SysWOW64 to access the 32-bit stuff. If you can do that successfully, then try connecting

Re: ColdFusion 10 does not allow Access datasource

2014-04-28 Thread Carl Von Stetten
John, The behavior you are describing with the ODBC service does not sound normal. Have you looked around in the Windows event viewer to see if there are any error messages related to the ColdFusion ODBC Service? Isn't there also a second ODBC-related service for ColdFusion? Is that one

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
Byron, That's the problem with positional vs. named arguments on BIFs. I ran into this with a cross-platform app that needed to run on ACF Railo. Railo supports named parameters for some BIFs (including cachePut() ), but ACF doesn't. So I had to split my caching function into separate

Re: CF session management suddenly not sticking ...

2014-03-07 Thread Carl Von Stetten
I think it was pretty clear that code he listed was being used solely to diagnose a problem he was experiencing **on a production server** and from **multiple client computers**, and that wasn't necessarily reproducible on a development server. And I don't think the code was meant for

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 on

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
is to help create it On 2/25/2014 3:38 PM, Carl Von Stetten wrote: Richard, You'll need to do some JavaScript magic to accomplish that. There are some widgets and jQuery plugins out there that seem to fit the bill: http://digitalbush.com/projects/masked-input-plugin/ (jQuery plugin) http://jquery

Re: Textfield Format

2014-02-25 Thread Carl Von Stetten
Richard, You'll need to do some JavaScript magic to accomplish that. There are some widgets and jQuery plugins out there that seem to fit the bill: http://digitalbush.com/projects/masked-input-plugin/ (jQuery plugin) http://jquery-plugins.net/tag/masked-input (a list of jQuery plugins)

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. In

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
Chris, I believe the danger involves the risk of the HashDOS issues that Pete elaborates on in his posts (which you cited). Is your application public-facing or intranet-only (behind a corporate firewall)? If public facing, then you have to weigh the potential for HashDOS vulnerability

Re: per application settings

2013-11-26 Thread Carl Von Stetten
Eric, I don't think ColdFusion mappings are involved when accessing files other than ColdFusion templates and components (.cfm and .cfc). If you look at the source of your web page in your browser, you'll probably see that the URLs are still /cup/images/image.png. The web server then

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

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
Joy, Windows 7 (any addition) **does NOT** include an SMTP server. The SMTP Mail Server icon in IIS Administrator is to point ASP.NET apps to a SMTP server elsewhere on your network (or a third-party SMTP server running on localhost). This is equivalent to setting the mail server settings

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 to

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. On

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

2013-08-13 Thread Carl Von Stetten
Morchella, You shouldn't be using the ServiceFactory stuff anyway, as that is undocumented and subject to change without notice. Take a look at the Administrator API (provided that isn't locked down as well):

Re: How to Address Prompts for Java Updates

2013-07-03 Thread Carl Von Stetten
Just to add to Pete's comments: the prompts you are seeing are probably not for the Java JVM that ColdFusion is using; most likely it is the Java client JVM that is used by apps and web pages that have Java plug-ins. To upgrade the JVM for ColdFusion, you'll need to download and install the

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
Rick, I don't know if this will help, but I've read about people creating proxy CFCs in or below the webroot specifically for AJAX requests. Those proxy CFCs either extend the protected CFCs (the ones outside the webroot) or have functions that call the protected CFCs through createObject()

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: There

Re: ColdFusion 11?

2013-06-19 Thread Carl Von Stetten
base. We probably only use about 10% of the features/tags/functions, so why should we pay for the other 90%. I would imagine upgrading/patching, etc would be far less of a hassle as well. Byron Mann Lead Engineer Architect HostMySite.com On Wed, Jun 19, 2013 at 11:19 AM, Carl Von

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
Indexes can become fragmented over time, however. If you add the indexes and note degradation of performance after a while, then you may need to look at rebuilding indexes and statistics. If you are using SQL Server, there are tools built-in to set up automated maintenance plans which can

Re: Installing CF 10 Updater 8

2013-03-01 Thread Carl Von Stetten
Rick, What OS are you on? If Windows 7 or Windows Server 2008, you might want to try downloading the hotfix (but not installing) using the Server Update tool, then installing the update using this Adobe Docs

Re: Installing CF 10 Updater 8

2013-03-01 Thread Carl Von Stetten
Rick, It might work pretty well under other OS's. But there are a number of people (myself included) that have had issues on Windows 7/Windows Server 2008. I think there are issues with Windows UAC and other permission controls. The only workaround aside from doing the command-line

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
This is a common issue reported on the Adobe ColdFusion forums. The only solution I have found to work reliably for me (and I'm on the same OS and web server) is to make sure that the service account ColdFusion is running under is a member of the local Administrators group. You may also

Re: Coldfusion 10 automatic updates not working

2013-02-07 Thread Carl Von Stetten
Steven, I guess I should have added that once the updates are installed, remove the service account from Administrators. And this solution is only a workaround, mind you. I don't believe this **should** be necessary, but it has been for me. I've followed the lockdown guides, including

Re: Coldfusion 10 automatic updates not working

2013-02-07 Thread Carl Von Stetten
That's exactly what I was suggesting you do. After you set the ColdFusion service to run as your account, did you stop and restart the service? That is necessary for the Administrator permissions to be granted to the ColdFusion service. Then, after the updates are installed (assuming they

Re: ColdFusion license

2013-02-01 Thread Carl Von Stetten
Pradeep, On the question of the license key: yes, you use the same license key on test and staging. I'm not aware of a way to limit the number of cores that ColdFusion has access to. If you virtualize your servers with VMWare vSphere, you can limit the number of cores each virtual machine

Re: ColdFusion license

2013-02-01 Thread Carl Von Stetten
admin is aware of the changes regarding the number of cores clause on the EULA, so thought of finding a solution for it too. On Feb 1, 2013 8:04 PM, Carl Von Stetten vonner.li...@vonner.net wrote: ~| Order the Adobe Coldfusion

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
Terry, I assume you are referring to the latest patch released earlier this week. Since it was a cumulative patch, it included some previously released security improvements as well as the new ones. One of the older security improvements was to add a Post Parameter Limit setting to prevent

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

2013-01-16 Thread Carl Von Stetten
If you add a name attribute to your submit button: input type=submit name=submit value=Enter New Donor then when the form is submitted, there will be a corresponding submit key added to the form scope. Then, as others have suggested, wrap your query in: cfif StructKeyExists(form, submit)

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
If the mail log doesn't show the messages as being bounced and undeliverable (and the messaged don't end up in the cfmail\undelivr folder in your ColdFusion install directory), then the problem is likely with your downstream mail server, not with ColdFusion. Did you propagate the same SMTP

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
I have a ColdFusion 10-based GIS application with a search form. One of the searches that can be performed is an address search. Address data is stored in an enterprise database that I can't alter, so I have to work with it the way it is. Addresses are broken apart into six separate database

Re: calling coldfusion page from SSIS package

2012-09-18 Thread Carl Von Stetten
It would probably be easier to have your CF scheduled job either 1) log an entry in a database table with a success code and timestamp, or 2) write an entry to a text file that SSIS can read. Then update your SSIS package to check the table or text file for the success code before

Re: Mailing list for Responsive and Adaptive Web Design

2012-09-17 Thread Carl Von Stetten
Rick, I think you'll find that most of the HoF lists you mentioned (aside from CF-Talk) have very limited participation recently - suggesting that people are generally going to other lists or forums for support and discussion on those topics, because the communities are larger and more

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

2012-09-14 Thread Carl Von Stetten
Mike, I think that each database has a setting for compatibility level (go to the Properties dialog for the database, then the Options tab, it's at the very top). As long as you leave this at SQL Server 2005 (90), you should be able to run the same database on 2012. I don't have SQL Server

Re: CF10 on Win7

2012-09-06 Thread Carl Von Stetten
Russ, My experience with Windows 7/Windows Server 2008 R2 and ColdFusion 9 Standard Edition has been that when a new site is added in IIS, **none** of the ColdFusion connectivity works without some intervention (and I'm not just talking about the CFIDE vdir). The only thing that has

Re: CF10 on Win7

2012-09-05 Thread Carl Von Stetten
Chad, Every IIS host that serves ColdFusion content needs the jakarta virtual directory. It sounds like you didn't rerun the web connector tool after you created your foo site. Run the web connector tool and connect ColdFusion to your foo site. This will add the jakarta virtual directory,

Re: CF10 on Win7

2012-09-05 Thread Carl Von Stetten
Chad, Yes, new websites added to IIS after running the connector tool do not automatically receive all of the necessary hooks to properly handle ColdFusion files. You have two options when re-running the connector tool: 1. Remove the all web sites connection and then re-add it. This may

Re: CF10 on Win7

2012-09-05 Thread Carl Von Stetten
Russ, True, as I said, the underpinnings between CF9 and CF10 are different. But the issue of having to re-run the connector tool to add ColdFusion functionality to new IIS web sites is common to both (even if what the connector tool is doing under the covers is different between the

Re: Problem with Authentication on IIS 7.5 Scheduled Task

2012-08-13 Thread Carl Von Stetten
Dave, On my previous Win2K3 server, the only way I was able to get scheduled tasks to run properly was to allow anonymous access to the subfolder in the application which stored the scripts for scheduled tasks. This worked fine for several years on the old server. I was trying to do the

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:

Problem with Authentication on IIS 7.5 Scheduled Task

2012-08-10 Thread Carl Von Stetten
I have ColdFusion 10 running on Windows Server 2008R2, using IIS7.5 as web server. I have an intranet application configured to use Windows Authentication with NTLM, which works very well. However, I have an issue with executing scheduled tasks. The files are part of this same application,

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
, you may be using cached login which is why it seems to work in browser. Do you have cf running under a custom user? Regards Russ Michaels On Aug 10, 2012 9:39 PM, Carl Von Stetten vonner.li...@vonner.net wrote: ~| Order

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
Since this is a new server setup, I don't have another site to compare to. I do have this working on an older Windows Server 2003/IIS 6, but things have changed a lot in IIS 7.5. I've checked all the settings in the web server config files (and they look correct), restarted IIS several

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
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. In the CF Scheduled Task, I specified SchedTask for the

ColdFusion 10 Administrator Javascript Errors

2012-08-09 Thread Carl Von Stetten
I just installed the 64-bit version of ColdFusion 10 on Windows Server 2008R2. I tried to do the install as close to the CF9 Server Lockdown Guide as possible, given that CF9 and CF10 have different underlying engines (CF9 is JRun and CF10 is Tomcat, in the Administrator CF9 used Java applets

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: ON-THE-FLY FILTERS

2012-06-28 Thread Carl Von Stetten
Larry, Might I suggest a little bit different approach? Instead of storing the whole WHERE clause in a session variable, store only the string you need to use for filtering. In your session definition code (likely onSessionStart() in Application.cfc): cfset session.F = Then modify your

Re: Maximum Post Variables

2012-06-28 Thread Carl Von Stetten
Paul, Take a look at the 9.0.2 release notes: http://helpx.adobe.com/coldfusion/release-note/coldfusion-9-0-update-2.html The Maximum size of post data is for the size (in MB) of posting data and/or files in a post request, not the number of parameters allowed in a post request. You'll need

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
Also, be careful using var as a variable name. It is a reserved keyword in ColdFusion. As Scott mentioned, you can make a variable local to a function by calling it local.varname. You can also make it local to a function by using the var keyword when you create the variable: cfset var foo

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

2012-05-01 Thread Carl Von Stetten
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 permissions on that remote folder, or does each user that connects to your site use NT

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
The docs for REFind() say that the third argument should be a positive integer, default value is 1. REFind() returns the position in the string where the matched string begins. You'll need to add the length of the matched string (in your case, Len(url.terms) ) to this value to get the end of

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
Since DirectoryExists returns a true/false, you don't need the IS No part of the statement. Also, DirectoryExists expects you to pass it a variable, so you don't need the quotes and pound signs around variables.dirpath: cfif NOT DirectoryExists(variables.dirpath) cfdirectory action=CREATE

Re: DirectoryExists sometimes returning incorrect value

2011-12-07 Thread Carl Von Stetten
It may be more than a style preference. I'm not sure that No as a string value is always equivalent to a true/false boolean value. My suggestion was intended to help identify if that might actually be your issue. I've experienced intermittent issues with FileExists and trying to delete

Re: debugging doesn't display on local sevrver

2011-12-07 Thread Carl Von Stetten
That looks like a IPv6 address, rather than the #.#.#.# IPv4 addresses. On 12/7/2011 12:03 PM, Greg Morphis wrote: Hey Russ, thanks for the tip, removing the IP addresses worked.. apparently my IP address is ::1 Thanks! On Wed, Dec 7, 2011 at 1:01 PM, Russ Michaelsr...@michaels.me.uk

Re: debugging doesn't display on local sevrver

2011-12-07 Thread Carl Von Stetten
Yup. That's the IPv6 equivalent of 127.0.0.1 -Carl On 12/7/2011 1:43 PM, Greg Morphis wrote: REMOTE_ADDR=::1REMOTE_HOST=::1 right On Wed, Dec 7, 2011 at 3:36 PM, Carl Von Stetten vonner.li...@vonner.net wrote: That looks like a IPv6 address, rather than the #.#.#.# IPv4 addresses

  1   2   3   >