[Looking for Charlie's main web site?]

Don't miss helpful "new" CF feature to identify code causing "implicit" scope searches

Don't miss that Adobe had added a useful feature (a "patch", made available in Apr 2024) to help in identifying any CFML code you may have which refers "implicitly" to scopes that would no longer searched (for any variables without a scope prefix), which is the new default behavior for CF2021, CF2023 and beyond as of the March 2024 updates (updates 13 and 7, respectively).

TLDR; (more on each of these points, in the rest of this post)

  • By following the simple couple of steps, CF will start logging (to a new unscoped.log) whenever code is run that would access an unscoped variable when that would cause CF to implicitly search through scopes (external to the request) which it would no longer search if "searchimplicitscopes" was false. (To be clear, the new logging only works if searchimplicitscopes is true, otherwise such searching would fail if searchimplicitscopes is false, as is the new default as of the March 2024 updates)
  • The "patch" is a jar which you must manually obtain and put into place--it is NOT included with the March 2024 CF update, or any others. The steps are very simple, discussed below or in an Adobe technote that was released in the weeks after the March updates, with the title: View unscoped variables in a log file
  • Note that this patch is also NOT included in the June 2024 CF updates, CF2021 update 14 and CF2023 update 8
  • Further, beware that if you DO apply any update to CF after applying this patch, that update will REMOVE this "patch" (and any jars in the lib/updates folder which is referred to in the technote). Therefore, you would need to put the jar BACK in manually after any such CF update, for it to continue doing its logging
  • Finally, FWIW, note that you can even leverage this patch in the CF two updates PRIOR to the March 2024 updates which introduced the change in the default for searchimplicitscopes, so updates 5/6 and 11/12, respectively. That means someone could also use this patch to test BEFORE moving to either the March 2024 updates or later
Again, more on each of these points below. But for some, the news and the link to the technote (and my couple of tips above) may be all they feel they need to hear. For others, I think more perspective may help, so read on for that.

[....Continue Reading....]

Workaround for performance issue in CF's use of Redis for sessions

This is important news for those using CF's feature to store sessions (session variables for all sessions) in Redis.

Some folks, using it with CF2021 or 2023 found CF was somehow heavily impacting their Redis instance. The good news is that I've found an easy fix/workaround (until Adobe fixes it formally).

For more (including why you may or may NOT be impacted by the issue), read on.

[....Continue Reading....]

Delighted to be speaking at Into the Box 2024, coming to DC in May

I'm delighted to announce that I've been selected to speak at Into the Box 2024, in DC, coming up in May. This will be my 5th time presenting at this wonderful event, going back to my first time in 2017.

My talk will be...

[....Continue Reading....]

Beware that latest Oracle JDK installers will REMOVE older JDK installs of that version

Here's something new to beware, a change in the most recent Oracle JDK installers for Java 11 or 17 (since Jan 2023) which could break your apps which rely on Java, whether on Windows, macOS, or via RPM, where the new Oracle jdk installer WILL REMOVE any previous updates of that JVM version that were created by previous JDK installers of that same major version. And it will do pretty much without warning, which may be a confusing shock for those caught unaware. Let me explain.

[....Continue Reading....]

Understanding the "cost" of cflock, part 1

In a post today on his blog, Ben Nadel did an experiment "Looking At The Performance Overhead Of A Read-Only Lock". (He happened to do it in Lucee, but the concept applies equally to CF.)

And I wanted to offer some additional thoughts--first planning to offer them as a comment--because there's a lot behind the question and his observations. But as it got longer, I realized it was too long for a comment. Also, I didn't want people to think (in reading a comment on Ben's blog) that I was challenging Ben or questioning his understanding of the matter! Not at all. :-) Instead, I was just wanting to add more context, to help other readers, and based on my years of observing the community.

What I offer here is pretty much exactly what I wrote, but I have added headings, to help readers here:

[....Continue Reading....]

How can I keep CF Admin settings in sync between multiple servers or instances?

Note: This blog post is from 2020. Some content may be outdated--though not necessarily. Same with links and subsequent comments from myself or others. Corrections are welcome, in the comments. And I may revise the content as necessary.
Updated, Feb 2022

This question, "How can I keep CF Admin settings in sync between multiple servers or instances?" was asked today on the Adobe CF forums. The person had CF instances on multiple servers and lamented having to login to each CF admin to make changes that would apply equally to all instances, in particular creating or changing datasources.

They wondered if in fact there was a feature in the CF Admin to "cluster" datasource definitions, like there is (since CF2016 Enterprise) the feature to "cluster" scheduled tasks.

While I explained that there was not such a "feature" to sync CF admin settings generally across instances, I added that there WERE at least a couple of options one could consider using to achieve the goal. (And as an update after I wrote this in Apr 2020, note that CF2021 came out a few months later offering still one more.) My answer elaborating things (as is my wont) was long enough that I should have probably created a blog post instead. After submitting it, I decided to do just that, here (and I have tweaked here what I said, with some more elaboration and links).

Short answer: there are different tools that might be considered to help with this task (especially automating it), and a couple more that some may consider:

  • the CFConfig tool within CommandBox, a powerful and automatable command line tool which uses json files and could allow you to sync things, even across CF versions and between CF and Lucee
  • the CF2021 cfsetup tool, a new command line tool which also uses json files and could allow you to sync things, for CF2021 and even earlier version
  • the CF Admin API (minimalist and manual), which you'd have to code to sync settings or set them in a synced manner
  • the CF CAR file feature deserves a mention also, though its use can't be automated (it seems)
  • I would advise AGAINST the seeming "shortcut" of copying neo xml files, especially between different servers or CF versions (same with using symlinks, etc.)

For more on all this, read on.

[....Continue Reading....]

How and why your sites may break, and what to do, after applying March 2020 update to CF2018 or 2016

Note: This blog post is from 2020. Some content may be outdated--though not necessarily. Same with links and subsequent comments from myself or others. Corrections are welcome, in the comments. And I may revise the content as necessary.
This is a critical warning to anyone who may apply the recent CF2018 Update 8 or CF2016 Update 14, released Tuesday of this week (on Mar 20, 2020). And readers in the future should note it will apply if and as you may update CF from any update BEFORE this one to any update AFTER this one.

To be clear, I do not mean with this warning to suggest that you should NOT apply the update! It implements an important security fix.

Instead, it's that after applying it, your CF web sites served via IIS or Apache WILL likely break initially, until you take one at least and perhaps two extra steps. The good news is that these steps are both easy and documented by Adobe in the update technotes, but they do require that someone do them, if needed. Let me explain.

[Update: I did an abbreviated version of this post on the Adobe CF portal: Three reasons your sites may break, and how to fix them, after applying March 2020 update to CF2018 or 2016. Note I also titled it differently. Just trying many ways to get people's attention. That post may interest some, either to read first (but my TLDR below also tries to abbreviate things also), or especially if you may prefer to give others a link to a post on this matter that is not as "dense" as this one. :-) I do point to this post from there, of course, for the many additional details that some may appreciate.]

Sadly, because many people don't bother to read the CF update technotes (linked to below), and they just apply the CF updates, they are not noticing this issue until they or their users start screaming because their sites are down. There's also a fair bit of "screaming" in the CF community, and folks responding may not know the info that I (or Adobe) have shared, to get things "working again", so I hope this helps bring some calm, and most important the clear solution/s needed.

[....Continue Reading....]

Solving metaspace errors, once and for all

Note: This blog post is from 2020. Some content may be outdated--though not necessarily. Same with links and subsequent comments from myself or others. Corrections are welcome, in the comments. And I may revise the content as necessary.
I have a really simple solution to offer here, for a problem that has been nagging people running ColdFusion for the past few years. This post may also benefit those NOT running CF, especially if they have found confusing/conflicting information about the Java metaspace error and jvm argument that relates to it.

Perhaps you're getting errors referring to "metaspace" or "OutOfMemoryError: Metaspace", whether in your web sites, error logs, or even the CF Admin, and you wonder "what to do". Or you may be getting odd occurrences of blank pages, and if you look in your coldfusion-error.log you are finding such metaspace errors.

TLDR; In all these cases, the solution is simple (and may seem contrarian to some ears): REMOVE the maxmetaspace element from your JVM arguments. Indeed, I would go so far as to say everyone should simply remove it, even BEFORE you may get errors.

In the post that follows, I will explain how to remove it, including how you need to be VERY careful when doing that. You may also wonder why I recommend removing it, versus raising it. I cover that, as well as a bug report I filed with Adobe related this tis (which was fixed as of CF2021), below.

I also created an abbreviated version of this post, on the Adobe CF portal, if that may interest some readers.

[....Continue Reading....]

How to solve failing "api" URLs, in CF2016 and 11 (not a problem in CF2018)

Note: This blog post is from 2020. Some content may be outdated--though not necessarily. Same with links and subsequent comments from myself or others. Corrections are welcome, in the comments. And I may revise the content as necessary.
If you're trying to run a request against CF 2016 (or perhaps 11), and the URL you're using has a path which starts with /api, you may find that the request fails to run (it may give a blank page). What gives? (It was related to the CF2016 API Manager, not CF's REST services feature.)

And what can you do about it, if you are on CF2016 or 11, and you want to use /api for your URLs? There are are two choices, depending on your needs: in brief, you can either:

  • change your /api folder to a new name (which I realize may not appeal to all to some)
  • or change the CF configuration, to STOP it treating /api specially for the API Manager's use. You would do this by editing two CF config files, urlworkermap.properties and web.xml (but this will break the ability of the API Manager to introspect REST services in CF2016 or CF11, though not CF2018)

TLDR; if you're bold and a risk taker, you can jump to the bottom to see my list of changes to make for that second option. As is often the case, there is risk in making changes in a cavalier fashion. There are various things to consider, and I warn of them below--but the good news is that this is a change that may take only minutes to do, once you've been careful to read about how to do it effectively.

Read on for more, including pros and cons of each choice, what to change and where, why this problem NO LONGER happens from CF2018 onward, and more.

(And if you are not familiar with the CF Enterprise API Manager, which is installed separately from CF, you can read about it here.)

[....Continue Reading....]

Configuring FusionReactor to show "real ip address" when behind a load balancer or other proxy

Note: This blog post is from 2019. Some content may be outdated--though not necessarily. Same with links and subsequent comments from myself or others. Corrections are welcome, in the comments. And I may revise the content as necessary.
If your server is behind a load balancer or other sort of proxy, you may have noticed that when you view information about requests in FusionReactor, they all have the same (or nearly the same) IP address. This can be easily fixed, and I show you how in this post.

[....Continue Reading....]

More Entries

Copyright ©2024 Charlie Arehart
Carehart Logo
BlogCFC was created by Raymond Camden. This blog is running version 5.005.
(Want to validate the html in this page?)

Managed Hosting Services provided by
Managed Dedicated Hosting


Debugging Information
ColdFusion Server Enterprise 2023,0,08,330668
Template /blog/client/index.cfm
Time Stamp 26-Jul-24 11:53 PM
Locale English (US)
User Agent Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Remote IP 172.69.59.22
Host Name 172.69.59.22


Execution Time

Total Time Avg Time Count Template
277 ms 277 ms 1 C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/index.cfm
201 ms 201 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | getEntries([complex value]) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
37 ms 37 ms 1 C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/Application.cfm
35 ms 35 ms 1 CFC[ C:/inetpub/fuseguard/components/firewall.cfc | processRequest() ] from C:/inetpub/fuseguard/components/firewall.cfc
5 ms 5 ms 1 C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/includes/pods/calendar.cfm
5 ms 5 ms 1 C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/includes/pods/months.cfm
4 ms 4 ms 1 C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/includes/pods/recentcomments.cfm
4 ms 4 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/Log4ShellFilter.cfc | inspectRequest() ] from C:/inetpub/fuseguard/components/filters/Log4ShellFilter.cfc
4 ms 4 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/RepeatOffenderFilter.cfc | inspectRequest() ] from C:/inetpub/fuseguard/components/filters/RepeatOffenderFilter.cfc
2 ms 2 ms 1 C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/includes/pods/about.cfm
2 ms 2 ms 1 C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/tags/getmode.cfm
2 ms 2 ms 1 C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/tags/layout.cfm
2 ms 2 ms 1 C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/tags/parseses.cfm
2 ms 2 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/CrossSiteScriptingFilter.cfc | inspectRequest() ] from C:/inetpub/fuseguard/components/filters/CrossSiteScriptingFilter.cfc
2 ms 2 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/DotDotSlashFilter.cfc | inspectRequest() ] from C:/inetpub/fuseguard/components/filters/DotDotSlashFilter.cfc
2 ms 2 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/RemoteExecutionFilter.cfc | inspectRequest() ] from C:/inetpub/fuseguard/components/filters/RemoteExecutionFilter.cfc
2 ms 2 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/SQLInjectionFilter.cfc | inspectRequest() ] from C:/inetpub/fuseguard/components/filters/SQLInjectionFilter.cfc
2 ms 2 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/ScopeInjectionFilter.cfc | inspectRequest() ] from C:/inetpub/fuseguard/components/filters/ScopeInjectionFilter.cfc
2 ms 2 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/ShellExecutionFilter.cfc | inspectRequest() ] from C:/inetpub/fuseguard/components/filters/ShellExecutionFilter.cfc
2 ms 2 ms 1 CFC[ C:/inetpub/fuseguard/components/ip/DBIPListProvider.cfc | getCounter(listID = 4, ipAddress = 172.69.59.22) ] from C:/inetpub/fuseguard/components/ip/DBIPListProvider.cfc
2 ms 2 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | getCategoryByAlias(troubleshooting) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
2 ms 1 ms 4 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeLink(92A003DD-CACF-7B68-3C6204C14F86AF0E) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
2 ms 0 ms 5 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeLink(C6B36982-9C29-B863-43CC747CB9C9F64F) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
2 ms 0 ms 8 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeLink(DC59CD2F-D380-7B51-19118C43A5100A28) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
1 ms 1 ms 1 C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/includes/pods/home.cfm
1 ms 1 ms 1 C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/includes/pods/promo.cfm
1 ms 1 ms 1 C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/includes/pods/rss.cfm
1 ms 1 ms 1 C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/includes/pods/subscribe.cfm
1 ms 1 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/ForeignPostFilter.cfc | inspectsRequest() ] from C:/inetpub/fuseguard/components/filters/ForeignPostFilter.cfc
1 ms 1 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/Log4ShellFilter.cfc | inspectsRequest() ] from C:/inetpub/fuseguard/components/filters/Log4ShellFilter.cfc
1 ms 1 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/RepeatOffenderFilter.cfc | inspectsRequest() ] from C:/inetpub/fuseguard/components/filters/RepeatOffenderFilter.cfc
1 ms 1 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/SQLInjectionFilter.cfc | inspectsRequest() ] from C:/inetpub/fuseguard/components/filters/SQLInjectionFilter.cfc
1 ms 1 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/UserAgentFilter.cfc | inspectsRequest() ] from C:/inetpub/fuseguard/components/filters/UserAgentFilter.cfc
1 ms 1 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/XMLEntityInjectionFilter.cfc | inspectRequest() ] from C:/inetpub/fuseguard/components/filters/XMLEntityInjectionFilter.cfc
1 ms 1 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/XMLExternalDTDFilter.cfc | inspectRequest() ] from C:/inetpub/fuseguard/components/filters/XMLExternalDTDFilter.cfc
1 ms 0 ms 21 CFC[ C:/inetpub/fuseguard/components/firewall.cfc | getRequestIPAddress() ] from C:/inetpub/fuseguard/components/firewall.cfc
1 ms 1 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | getActiveDays(2024, 7) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
1 ms 1 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | getCategory(DD03C90C-C8AF-277C-BADE3D00FC077B5D) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
1 ms 1 ms 2 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeCategoryLink(07371662-FFE8-4BE9-9086ECD202C9F0EA) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
1 ms 1 ms 2 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeCategoryLink(35711144-0A3F-B515-B12C35F6CD8C4303) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
1 ms 1 ms 2 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeCategoryLink(37096D63-E9CE-C4D4-25ED036DA02E0325) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
1 ms 1 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeCategoryLink(629BA156-F536-BF9E-7E1C1C8FEA04D6E9) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
1 ms 1 ms 2 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeCategoryLink(919AA5DC-B9AD-9889-C68358F544466881) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
1 ms 1 ms 2 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeCategoryLink(A71B8070-CABF-2900-6E64F277FCDFD92B) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
1 ms 1 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeCategoryLink(B2BF160C-5004-D8DC-B9A200E7B65AEF96) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
1 ms 1 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeCategoryLink(B5E4C572-0B6A-CADD-CB2422FF379796A4) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
1 ms 1 ms 2 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeCategoryLink(E4310D54-D8E5-8415-9043D8C7AA94615F) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
1 ms 1 ms 2 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeCategoryLink(EF0E01AA-0B38-B6F4-9F76ECE1E47CBE76) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
1 ms 1 ms 2 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeCategoryLink(FF0FED49-C7BA-C046-97E93CF08E81557D) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
1 ms 0 ms 4 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeLink(20FBA14D-B832-E8D7-958A38705AB3A53F) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
1 ms 0 ms 5 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeLink(543159AE-020F-3D84-7A003D4020846C52) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
1 ms 1 ms 2 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeLink(57B45FF9-FA22-00E3-3110E5B1530E3062) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
1 ms 1 ms 2 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeLink(5A96E6B6-DAA3-5601-6FFD243A779581E8) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
1 ms 0 ms 5 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeLink(89D7CC65-91E2-D439-E793946C79121A2D) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
1 ms 0 ms 5 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeLink(D57E12F8-DC99-8C40-CF12AD981A1ACB49) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
1 ms 0 ms 5 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeLink(E2619DD0-06F5-1E06-879E142331E71821) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
1 ms 0 ms 5 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeLink(ECEE8F6B-91AA-14D8-9F56921C3762BB62) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
1 ms 1 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | renderEntry(If you're trying to run a request against CF 2016 (or perhaps 11), and the URL you're using has a path which starts with /api, you may find that the request fails to run (it may give a blank page). What gives? (It was related to the CF2016 API Manager, not CF's REST services feature.) And what can you do about it, if you are on CF2016 or 11, and you want to use /api for your URLs? There are are two choices, depending on your needs: in brief, you can either:
  • change your /api folder to a new name (which I realize may not appeal to all to some)
  • or change the CF configuration, to STOP it treating /api specially for the API Manager's use. You would do this by editing two CF config files, urlworkermap.properties and web.xml (but this will break the ability of the API Manager to introspect REST services in CF2016 or CF11, though not CF2018)
TLDR; if you're bold and a risk taker, you can jump to the bottom to see my <a href="#list">list of changes to make</a> for that second option. As is often the case, there is risk in making changes in a cavalier fashion. There are various things to consider, and I warn of them below--but the good news is that this is a change that may take only minutes to do, once you've been careful to read about how to do it effectively. Read on for more, including pros and cons of each choice, what to change and where, why this problem NO LONGER happens from CF2018 onward, and more. (And if you are not familiar with the CF Enterprise API Manager, which is installed separately from CF, you can <a href="https://helpx.adobe.com/coldfusion/user-guide.html?topic=/coldfusion/morehelp/coldfusion-api-manager.ug.js">read about it here</a>.), false, ) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 1 C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/includes/pods/archives.cfm
0 ms 0 ms 1 C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/includes/pods/contact.cfm
0 ms 0 ms 1 C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/includes/pods/recent.cfm
0 ms 0 ms 1 C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/includes/pods/search.cfm
0 ms 0 ms 1 C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/includes/pods/wrap3.cfm
0 ms 0 ms 1 C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/includes/udf.cfm
0 ms 0 ms 9 C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/tags/podlayout.cfm
0 ms 0 ms 4 C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/tags/scopecache.cfm
0 ms 0 ms 1 C:/inetpub/wwwroot/clients/carehart.org/www/mybio.cfm
0 ms 0 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/CRLFInjectionFilter.cfc | inspectRequest() ] from C:/inetpub/fuseguard/components/filters/CRLFInjectionFilter.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/CRLFInjectionFilter.cfc | inspectsRequest() ] from C:/inetpub/fuseguard/components/filters/CRLFInjectionFilter.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/CrossSiteScriptingFilter.cfc | inspectsRequest() ] from C:/inetpub/fuseguard/components/filters/CrossSiteScriptingFilter.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/DictionaryAttackFilter.cfc | inspectRequest() ] from C:/inetpub/fuseguard/components/filters/DictionaryAttackFilter.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/DictionaryAttackFilter.cfc | inspectsRequest() ] from C:/inetpub/fuseguard/components/filters/DictionaryAttackFilter.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/DotDotSlashFilter.cfc | inspectsRequest() ] from C:/inetpub/fuseguard/components/filters/DotDotSlashFilter.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/FileUploadFilter.cfc | inspectRequest() ] from C:/inetpub/fuseguard/components/filters/FileUploadFilter.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/FileUploadFilter.cfc | inspectsRequest() ] from C:/inetpub/fuseguard/components/filters/FileUploadFilter.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/ForeignPostFilter.cfc | inspectRequest() ] from C:/inetpub/fuseguard/components/filters/ForeignPostFilter.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/IDValidationFilter.cfc | inspectRequest() ] from C:/inetpub/fuseguard/components/filters/IDValidationFilter.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/IDValidationFilter.cfc | inspectsRequest() ] from C:/inetpub/fuseguard/components/filters/IDValidationFilter.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/NullByteFilter.cfc | inspectRequest() ] from C:/inetpub/fuseguard/components/filters/NullByteFilter.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/NullByteFilter.cfc | inspectsRequest() ] from C:/inetpub/fuseguard/components/filters/NullByteFilter.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/QueryStringLengthFilter.cfc | inspectRequest() ] from C:/inetpub/fuseguard/components/filters/QueryStringLengthFilter.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/QueryStringLengthFilter.cfc | inspectsRequest() ] from C:/inetpub/fuseguard/components/filters/QueryStringLengthFilter.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/RemoteExecutionFilter.cfc | inspectsRequest() ] from C:/inetpub/fuseguard/components/filters/RemoteExecutionFilter.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/RemoteMethodFilter.cfc | inspectRequest() ] from C:/inetpub/fuseguard/components/filters/RemoteMethodFilter.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/RemoteMethodFilter.cfc | inspectsRequest() ] from C:/inetpub/fuseguard/components/filters/RemoteMethodFilter.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/ScopeInjectionFilter.cfc | inspectsRequest() ] from C:/inetpub/fuseguard/components/filters/ScopeInjectionFilter.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/ShellExecutionFilter.cfc | inspectsRequest() ] from C:/inetpub/fuseguard/components/filters/ShellExecutionFilter.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/URLSessionIDFilter.cfc | inspectRequest() ] from C:/inetpub/fuseguard/components/filters/URLSessionIDFilter.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/URLSessionIDFilter.cfc | inspectsRequest() ] from C:/inetpub/fuseguard/components/filters/URLSessionIDFilter.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/UserAgentFilter.cfc | inspectRequest() ] from C:/inetpub/fuseguard/components/filters/UserAgentFilter.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/XMLEntityInjectionFilter.cfc | inspectsRequest() ] from C:/inetpub/fuseguard/components/filters/XMLEntityInjectionFilter.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/fuseguard/components/filters/XMLExternalDTDFilter.cfc | inspectsRequest() ] from C:/inetpub/fuseguard/components/filters/XMLExternalDTDFilter.cfc
0 ms 0 ms 9 CFC[ C:/inetpub/fuseguard/components/firewall.cfc | getIgnoreRequestBodyOnMultipartRequests() ] from C:/inetpub/fuseguard/components/firewall.cfc
0 ms 0 ms 9 CFC[ C:/inetpub/fuseguard/components/firewall.cfc | getIgnoreRequestBodyOnSOAPRequests() ] from C:/inetpub/fuseguard/components/firewall.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/fuseguard/components/firewall.cfc | shouldReInitialize() ] from C:/inetpub/fuseguard/components/firewall.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/fuseguard/components/listeners/RepeatOffenderEventListener.cfc | processRequestComplete(CFC: fuseguard.components.firewall) ] from C:/inetpub/fuseguard/components/listeners/RepeatOffenderEventListener.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | getProperty(allowtrackbacks) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | getProperty(blogDescription) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | getProperty(blogKeywords) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 3 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | getProperty(blogTitle) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 34 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | getProperty(blogurl) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | getProperty(maxEntries) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 2 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | getProperty(offset) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | getRecentComments(5) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | getVersion() ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeCategoryLink(02C74B15-B850-9DE5-836D1E8D2B2BA27C) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeCategoryLink(02CA52D3-DADF-C0E5-30173DBB52695D0D) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 2 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeCategoryLink(097A3726-5004-D8DC-B92A7ACA5A0B9269) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeCategoryLink(1DC52BA8-5004-D8DC-B9EDB05B358B9902) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 3 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeCategoryLink(2C3D68A7-DB4B-027D-E217B754A015E894) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 2 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeCategoryLink(2C779990-FE27-053F-8B474D62B1ED5BD9) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 4 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeCategoryLink(4F9349DD-5004-D8DC-B93BD433C1E8E1EA) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeCategoryLink(5D4AA9FB-9DD4-3EF8-633D19D395CD8D79) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeCategoryLink(709BD115-5004-D8DC-B96A88BF2C97B22E) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeCategoryLink(7117DCCE-0DA3-7051-E894244434F24EBF) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeCategoryLink(89D7FB41-933A-8B97-26ED38E5D6626F4B) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeCategoryLink(DB0B93F0-CDC9-BFCF-723687C22BD1A0D2) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 10 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeCategoryLink(DD03C90C-C8AF-277C-BADE3D00FC077B5D) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 2 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeCategoryLink(ECEF52EC-03D3-2E00-5C0C3C28CF900353) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeCategoryLink(F3BF4938-5004-D8DC-B98BDDE512875433) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 5 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | makeLink(CA8ABA61-FDAF-C4D1-378B69F98FF8BF7C) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | renderEntry(Updated, Feb 2022 This question, "How can I keep CF Admin settings in sync between multiple servers or instances?" <a href="https://community.adobe.com/t5/coldfusion/clustering-datasources/m-p/11031831">was asked today</a> on the <a href="https://community.adobe.com/t5/coldfusion/bd-p/coldfusion">Adobe CF forums</a>. The person had CF instances on multiple servers and lamented having to login to each CF admin to make changes that would apply equally to all instances, in particular creating or changing datasources. They wondered if in fact there was a feature in the CF Admin to "cluster" datasource definitions, like there is (since CF2016 Enterprise) the feature to "cluster" scheduled tasks. While I explained that there was not such a "feature" to sync CF admin settings generally across instances, I added that there WERE at least a couple of options one could consider using to achieve the goal. (And as an update after I wrote this in Apr 2020, note that CF2021 came out a few months later offering still one more.) My answer elaborating things (as is my wont) was long enough that I should have probably created a blog post instead. After submitting it, I decided to do just that, here (and I have tweaked here what I said, with some more elaboration and links). Short answer: there are different tools that might be considered to help with this task (especially automating it), and a couple more that some may consider:
  • the CFConfig tool within CommandBox, a powerful and automatable command line tool which uses json files and could allow you to sync things, even across CF versions and between CF and Lucee
  • the CF2021 cfsetup tool, a new command line tool which also uses json files and could allow you to sync things, for CF2021 and even earlier version
  • the CF Admin API (minimalist and manual), which you'd have to code to sync settings or set them in a synced manner
  • the CF CAR file feature deserves a mention also, though its use can't be automated (it seems)
  • I would advise AGAINST the seeming "shortcut" of copying neo xml files, especially between different servers or CF versions (same with using symlinks, etc.)
For more on all this, read on., false, ) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | renderEntry(Don't miss that Adobe had added a useful feature (a "patch", made available in Apr 2024) to help in identifying any CFML code you may have which refers "implicitly" to scopes that would no longer searched (for any variables without a scope prefix), which is the new default behavior for CF2021, CF2023 and beyond as of the March 2024 updates (updates 13 and 7, respectively). TLDR; (more on each of these points, in the rest of this post)
  • By following the simple couple of steps, CF will start logging (to a new unscoped.log) whenever code is run that would access an unscoped variable when that would cause CF to implicitly search through scopes (external to the request) which it would no longer search if "searchimplicitscopes" was false. (To be clear, the new logging only works if searchimplicitscopes is true, otherwise such searching would fail if searchimplicitscopes is false, as is the new default as of the March 2024 updates)
  • The "patch" is a jar which you must manually obtain and put into place--it is NOT included with the March 2024 CF update, or any others. The steps are very simple, discussed below or in an Adobe technote that was released in the weeks after the March updates, with the title: <a href="https://helpx.adobe.com/coldfusion/kb/view-unscoped-variables-log-file.html">View unscoped variables in a log file</a>
  • Note that this patch is also NOT included in the June 2024 CF updates, CF2021 update 14 and CF2023 update 8
  • Further, beware that if you DO apply any update to CF after applying this patch, that update will REMOVE this "patch" (and any jars in the lib/updates folder which is referred to in the technote). Therefore, you would need to put the jar BACK in manually after any such CF update, for it to continue doing its logging
  • Finally, FWIW, note that you can even leverage this patch in the CF two updates PRIOR to the March 2024 updates which introduced the change in the default for searchimplicitscopes, so updates 5/6 and 11/12, respectively. That means someone could also use this patch to test BEFORE moving to either the March 2024 updates or later
Again, more on each of these points below. But for some, the news and the link to the technote (and my couple of tips above) may be all they feel they need to hear. For others, I think more perspective may help, so read on for that., false, ) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | renderEntry(Here's something new to beware, a change in the most recent Oracle JDK installers for Java 11 or 17 (since Jan 2023) which could break your apps which rely on Java, whether on Windows, macOS, or via RPM, where the new Oracle jdk installer WILL REMOVE any previous updates of that JVM version that were created by previous JDK installers of that same major version. And it will do pretty much without warning, which may be a confusing shock for those caught unaware. Let me explain., false, ) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | renderEntry(I have a really simple solution to offer here, for a problem that has been nagging people running ColdFusion for the past few years. This post may also benefit those NOT running CF, especially if they have found confusing/conflicting information about the Java metaspace error and jvm argument that relates to it. Perhaps you're getting errors referring to "metaspace" or "OutOfMemoryError: Metaspace", whether in your web sites, error logs, or even the CF Admin, and you wonder "what to do". Or you may be getting odd occurrences of blank pages, and if you look in your coldfusion-error.log you are finding such metaspace errors. TLDR; In all these cases, the solution is simple (and may seem contrarian to some ears): <u>REMOVE the maxmetaspace element from your JVM arguments.</u> Indeed, I would go so far as to say everyone should simply remove it, even BEFORE you may get errors. In the post that follows, I will explain how to remove it, including how you need to be VERY careful when doing that. You may also wonder why I recommend removing it, versus raising it. I cover that, as well as a bug report I filed with Adobe related this tis (which was fixed as of CF2021), below. I also created an <a href="https://coldfusion.adobe.com/2020/02/quickly-solve-outofmemory-metaspace-errors/">abbreviated version of this post, on the Adobe CF portal</a>, if that may interest some readers., false, ) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | renderEntry(I'm delighted to announce that I've been selected to speak at <a href="https://2024.intothebox.org/">Into the Box 2024</a>, in DC, coming up in May. This will be my 5th time presenting at this wonderful event, going back to my first time in 2017. My talk will be..., false, ) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | renderEntry(If your server is behind a load balancer or other sort of proxy, you may have noticed that when you view information about requests in FusionReactor, they all have the same (or nearly the same) IP address. This can be easily fixed, and I show you how in this post., false, ) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | renderEntry(In a post today on his blog, Ben Nadel did an experiment "<a href=" https://www.bennadel.com/blog/4290-looking-at-the-performance-overhead-of-a-read-only-lock-in-lucee-cfml-5-3-8-201.htm">Looking At The Performance Overhead Of A Read-Only Lock</a>". (He happened to do it in Lucee, but the concept applies equally to CF.) And I wanted to offer some additional thoughts--first planning to offer them as a comment--because there's a lot behind the question and his observations. But as it got longer, I realized it was too long for a comment. Also, I didn't want people to think (in reading a comment on Ben's blog) that I was challenging Ben or questioning his understanding of the matter! Not at all. :-) Instead, I was just wanting to add more context, to help other readers, and based on my years of observing the community. What I offer here is pretty much exactly what I wrote, but I have added headings, to help readers here:, false, ) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | renderEntry(This is a critical warning to anyone who may apply the recent CF2018 Update 8 or CF2016 Update 14, released Tuesday of this week (on Mar 20, 2020). And readers in the future should note it will apply if and as you may update CF from any update BEFORE this one to any update AFTER this one. To be clear, I do not mean with this warning to suggest that you should NOT apply the update! It implements an important security fix. Instead, it's that after applying it, your CF web sites served via IIS or Apache WILL likely break initially, until you take one at least and perhaps two extra steps. The good news is that these steps are both easy and documented by Adobe in the update technotes, but they do require that someone do them, if needed. Let me explain. <blockquote> [Update: I did an abbreviated version of this post on the Adobe CF portal: <a href="https://coldfusion.adobe.com/2020/03/three-reasons-sites-may-break-fix-applying-mar-2020-update-cf2018-2016/">Three reasons your sites may break, and how to fix them, after applying March 2020 update to CF2018 or 2016</a>. Note I also titled it differently. Just trying many ways to get people's attention. That post may interest some, either to read first (but my TLDR below also tries to abbreviate things also), or especially if you may prefer to give others a link to a post on this matter that is not as "dense" as this one. :-) I do point to this post from there, of course, for the many additional details that some may appreciate.] </blockquote> Sadly, because many people don't bother to read the CF update technotes (linked to <a href="#findingmore">below</a>), and they just apply the CF updates, they are not noticing this issue until they or their users start screaming because their sites are down. There's also a fair bit of "screaming" in the CF community, and folks responding may not know the info that I (or Adobe) have shared, to get things "working again", so I hope this helps bring some calm, and most important the clear solution/s needed., false, ) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc | renderEntry(This is important news for those using CF's feature to store sessions (session variables for all sessions) in Redis. Some folks, using it with CF2021 or 2023 found CF was somehow heavily impacting their Redis instance. The good news is that I've found an easy fix/workaround (until Adobe fixes it formally). For more (including why you may or may NOT be impacted by the issue), read on., false, ) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/camden/blog/blog.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/resourcebundle.cfc | getResource(about) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/resourcebundle.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/resourcebundle.cfc | getResource(calendar) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/resourcebundle.cfc
0 ms 0 ms 10 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/resourcebundle.cfc | getResource(comments) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/resourcebundle.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/resourcebundle.cfc | getResource(home) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/resourcebundle.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/resourcebundle.cfc | getResource(moreentries) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/resourcebundle.cfc
0 ms 0 ms 10 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/resourcebundle.cfc | getResource(postedat) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/resourcebundle.cfc
0 ms 0 ms 10 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/resourcebundle.cfc | getResource(postedby) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/resourcebundle.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/resourcebundle.cfc | getResource(recentcomments) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/resourcebundle.cfc
0 ms 0 ms 10 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/resourcebundle.cfc | getResource(relatedcategories) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/resourcebundle.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/resourcebundle.cfc | getResource(search) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/resourcebundle.cfc
0 ms 0 ms 2 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/resourcebundle.cfc | getResource(subscribe) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/resourcebundle.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/resourcebundle.cfc | getResource(subscribeblog) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/resourcebundle.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc | dateLocaleFormat(2019-08-21 18:27:00.0) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc | dateLocaleFormat(2020-01-16 20:14:00.0) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc | dateLocaleFormat(2020-02-24 22:45:00.0) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc | dateLocaleFormat(2020-03-20 18:23:00.0) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc | dateLocaleFormat(2020-04-07 10:15:00.0) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc | dateLocaleFormat(2022-06-24 11:55:00.0) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc | dateLocaleFormat(2023-01-23 23:01:00.0) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc | dateLocaleFormat(2024-01-30 11:42:00.0) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc | dateLocaleFormat(2024-05-28 15:55:00.0) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc | dateLocaleFormat(2024-07-18 23:25:00.0) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc | getLocalizedDays() ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc | getLocalizedMonth(7) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc | getLocalizedYear(2024) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc | isBIDI() ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc | timeLocaleFormat(2019-08-21 18:27:00.0) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc | timeLocaleFormat(2020-01-16 20:14:00.0) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc | timeLocaleFormat(2020-02-24 22:45:00.0) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc | timeLocaleFormat(2020-03-20 18:23:00.0) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc | timeLocaleFormat(2020-04-07 10:15:00.0) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc | timeLocaleFormat(2022-06-24 11:55:00.0) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc | timeLocaleFormat(2023-01-23 23:01:00.0) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc | timeLocaleFormat(2024-01-30 11:42:00.0) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc | timeLocaleFormat(2024-05-28 15:55:00.0) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc | timeLocaleFormat(2024-07-18 23:25:00.0) ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc
0 ms 0 ms 1 CFC[ C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc | weekStarts() ] from C:/inetpub/wwwroot/clients/carehart.org/www/blog/client/org/hastings/locale/utils.cfc
2 ms  STARTUP, PARSING, COMPILING, LOADING, & SHUTDOWN
316 ms  TOTAL EXECUTION TIME
red = over 250 ms average execution time


SQL Queries

local.ipCounter (Datasource=fuseguard, Time=1ms, Records=0) in C:\inetpub\fuseguard\components\ip\DBIPListProvider.cfc @ 23:53:16.016
SELECT counter FROM fuseguard_ip
			WHERE ip_list_id = ? 
				AND ip_version = 4
				AND ip_start <= ?
				AND ip_end >= ?
Query Parameter Value(s) -
Parameter #1(cf_sql_integer) = 4
Parameter #2(cf_sql_bigint) = 2890218262
Parameter #3(cf_sql_bigint) = 2890218262

getC (Datasource=blogcfcsql, Time=0ms, Records=1) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid
			from	tblblogcategories
			where	categoryalias = ?
			and		blog = ?
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = troubleshooting
Parameter #2(CF_SQL_VARCHAR) = Default

getEm (Datasource=blogcfcsql, Time=113ms, Records=73) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	
				 
					1, tblblogentries.id, tblblogentries.title, 
					tblblogentries.alias, 
					
					
						dateAdd(hh, 0, tblblogentries.posted) as posted, 
					
					tblusers.name, tblblogentries.allowcomments,
					tblblogentries.enclosure, tblblogentries.filesize, tblblogentries.mimetype, tblblogentries.released, tblblogentries.views
				, tblblogentries.body, tblblogentries.morebody
			from	tblblogentries, tblusers
			,tblblogentriescategories
			
			where		1=1
			
						and blog = ?
						and tblblogentries.username = tblusers.username
			
				and tblblogentriescategories.entryidfk = tblblogentries.id
				and tblblogentriescategories.categoryidfk = ? 
			and			posted <?
			and			released = 1
			
			
			order by 	tblblogentries.posted desc
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = Default
Parameter #2(CF_SQL_VARCHAR) = DD03C90C-C8AF-277C-BADE3D00FC077B5D
Parameter #3(cf_sql_timestamp) = 2024-07-26 23:53:16.545

getComments (Datasource=blogcfcsql, Time=34ms, Records=55) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select count(id) as commentCount, entryidfk
				from 	tblblogcomments
				where	entryidfk in (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)

				group by entryidfk
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = DC59CD2F-D380-7B51-19118C43A5100A28
Parameter #2(CF_SQL_VARCHAR) = 89D7CC65-91E2-D439-E793946C79121A2D
Parameter #3(CF_SQL_VARCHAR) = 92A003DD-CACF-7B68-3C6204C14F86AF0E
Parameter #4(CF_SQL_VARCHAR) = D57E12F8-DC99-8C40-CF12AD981A1ACB49
Parameter #5(CF_SQL_VARCHAR) = E2619DD0-06F5-1E06-879E142331E71821
Parameter #6(CF_SQL_VARCHAR) = 543159AE-020F-3D84-7A003D4020846C52
Parameter #7(CF_SQL_VARCHAR) = C6B36982-9C29-B863-43CC747CB9C9F64F
Parameter #8(CF_SQL_VARCHAR) = CA8ABA61-FDAF-C4D1-378B69F98FF8BF7C
Parameter #9(CF_SQL_VARCHAR) = ECEE8F6B-91AA-14D8-9F56921C3762BB62
Parameter #10(CF_SQL_VARCHAR) = 20FBA14D-B832-E8D7-958A38705AB3A53F
Parameter #11(CF_SQL_VARCHAR) = E094F80A-9EE1-A124-4C6AD755CB69BC2D
Parameter #12(CF_SQL_VARCHAR) = 12BA8146-9880-FA8A-DDAE402D88B74610
Parameter #13(CF_SQL_VARCHAR) = 3BA74F7E-C0F0-23BC-87AC22DFB9FEC662
Parameter #14(CF_SQL_VARCHAR) = 352ABE45-E6E9-8588-91685738030F7AD6
Parameter #15(CF_SQL_VARCHAR) = 2D51886A-F040-91D9-532C583D0C56A3B5
Parameter #16(CF_SQL_VARCHAR) = 21859E40-973B-1FF8-668D0172DBB31F6A
Parameter #17(CF_SQL_VARCHAR) = 6B8F2154-9962-A9BE-E2ACDC202A8ED3A6
Parameter #18(CF_SQL_VARCHAR) = BFBA7BA2-DAC5-F078-46D4331C0D39E4F2
Parameter #19(CF_SQL_VARCHAR) = 39EF28EE-F71F-FD21-5A032EB32D72057B
Parameter #20(CF_SQL_VARCHAR) = EA1190C4-E13F-158A-2E5B173A97793CCB
Parameter #21(CF_SQL_VARCHAR) = 0736B99A-9ACE-AFA3-BA320659B8599592
Parameter #22(CF_SQL_VARCHAR) = 2034D86A-BE62-F59B-F3946B51880D83EE
Parameter #23(CF_SQL_VARCHAR) = AF80E6A2-DE77-C916-9F6E96B2E22E30A8
Parameter #24(CF_SQL_VARCHAR) = B1A4E108-B6D0-B57F-69D61907BC38C575
Parameter #25(CF_SQL_VARCHAR) = FAF7DC7E-C6B3-BA0E-9EE406997DA65251
Parameter #26(CF_SQL_VARCHAR) = 73ADB9C6-FFAA-8029-34C2E0F52E613849
Parameter #27(CF_SQL_VARCHAR) = 88625A92-A10F-452D-BE3A955D9D570DF5
Parameter #28(CF_SQL_VARCHAR) = DB0AA5BE-BD77-CE5F-5934890875FC7FC8
Parameter #29(CF_SQL_VARCHAR) = 93258CBE-C866-E15D-C1869730F6B8716A
Parameter #30(CF_SQL_VARCHAR) = 7322B9B1-9578-6ED9-DE1F347BCFD861C4
Parameter #31(CF_SQL_VARCHAR) = 6FA9F3A3-FF46-D3C2-31BD5149894BEC09
Parameter #32(CF_SQL_VARCHAR) = 5650DDE8-96F1-B2F9-02D16497AAEAD40C
Parameter #33(CF_SQL_VARCHAR) = 2E2CCA2B-A1C0-33A1-D20A0440961B5B56
Parameter #34(CF_SQL_VARCHAR) = 5B8654DC-A076-F638-4E0E973882472AA2
Parameter #35(CF_SQL_VARCHAR) = 8397250C-FE58-2EA9-BE4D0BD1AF6F38B6
Parameter #36(CF_SQL_VARCHAR) = 12B818EE-BA05-337F-42842672BEF9F41B
Parameter #37(CF_SQL_VARCHAR) = D05D963F-F8EA-2850-CB898987EDAF674F
Parameter #38(CF_SQL_VARCHAR) = E47A73C9-01C4-C373-F51C337F28C44B1C
Parameter #39(CF_SQL_VARCHAR) = 8AFFB5BE-0D9C-29CE-F416DC6273427575
Parameter #40(CF_SQL_VARCHAR) = 30E72C16-AF74-7CDF-7E246D57D291FF75
Parameter #41(CF_SQL_VARCHAR) = DAE9A9D6-B8FE-5DB8-0CA765903E3C3F1A
Parameter #42(CF_SQL_VARCHAR) = 30F4B7A5-E2C6-2405-6173ABBB263119FD
Parameter #43(CF_SQL_VARCHAR) = E285A279-A74E-6216-8BC6F7B116807772
Parameter #44(CF_SQL_VARCHAR) = D8BA0EEE-B898-2402-2EF2FDEA66AE6571
Parameter #45(CF_SQL_VARCHAR) = 6818F056-FDE0-459C-8A833BA693938D42
Parameter #46(CF_SQL_VARCHAR) = EECA7BBF-BC1F-79DF-7B96D267E63CFE92
Parameter #47(CF_SQL_VARCHAR) = E9B87DF1-D4A4-4C92-0359C9CF2D83DA6B
Parameter #48(CF_SQL_VARCHAR) = 334720C2-A6DA-3A7F-21F192499B62C532
Parameter #49(CF_SQL_VARCHAR) = 2A721859-BE9E-B677-36365217E9415805
Parameter #50(CF_SQL_VARCHAR) = 2490D2DC-BE68-CEA4-2A77DD6095A919E0
Parameter #51(CF_SQL_VARCHAR) = 24B81677-0702-550C-913383DBD30F0618
Parameter #52(CF_SQL_VARCHAR) = 7F3AEB2E-B18E-E764-950455C6CE36CBB4
Parameter #53(CF_SQL_VARCHAR) = 7116A6AD-949B-A161-29F5EA41F086C627
Parameter #54(CF_SQL_VARCHAR) = C5EFEB4C-902C-F0BC-B0485C8A601FEFBB
Parameter #55(CF_SQL_VARCHAR) = F78F152B-BA32-4DAC-7DF6BDEC225056FD
Parameter #56(CF_SQL_VARCHAR) = EB808043-E069-34EB-6580C2110AD3CF3B
Parameter #57(CF_SQL_VARCHAR) = 19686E3F-E312-1F00-5FB87B6B3AA1E2D6
Parameter #58(CF_SQL_VARCHAR) = 3A7787B8-0C4F-3853-0CD660FEBAF67E6D
Parameter #59(CF_SQL_VARCHAR) = 566ADFA4-C4C8-1702-BB707108BCAE78A9
Parameter #60(CF_SQL_VARCHAR) = 9A67C5EF-A33F-A5EA-C1368B842275A6CB
Parameter #61(CF_SQL_VARCHAR) = 2B4B994B-C061-B1C1-B0A1B98E03F10A92
Parameter #62(CF_SQL_VARCHAR) = A580ECE8-CD9A-DDBC-1B98582676F059C4
Parameter #63(CF_SQL_VARCHAR) = 351E6823-FF2E-F83A-A8614A69E40F08C9
Parameter #64(CF_SQL_VARCHAR) = A194ECF1-F694-0F04-7D81AB2A1311BFCF
Parameter #65(CF_SQL_VARCHAR) = BAF324D6-E7F8-45ED-A99D01B2F0A88C05
Parameter #66(CF_SQL_VARCHAR) = A6ABA162-0EFC-F997-E262873FF2075886
Parameter #67(CF_SQL_VARCHAR) = 6813DD9A-00B8-C9E8-8136837BF55E5829
Parameter #68(CF_SQL_VARCHAR) = 58B1C6A2-9F97-997F-C05E7AC9FF132DB3
Parameter #69(CF_SQL_VARCHAR) = DD0380B8-EC2C-9B6D-6606DD2EA0FF1F1C
Parameter #70(CF_SQL_VARCHAR) = 0047A530-FAA1-389D-88F02C196D116CC5
Parameter #71(CF_SQL_VARCHAR) = 317F9DAD-FE3F-30EA-4E999A532B2A85DF
Parameter #72(CF_SQL_VARCHAR) = 304442E7-D9ED-AC28-8669C238A2F7E2FD
Parameter #73(CF_SQL_VARCHAR) = 148BCD29-0A3E-8982-AB967D0E5EA2322D

getCategories (Datasource=blogcfcsql, Time=0ms, Records=5) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = DC59CD2F-D380-7B51-19118C43A5100A28

getCategories (Datasource=blogcfcsql, Time=0ms, Records=7) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 89D7CC65-91E2-D439-E793946C79121A2D

getCategories (Datasource=blogcfcsql, Time=0ms, Records=4) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 92A003DD-CACF-7B68-3C6204C14F86AF0E

getCategories (Datasource=blogcfcsql, Time=0ms, Records=3) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = D57E12F8-DC99-8C40-CF12AD981A1ACB49

getCategories (Datasource=blogcfcsql, Time=0ms, Records=5) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = E2619DD0-06F5-1E06-879E142331E71821

getCategories (Datasource=blogcfcsql, Time=1ms, Records=2) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 543159AE-020F-3D84-7A003D4020846C52

getCategories (Datasource=blogcfcsql, Time=0ms, Records=7) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = C6B36982-9C29-B863-43CC747CB9C9F64F

getCategories (Datasource=blogcfcsql, Time=1ms, Records=4) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = CA8ABA61-FDAF-C4D1-378B69F98FF8BF7C

getCategories (Datasource=blogcfcsql, Time=0ms, Records=5) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = ECEE8F6B-91AA-14D8-9F56921C3762BB62

getCategories (Datasource=blogcfcsql, Time=0ms, Records=9) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 20FBA14D-B832-E8D7-958A38705AB3A53F

getCategories (Datasource=blogcfcsql, Time=0ms, Records=3) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = E094F80A-9EE1-A124-4C6AD755CB69BC2D

getCategories (Datasource=blogcfcsql, Time=0ms, Records=3) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 12BA8146-9880-FA8A-DDAE402D88B74610

getCategories (Datasource=blogcfcsql, Time=0ms, Records=3) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 3BA74F7E-C0F0-23BC-87AC22DFB9FEC662

getCategories (Datasource=blogcfcsql, Time=0ms, Records=4) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 352ABE45-E6E9-8588-91685738030F7AD6

getCategories (Datasource=blogcfcsql, Time=0ms, Records=4) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 2D51886A-F040-91D9-532C583D0C56A3B5

getCategories (Datasource=blogcfcsql, Time=0ms, Records=2) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 21859E40-973B-1FF8-668D0172DBB31F6A

getCategories (Datasource=blogcfcsql, Time=0ms, Records=7) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 6B8F2154-9962-A9BE-E2ACDC202A8ED3A6

getCategories (Datasource=blogcfcsql, Time=0ms, Records=4) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = BFBA7BA2-DAC5-F078-46D4331C0D39E4F2

getCategories (Datasource=blogcfcsql, Time=0ms, Records=4) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 39EF28EE-F71F-FD21-5A032EB32D72057B

getCategories (Datasource=blogcfcsql, Time=0ms, Records=9) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = EA1190C4-E13F-158A-2E5B173A97793CCB

getCategories (Datasource=blogcfcsql, Time=1ms, Records=9) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 0736B99A-9ACE-AFA3-BA320659B8599592

getCategories (Datasource=blogcfcsql, Time=0ms, Records=10) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 2034D86A-BE62-F59B-F3946B51880D83EE

getCategories (Datasource=blogcfcsql, Time=1ms, Records=6) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = AF80E6A2-DE77-C916-9F6E96B2E22E30A8

getCategories (Datasource=blogcfcsql, Time=0ms, Records=4) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = B1A4E108-B6D0-B57F-69D61907BC38C575

getCategories (Datasource=blogcfcsql, Time=0ms, Records=4) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = FAF7DC7E-C6B3-BA0E-9EE406997DA65251

getCategories (Datasource=blogcfcsql, Time=0ms, Records=10) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 73ADB9C6-FFAA-8029-34C2E0F52E613849

getCategories (Datasource=blogcfcsql, Time=0ms, Records=4) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 88625A92-A10F-452D-BE3A955D9D570DF5

getCategories (Datasource=blogcfcsql, Time=0ms, Records=8) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = DB0AA5BE-BD77-CE5F-5934890875FC7FC8

getCategories (Datasource=blogcfcsql, Time=0ms, Records=3) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 93258CBE-C866-E15D-C1869730F6B8716A

getCategories (Datasource=blogcfcsql, Time=0ms, Records=5) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 7322B9B1-9578-6ED9-DE1F347BCFD861C4

getCategories (Datasource=blogcfcsql, Time=0ms, Records=3) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 6FA9F3A3-FF46-D3C2-31BD5149894BEC09

getCategories (Datasource=blogcfcsql, Time=1ms, Records=9) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 5650DDE8-96F1-B2F9-02D16497AAEAD40C

getCategories (Datasource=blogcfcsql, Time=0ms, Records=12) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 2E2CCA2B-A1C0-33A1-D20A0440961B5B56

getCategories (Datasource=blogcfcsql, Time=1ms, Records=2) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 5B8654DC-A076-F638-4E0E973882472AA2

getCategories (Datasource=blogcfcsql, Time=0ms, Records=2) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 8397250C-FE58-2EA9-BE4D0BD1AF6F38B6

getCategories (Datasource=blogcfcsql, Time=0ms, Records=9) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 12B818EE-BA05-337F-42842672BEF9F41B

getCategories (Datasource=blogcfcsql, Time=0ms, Records=2) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = D05D963F-F8EA-2850-CB898987EDAF674F

getCategories (Datasource=blogcfcsql, Time=0ms, Records=5) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = E47A73C9-01C4-C373-F51C337F28C44B1C

getCategories (Datasource=blogcfcsql, Time=1ms, Records=6) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 8AFFB5BE-0D9C-29CE-F416DC6273427575

getCategories (Datasource=blogcfcsql, Time=0ms, Records=3) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 30E72C16-AF74-7CDF-7E246D57D291FF75

getCategories (Datasource=blogcfcsql, Time=1ms, Records=9) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = DAE9A9D6-B8FE-5DB8-0CA765903E3C3F1A

getCategories (Datasource=blogcfcsql, Time=0ms, Records=4) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 30F4B7A5-E2C6-2405-6173ABBB263119FD

getCategories (Datasource=blogcfcsql, Time=0ms, Records=7) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = E285A279-A74E-6216-8BC6F7B116807772

getCategories (Datasource=blogcfcsql, Time=0ms, Records=3) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = D8BA0EEE-B898-2402-2EF2FDEA66AE6571

getCategories (Datasource=blogcfcsql, Time=0ms, Records=3) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 6818F056-FDE0-459C-8A833BA693938D42

getCategories (Datasource=blogcfcsql, Time=1ms, Records=5) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = EECA7BBF-BC1F-79DF-7B96D267E63CFE92

getCategories (Datasource=blogcfcsql, Time=0ms, Records=3) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = E9B87DF1-D4A4-4C92-0359C9CF2D83DA6B

getCategories (Datasource=blogcfcsql, Time=1ms, Records=1) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 334720C2-A6DA-3A7F-21F192499B62C532

getCategories (Datasource=blogcfcsql, Time=0ms, Records=3) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 2A721859-BE9E-B677-36365217E9415805

getCategories (Datasource=blogcfcsql, Time=0ms, Records=3) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 2490D2DC-BE68-CEA4-2A77DD6095A919E0

getCategories (Datasource=blogcfcsql, Time=0ms, Records=4) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 24B81677-0702-550C-913383DBD30F0618

getCategories (Datasource=blogcfcsql, Time=0ms, Records=7) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 7F3AEB2E-B18E-E764-950455C6CE36CBB4

getCategories (Datasource=blogcfcsql, Time=0ms, Records=7) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 7116A6AD-949B-A161-29F5EA41F086C627

getCategories (Datasource=blogcfcsql, Time=0ms, Records=6) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = C5EFEB4C-902C-F0BC-B0485C8A601FEFBB

getCategories (Datasource=blogcfcsql, Time=1ms, Records=3) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = F78F152B-BA32-4DAC-7DF6BDEC225056FD

getCategories (Datasource=blogcfcsql, Time=0ms, Records=8) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = EB808043-E069-34EB-6580C2110AD3CF3B

getCategories (Datasource=blogcfcsql, Time=1ms, Records=2) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 19686E3F-E312-1F00-5FB87B6B3AA1E2D6

getCategories (Datasource=blogcfcsql, Time=0ms, Records=7) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 3A7787B8-0C4F-3853-0CD660FEBAF67E6D

getCategories (Datasource=blogcfcsql, Time=1ms, Records=5) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 566ADFA4-C4C8-1702-BB707108BCAE78A9

getCategories (Datasource=blogcfcsql, Time=0ms, Records=3) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 9A67C5EF-A33F-A5EA-C1368B842275A6CB

getCategories (Datasource=blogcfcsql, Time=0ms, Records=4) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 2B4B994B-C061-B1C1-B0A1B98E03F10A92

getCategories (Datasource=blogcfcsql, Time=0ms, Records=4) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = A580ECE8-CD9A-DDBC-1B98582676F059C4

getCategories (Datasource=blogcfcsql, Time=0ms, Records=2) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 351E6823-FF2E-F83A-A8614A69E40F08C9

getCategories (Datasource=blogcfcsql, Time=0ms, Records=5) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = A194ECF1-F694-0F04-7D81AB2A1311BFCF

getCategories (Datasource=blogcfcsql, Time=0ms, Records=1) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = BAF324D6-E7F8-45ED-A99D01B2F0A88C05

getCategories (Datasource=blogcfcsql, Time=0ms, Records=1) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = A6ABA162-0EFC-F997-E262873FF2075886

getCategories (Datasource=blogcfcsql, Time=0ms, Records=3) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 6813DD9A-00B8-C9E8-8136837BF55E5829

getCategories (Datasource=blogcfcsql, Time=1ms, Records=2) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 58B1C6A2-9F97-997F-C05E7AC9FF132DB3

getCategories (Datasource=blogcfcsql, Time=0ms, Records=2) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = DD0380B8-EC2C-9B6D-6606DD2EA0FF1F1C

getCategories (Datasource=blogcfcsql, Time=1ms, Records=5) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 0047A530-FAA1-389D-88F02C196D116CC5

getCategories (Datasource=blogcfcsql, Time=0ms, Records=4) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 317F9DAD-FE3F-30EA-4E999A532B2A85DF

getCategories (Datasource=blogcfcsql, Time=1ms, Records=4) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 304442E7-D9ED-AC28-8669C238A2F7E2FD

getCategories (Datasource=blogcfcsql, Time=0ms, Records=7) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid,categoryname
						from	tblblogcategories, tblblogentriescategories
						where	tblblogentriescategories.entryidfk = ?
						and		tblblogentriescategories.categoryidfk = tblblogcategories.categoryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = 148BCD29-0A3E-8982-AB967D0E5EA2322D

getTrackbacks (Datasource=blogcfcsql, Time=14ms, Records=0) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select count(id) as trackbackCount, entryid
				from 	tblblogtrackbacks
				where	entryid in (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
				group by entryid
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = DC59CD2F-D380-7B51-19118C43A5100A28
Parameter #2(CF_SQL_VARCHAR) = 89D7CC65-91E2-D439-E793946C79121A2D
Parameter #3(CF_SQL_VARCHAR) = 92A003DD-CACF-7B68-3C6204C14F86AF0E
Parameter #4(CF_SQL_VARCHAR) = D57E12F8-DC99-8C40-CF12AD981A1ACB49
Parameter #5(CF_SQL_VARCHAR) = E2619DD0-06F5-1E06-879E142331E71821
Parameter #6(CF_SQL_VARCHAR) = 543159AE-020F-3D84-7A003D4020846C52
Parameter #7(CF_SQL_VARCHAR) = C6B36982-9C29-B863-43CC747CB9C9F64F
Parameter #8(CF_SQL_VARCHAR) = CA8ABA61-FDAF-C4D1-378B69F98FF8BF7C
Parameter #9(CF_SQL_VARCHAR) = ECEE8F6B-91AA-14D8-9F56921C3762BB62
Parameter #10(CF_SQL_VARCHAR) = 20FBA14D-B832-E8D7-958A38705AB3A53F
Parameter #11(CF_SQL_VARCHAR) = E094F80A-9EE1-A124-4C6AD755CB69BC2D
Parameter #12(CF_SQL_VARCHAR) = 12BA8146-9880-FA8A-DDAE402D88B74610
Parameter #13(CF_SQL_VARCHAR) = 3BA74F7E-C0F0-23BC-87AC22DFB9FEC662
Parameter #14(CF_SQL_VARCHAR) = 352ABE45-E6E9-8588-91685738030F7AD6
Parameter #15(CF_SQL_VARCHAR) = 2D51886A-F040-91D9-532C583D0C56A3B5
Parameter #16(CF_SQL_VARCHAR) = 21859E40-973B-1FF8-668D0172DBB31F6A
Parameter #17(CF_SQL_VARCHAR) = 6B8F2154-9962-A9BE-E2ACDC202A8ED3A6
Parameter #18(CF_SQL_VARCHAR) = BFBA7BA2-DAC5-F078-46D4331C0D39E4F2
Parameter #19(CF_SQL_VARCHAR) = 39EF28EE-F71F-FD21-5A032EB32D72057B
Parameter #20(CF_SQL_VARCHAR) = EA1190C4-E13F-158A-2E5B173A97793CCB
Parameter #21(CF_SQL_VARCHAR) = 0736B99A-9ACE-AFA3-BA320659B8599592
Parameter #22(CF_SQL_VARCHAR) = 2034D86A-BE62-F59B-F3946B51880D83EE
Parameter #23(CF_SQL_VARCHAR) = AF80E6A2-DE77-C916-9F6E96B2E22E30A8
Parameter #24(CF_SQL_VARCHAR) = B1A4E108-B6D0-B57F-69D61907BC38C575
Parameter #25(CF_SQL_VARCHAR) = FAF7DC7E-C6B3-BA0E-9EE406997DA65251
Parameter #26(CF_SQL_VARCHAR) = 73ADB9C6-FFAA-8029-34C2E0F52E613849
Parameter #27(CF_SQL_VARCHAR) = 88625A92-A10F-452D-BE3A955D9D570DF5
Parameter #28(CF_SQL_VARCHAR) = DB0AA5BE-BD77-CE5F-5934890875FC7FC8
Parameter #29(CF_SQL_VARCHAR) = 93258CBE-C866-E15D-C1869730F6B8716A
Parameter #30(CF_SQL_VARCHAR) = 7322B9B1-9578-6ED9-DE1F347BCFD861C4
Parameter #31(CF_SQL_VARCHAR) = 6FA9F3A3-FF46-D3C2-31BD5149894BEC09
Parameter #32(CF_SQL_VARCHAR) = 5650DDE8-96F1-B2F9-02D16497AAEAD40C
Parameter #33(CF_SQL_VARCHAR) = 2E2CCA2B-A1C0-33A1-D20A0440961B5B56
Parameter #34(CF_SQL_VARCHAR) = 5B8654DC-A076-F638-4E0E973882472AA2
Parameter #35(CF_SQL_VARCHAR) = 8397250C-FE58-2EA9-BE4D0BD1AF6F38B6
Parameter #36(CF_SQL_VARCHAR) = 12B818EE-BA05-337F-42842672BEF9F41B
Parameter #37(CF_SQL_VARCHAR) = D05D963F-F8EA-2850-CB898987EDAF674F
Parameter #38(CF_SQL_VARCHAR) = E47A73C9-01C4-C373-F51C337F28C44B1C
Parameter #39(CF_SQL_VARCHAR) = 8AFFB5BE-0D9C-29CE-F416DC6273427575
Parameter #40(CF_SQL_VARCHAR) = 30E72C16-AF74-7CDF-7E246D57D291FF75
Parameter #41(CF_SQL_VARCHAR) = DAE9A9D6-B8FE-5DB8-0CA765903E3C3F1A
Parameter #42(CF_SQL_VARCHAR) = 30F4B7A5-E2C6-2405-6173ABBB263119FD
Parameter #43(CF_SQL_VARCHAR) = E285A279-A74E-6216-8BC6F7B116807772
Parameter #44(CF_SQL_VARCHAR) = D8BA0EEE-B898-2402-2EF2FDEA66AE6571
Parameter #45(CF_SQL_VARCHAR) = 6818F056-FDE0-459C-8A833BA693938D42
Parameter #46(CF_SQL_VARCHAR) = EECA7BBF-BC1F-79DF-7B96D267E63CFE92
Parameter #47(CF_SQL_VARCHAR) = E9B87DF1-D4A4-4C92-0359C9CF2D83DA6B
Parameter #48(CF_SQL_VARCHAR) = 334720C2-A6DA-3A7F-21F192499B62C532
Parameter #49(CF_SQL_VARCHAR) = 2A721859-BE9E-B677-36365217E9415805
Parameter #50(CF_SQL_VARCHAR) = 2490D2DC-BE68-CEA4-2A77DD6095A919E0
Parameter #51(CF_SQL_VARCHAR) = 24B81677-0702-550C-913383DBD30F0618
Parameter #52(CF_SQL_VARCHAR) = 7F3AEB2E-B18E-E764-950455C6CE36CBB4
Parameter #53(CF_SQL_VARCHAR) = 7116A6AD-949B-A161-29F5EA41F086C627
Parameter #54(CF_SQL_VARCHAR) = C5EFEB4C-902C-F0BC-B0485C8A601FEFBB
Parameter #55(CF_SQL_VARCHAR) = F78F152B-BA32-4DAC-7DF6BDEC225056FD
Parameter #56(CF_SQL_VARCHAR) = EB808043-E069-34EB-6580C2110AD3CF3B
Parameter #57(CF_SQL_VARCHAR) = 19686E3F-E312-1F00-5FB87B6B3AA1E2D6
Parameter #58(CF_SQL_VARCHAR) = 3A7787B8-0C4F-3853-0CD660FEBAF67E6D
Parameter #59(CF_SQL_VARCHAR) = 566ADFA4-C4C8-1702-BB707108BCAE78A9
Parameter #60(CF_SQL_VARCHAR) = 9A67C5EF-A33F-A5EA-C1368B842275A6CB
Parameter #61(CF_SQL_VARCHAR) = 2B4B994B-C061-B1C1-B0A1B98E03F10A92
Parameter #62(CF_SQL_VARCHAR) = A580ECE8-CD9A-DDBC-1B98582676F059C4
Parameter #63(CF_SQL_VARCHAR) = 351E6823-FF2E-F83A-A8614A69E40F08C9
Parameter #64(CF_SQL_VARCHAR) = A194ECF1-F694-0F04-7D81AB2A1311BFCF
Parameter #65(CF_SQL_VARCHAR) = BAF324D6-E7F8-45ED-A99D01B2F0A88C05
Parameter #66(CF_SQL_VARCHAR) = A6ABA162-0EFC-F997-E262873FF2075886
Parameter #67(CF_SQL_VARCHAR) = 6813DD9A-00B8-C9E8-8136837BF55E5829
Parameter #68(CF_SQL_VARCHAR) = 58B1C6A2-9F97-997F-C05E7AC9FF132DB3
Parameter #69(CF_SQL_VARCHAR) = DD0380B8-EC2C-9B6D-6606DD2EA0FF1F1C
Parameter #70(CF_SQL_VARCHAR) = 0047A530-FAA1-389D-88F02C196D116CC5
Parameter #71(CF_SQL_VARCHAR) = 317F9DAD-FE3F-30EA-4E999A532B2A85DF
Parameter #72(CF_SQL_VARCHAR) = 304442E7-D9ED-AC28-8669C238A2F7E2FD
Parameter #73(CF_SQL_VARCHAR) = 148BCD29-0A3E-8982-AB967D0E5EA2322D

checkC (Datasource=blogcfcsql, Time=0ms, Records=1) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryid
			from	tblblogcategories
			where	
				
				categoryid = ? 
				and blog = ?
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = DD03C90C-C8AF-277C-BADE3D00FC077B5D
Parameter #2(CF_SQL_VARCHAR) = Default

getC (Datasource=blogcfcsql, Time=0ms, Records=1) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryname, categoryalias
			from	tblblogcategories
			where	categoryid = ?
			and		blog = ?
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = DD03C90C-C8AF-277C-BADE3D00FC077B5D
Parameter #2(CF_SQL_VARCHAR) = Default

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = DC59CD2F-D380-7B51-19118C43A5100A28

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = DC59CD2F-D380-7B51-19118C43A5100A28

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 35711144-0A3F-B515-B12C35F6CD8C4303

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 37096D63-E9CE-C4D4-25ED036DA02E0325

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 4F9349DD-5004-D8DC-B93BD433C1E8E1EA

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = DD03C90C-C8AF-277C-BADE3D00FC077B5D

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = E4310D54-D8E5-8415-9043D8C7AA94615F

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = DC59CD2F-D380-7B51-19118C43A5100A28

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = DC59CD2F-D380-7B51-19118C43A5100A28

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = DC59CD2F-D380-7B51-19118C43A5100A28

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 89D7CC65-91E2-D439-E793946C79121A2D

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 89D7CC65-91E2-D439-E793946C79121A2D

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 097A3726-5004-D8DC-B92A7ACA5A0B9269

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 37096D63-E9CE-C4D4-25ED036DA02E0325

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 4F9349DD-5004-D8DC-B93BD433C1E8E1EA

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 89D7FB41-933A-8B97-26ED38E5D6626F4B

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = DD03C90C-C8AF-277C-BADE3D00FC077B5D

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = E4310D54-D8E5-8415-9043D8C7AA94615F

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = FF0FED49-C7BA-C046-97E93CF08E81557D

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 89D7CC65-91E2-D439-E793946C79121A2D

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 89D7CC65-91E2-D439-E793946C79121A2D

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 89D7CC65-91E2-D439-E793946C79121A2D

q (Datasource=blogcfcsql, Time=1ms, Records=1) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 92A003DD-CACF-7B68-3C6204C14F86AF0E

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 92A003DD-CACF-7B68-3C6204C14F86AF0E

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 02CA52D3-DADF-C0E5-30173DBB52695D0D

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 097A3726-5004-D8DC-B92A7ACA5A0B9269

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = B5E4C572-0B6A-CADD-CB2422FF379796A4

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = DD03C90C-C8AF-277C-BADE3D00FC077B5D

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 92A003DD-CACF-7B68-3C6204C14F86AF0E

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 92A003DD-CACF-7B68-3C6204C14F86AF0E

q (Datasource=blogcfcsql, Time=1ms, Records=1) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = D57E12F8-DC99-8C40-CF12AD981A1ACB49

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = D57E12F8-DC99-8C40-CF12AD981A1ACB49

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 07371662-FFE8-4BE9-9086ECD202C9F0EA

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 919AA5DC-B9AD-9889-C68358F544466881

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = DD03C90C-C8AF-277C-BADE3D00FC077B5D

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = D57E12F8-DC99-8C40-CF12AD981A1ACB49

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = D57E12F8-DC99-8C40-CF12AD981A1ACB49

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = D57E12F8-DC99-8C40-CF12AD981A1ACB49

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = E2619DD0-06F5-1E06-879E142331E71821

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = E2619DD0-06F5-1E06-879E142331E71821

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 1DC52BA8-5004-D8DC-B9EDB05B358B9902

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 7117DCCE-0DA3-7051-E894244434F24EBF

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = B2BF160C-5004-D8DC-B9A200E7B65AEF96

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = DD03C90C-C8AF-277C-BADE3D00FC077B5D

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = F3BF4938-5004-D8DC-B98BDDE512875433

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = E2619DD0-06F5-1E06-879E142331E71821

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = E2619DD0-06F5-1E06-879E142331E71821

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = E2619DD0-06F5-1E06-879E142331E71821

q (Datasource=blogcfcsql, Time=0ms, Records=1) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 543159AE-020F-3D84-7A003D4020846C52

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 543159AE-020F-3D84-7A003D4020846C52

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 4F9349DD-5004-D8DC-B93BD433C1E8E1EA

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = DD03C90C-C8AF-277C-BADE3D00FC077B5D

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 543159AE-020F-3D84-7A003D4020846C52

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 543159AE-020F-3D84-7A003D4020846C52

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 543159AE-020F-3D84-7A003D4020846C52

q (Datasource=blogcfcsql, Time=1ms, Records=1) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = C6B36982-9C29-B863-43CC747CB9C9F64F

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = C6B36982-9C29-B863-43CC747CB9C9F64F

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 07371662-FFE8-4BE9-9086ECD202C9F0EA

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 2C3D68A7-DB4B-027D-E217B754A015E894

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 2C779990-FE27-053F-8B474D62B1ED5BD9

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 629BA156-F536-BF9E-7E1C1C8FEA04D6E9

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = DD03C90C-C8AF-277C-BADE3D00FC077B5D

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = ECEF52EC-03D3-2E00-5C0C3C28CF900353

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = EF0E01AA-0B38-B6F4-9F76ECE1E47CBE76

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = C6B36982-9C29-B863-43CC747CB9C9F64F

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = C6B36982-9C29-B863-43CC747CB9C9F64F

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = C6B36982-9C29-B863-43CC747CB9C9F64F

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = CA8ABA61-FDAF-C4D1-378B69F98FF8BF7C

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = CA8ABA61-FDAF-C4D1-378B69F98FF8BF7C

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 2C779990-FE27-053F-8B474D62B1ED5BD9

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 4F9349DD-5004-D8DC-B93BD433C1E8E1EA

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 919AA5DC-B9AD-9889-C68358F544466881

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = DD03C90C-C8AF-277C-BADE3D00FC077B5D

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = CA8ABA61-FDAF-C4D1-378B69F98FF8BF7C

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = CA8ABA61-FDAF-C4D1-378B69F98FF8BF7C

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = CA8ABA61-FDAF-C4D1-378B69F98FF8BF7C

q (Datasource=blogcfcsql, Time=1ms, Records=1) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = ECEE8F6B-91AA-14D8-9F56921C3762BB62

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = ECEE8F6B-91AA-14D8-9F56921C3762BB62

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 2C3D68A7-DB4B-027D-E217B754A015E894

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = A71B8070-CABF-2900-6E64F277FCDFD92B

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = DB0B93F0-CDC9-BFCF-723687C22BD1A0D2

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = DD03C90C-C8AF-277C-BADE3D00FC077B5D

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = ECEF52EC-03D3-2E00-5C0C3C28CF900353

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = ECEE8F6B-91AA-14D8-9F56921C3762BB62

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = ECEE8F6B-91AA-14D8-9F56921C3762BB62

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = ECEE8F6B-91AA-14D8-9F56921C3762BB62

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 20FBA14D-B832-E8D7-958A38705AB3A53F

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 20FBA14D-B832-E8D7-958A38705AB3A53F

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 02C74B15-B850-9DE5-836D1E8D2B2BA27C

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 2C3D68A7-DB4B-027D-E217B754A015E894

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 35711144-0A3F-B515-B12C35F6CD8C4303

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 5D4AA9FB-9DD4-3EF8-633D19D395CD8D79

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 709BD115-5004-D8DC-B96A88BF2C97B22E

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = A71B8070-CABF-2900-6E64F277FCDFD92B

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = DD03C90C-C8AF-277C-BADE3D00FC077B5D

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = EF0E01AA-0B38-B6F4-9F76ECE1E47CBE76

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	categoryalias
		from	tblblogcategories
		where	categoryid = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = FF0FED49-C7BA-C046-97E93CF08E81557D

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 20FBA14D-B832-E8D7-958A38705AB3A53F

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 20FBA14D-B832-E8D7-958A38705AB3A53F

getRecentComments (Datasource=blogcfcsql, Time=0ms, Records=5, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select 
                    top 5 
		e.id as entryID,
		e.title,
		c.id,
		c.entryidfk,
		c.name,
		c.comment,
		
		
		    dateAdd(hh, 0, c.posted) as posted
		
		from tblblogcomments c

		inner join tblblogentries e on c.entryidfk = e.id
		where	 blog = ?
		order by c.posted desc
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = Default

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = DC59CD2F-D380-7B51-19118C43A5100A28

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = DC59CD2F-D380-7B51-19118C43A5100A28

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = DC59CD2F-D380-7B51-19118C43A5100A28

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 5A96E6B6-DAA3-5601-6FFD243A779581E8

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 5A96E6B6-DAA3-5601-6FFD243A779581E8

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 57B45FF9-FA22-00E3-3110E5B1530E3062

q (Datasource=blogcfcsql, Time=0ms, Records=1, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select	posted, alias
		from	tblblogentries
		where	id = ?
Query Parameter Value(s) -
Parameter #1(cf_sql_varchar) = 57B45FF9-FA22-00E3-3110E5B1530E3062

days (Datasource=blogcfcsql, Time=1ms, Records=5) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\org\camden\blog\blog.cfc @ 23:53:16.016
select distinct 
				
					datepart(dd, dateAdd(hh, 0, tblblogentries.posted)) 
				 as posted_day
			from tblblogentries
			where 
				dateAdd(hh, 0, tblblogentries.posted) >= ?
				and 
				dateAdd(hh, 0, tblblogentries.posted) <= ?
				and blog = ?
				and	dateAdd(hh, 0, tblblogentries.posted) <?
				and	released = 1
Query Parameter Value(s) -
Parameter #1(CF_SQL_TIMESTAMP) = 2024-07-01 00:00:00.0
Parameter #2(CF_SQL_TIMESTAMP) = 2024-07-31 23:59:59.0
Parameter #3(CF_SQL_VARCHAR) = Default
Parameter #4(cf_sql_timestamp) = 2024-07-26 23:53:16.807

months (Datasource=blogcfcsql, Time=0ms, Records=181, Cached Query) in C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\includes\pods\months.cfm @ 23:53:16.016
select datepart(yyyy, tblblogentries.posted) 
		as posted_year, datepart(MM, tblblogentries.posted) 
		as posted_month, count(*) as month_count
	from tblblogentries
	where 
		blog = ?
		and	released = 1
	group by datepart(yyyy, tblblogentries.posted), datepart(MONTH, tblblogentries.posted) 
	order by posted_year desc, posted_month desc
Query Parameter Value(s) -
Parameter #1(CF_SQL_VARCHAR) = default


Scope Variables

CGI Variables:
AUTH_PASSWORD=
AUTH_TYPE=
AUTH_USER=
CERT_COOKIE=
CERT_FLAGS=
CERT_ISSUER=
CERT_KEYSIZE=256
CERT_SECRETKEYSIZE=2048
CERT_SERIALNUMBER=
CERT_SERVER_ISSUER=C=US, O=Let's Encrypt, CN=R10
CERT_SERVER_SUBJECT=CN=cf411.com
CERT_SUBJECT=
CF_TEMPLATE_PATH=C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\index.cfm
CONTENT_LENGTH=0
CONTENT_TYPE=
CONTEXT_PATH=
GATEWAY_INTERFACE=CGI/1.1
HTTPS=on
HTTPS_KEYSIZE=256
HTTPS_SECRETKEYSIZE=2048
HTTPS_SERVER_ISSUER=C=US, O=Let's Encrypt, CN=R10
HTTPS_SERVER_SUBJECT=CN=cf411.com
HTTP_ACCEPT=*/*
HTTP_ACCEPT_ENCODING=gzip, br
HTTP_ACCEPT_LANGUAGE=
HTTP_CONNECTION=close
HTTP_COOKIE=
HTTP_HOST=www.carehart.org
HTTP_REFERER=
HTTP_URL=/blog/client/index.cfm/troubleshooting
HTTP_USER_AGENT=Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
LOCAL_ADDR=140.150.208.196
PATH_INFO=/troubleshooting
PATH_TRANSLATED=C:\inetpub\wwwroot\clients\carehart.org\www\blog\client\index.cfm
QUERY_STRING=
REMOTE_ADDR=172.69.59.22
REMOTE_HOST=172.69.59.22
REMOTE_USER=
REQUEST_METHOD=GET
SCRIPT_NAME=/blog/client/index.cfm
SERVER_NAME=www.carehart.org
SERVER_PORT=443
SERVER_PORT_SECURE=1
SERVER_PROTOCOL=HTTP/1.1
SERVER_SOFTWARE=Microsoft-IIS/10.0
WEB_SERVER_API=
URL Parameters:
CATID=DD03C90C-C8AF-277C-BADE3D00FC077B5D
MODE=cat
STARTROW=1
Debug Rendering Time: 51 ms