displaying top 100 results
Tracker Comment Comment on Java Heap Space OutOfMemoryError using CFINDEX after installation of Update 12 by Eric B.
3076497 CF-4198615 Eric B. Now running the following script using the same set of files on my local PC with CF12u12:
LOCAL.Directory = "C:\Docs";
LOCAL.aFiles =
DirectoryList(LOCAL.Directory, false, "name", "*.pdf", "name asc", "file");
for (LOCAL.i=1; LOCAL.i<=ArrayLen(LOCAL
Tracker Comment Comment on Local scope is broken outside of CFCs by Rupesh K.
Comment on Local scope is broken outside of CFCs by Rupesh K.
Comment on Bug 83395:(Watson Migration Closure)setLocale() and getLocale() give inconsistent results for some locales in the server by External U.
[LOC]: HotFix Update details in the Update section is not localized.
Tracker Issue Strange Happenings with UTC Conversions
2837511 CF-4198327 Core Runtime Steve Sommers Strange Happenings with UTC Conversions Problem Description: DateTime comparisons seem to apply an underlying hidden time zone indicator to the comparison
Steps to Reproduce:
local.dttm1 = createDateTime(2017,02,01,01,00,00);
local.dttm1UTC = dateConvert('local
Tracker Issue Bug 83395:(Watson Migration Closure)setLocale() and getLocale() give inconsistent results for some locales in the server
Bug 83395:(Watson Migration Closure)setLocale() and getLocale() give inconsistent results for some locales in the server
Tracker Issue Bug 82474:(Watson Migration Closure)just noticed that some of the supported locales are doubling up in the Server
Bug 82474:(Watson Migration Closure)just noticed that some of the supported locales are doubling up in the Server
Tracker Comment Comment on Locale error on "Coldfusion Collections" page in Coldfusion Administrator by Piyush K.
Comment on Locale error on "Coldfusion Collections" page in Coldfusion Administrator by Piyush K.
Comment on Bug 84833:(Watson Migration Closure)[ANeff] Bug for: Clearing local scope odd behavior (ignore #84831)Please disregard #84831 by External U.
Tracker Comment Comment on Var scope continues to be in effect even after local-scoped variable becomes null by Vijay M.
Comment on Var scope continues to be in effect even after local-scoped variable becomes null by Vijay M.
Tracker Comment Comment on Local Documentation is missing by External U.
Comment on Local Documentation is missing by External U.
Comment on Bug 83395:(Watson Migration Closure)setLocale() and getLocale() give inconsistent results for some locales in the server by External U.
Tracker Issue Set Auto Start for the Local Server
Set Auto Start for the Local Server
Tracker Comment Comment on Unexpected behaviour from setLocale when used inside cfthread by External U.
Comment on Unexpected behaviour from setLocale when used inside cfthread by External U.
Comment on en_BR must be one of the ColdFusion supported locales by Nikhil S.
Tracker Comment Comment on Local Documentation is missing by Vamseekrishna N.
Comment on Local Documentation is missing by Vamseekrishna N.
Tracker Comment Comment on Local Documentation is missing by External U.
Comment on Local Documentation is missing by External U.
Tracker Comment Comment on Local Documentation is missing by External U.
Comment on Local Documentation is missing by External U.
Tracker Comment Comment on Turkish Java Locale > Empty pages by External U.
Comment on Turkish Java Locale > Empty pages by External U.
Comment on Bug 80552:Use of "LOCAL" inside a cffunction is broken by External U.
6048839 CF-4204933 A. B. Let's then apply the code I gave you:
string function convertLocalToUTC (date localDatetime, string timezone) {
var localFormat=createobject("java","java.text.SimpleDateFormat").init("yyyy-MM-dd HH:mm:ss");
var local
6048839 CF-4204933 A. B. For the time being, you might like to use the following functions:
string function convertUTCToLocal (date utcDatetime, string timezone) {
var utcFormat=createobject("java","java.text.SimpleDateFormat").init("yyyy-MM-dd HH:mm:ss");
var utc
[ANeff] Bug for: Import Local Server fails for local server
Bug 82450:(Watson Migration Closure)[ANeff] ER for: LocalScope="true|false" + functionLocalScope()1) "useLocalScope" (boolean) attribute to cfcomponent & cffunction2) functionLocalScope() (suggested by Elliott
Var scope continues to be in effect even after local-scoped variable becomes null
Tracker Issue Explicit Local variable for closure should work out of its own localscope object, instead of parents localscope.
Explicit Local variable for closure should work out of its own localscope object, instead of parents localscope.
Tracker Comment Comment on Local Documentation is missing by External U.
Comment on Local Documentation is missing by External U.
4761395 CF-4203297 Aaron N. In above, unscoped testvar='c' (and testvar &= 'c') writes to variables scope (bad).
In below, unscoped testvar='c' writes to local scope (bad).
function f() {
var testvar='c'
local.delete('c')
local.clear()
testvar='c'
writeDump(local
Tracker Issue [ANeff] Bug for: local scope has THIS in .cfm
[ANeff] Bug for: local scope has THIS in .cfm
Tracker Issue `var` keyword is not honored within cfcatch tag
5337834 CF-4204008 Language `var` keyword is not honored within cfcatch tag Problem Description: Declaring local variables using the `var` keyword doesn't work within the body of a cfcatch tag.
Steps to Reproduce:
{code:java}
{code}
Actual Result: The `catch
Tracker Comment Comment on [ANeff] Bug for: Code Analyzer doesn't warn when assigning local to non-struct by External U.
Comment on [ANeff] Bug for: Code Analyzer doesn't warn when assigning local to non-struct by External U.
Tracker Comment Comment on Issue using "DateConvert("local2Utc",now())" with cfqueryparam by External U.
Comment on Issue using "DateConvert("local2Utc",now())" with cfqueryparam by External U.
Comment on Bug 80552:Use of "LOCAL" inside a cffunction is broken by External U.
[ANeff] Bug for: Code Analyzer doesn't warn when assigning local to non-struct
Tracker Comment Comment on Rasing bug#3495357 again because you didn't look into the problem before closing it. by External U.
2611074 CF-3644083 External U. Another thing to note, now I am not sure this is a grails thing or its how closures should work. But in the grails docs while explaining how closures works it shows something like this
def localMethod() {
def localVariable = new java.util.Date()
return { println
Comment on Bug 79277:Here’s the original function that’s bombing (my indents don’t seem to be preserved when I post):local = header() />local = local & "
Welcome!
" />Tracker Comment Comment on Bug 74323:In CF9, a LOCAL-scope variable can overwrite an ARGUMENT-scope variable having the same name by External U.
Comment on Bug 74323:In CF9, a LOCAL-scope variable can overwrite an ARGUMENT-scope variable having the same name by External U.
Tracker Issue Bug 74842:The new handling of local scope breaks included files relying on local variables
Bug 74842:The new handling of local scope breaks included files relying on local variables
Tracker Comment Comment on As a Cluster of Servers, I want to store SESSION data outside of local RAM by External U.
Comment on As a Cluster of Servers, I want to store SESSION data outside of local RAM by External U.
Comment on en_BR must be one of the ColdFusion supported locales by External U.
Tracker Comment Comment on Remove rule that one cannot declare and argument and a VAR with the same name by External U.
2611698 CF-3600334 External U. The arguments scope and local scope are two separate scopes. There's no reason why a developer shouldn't be able to have local.foo and arguments.foo.
Tracker Comment Comment on Local Documentation is missing by External U.
Comment on Local Documentation is missing by External U.
Tracker Comment Comment on DateConvert("local2Utc",now()) Breaks Other Date/Time Functions by External U.
Comment on DateConvert("local2Utc",now()) Breaks Other Date/Time Functions by External U.
Tracker Comment Comment on LOCAL scope variable undefined inside object literal in function call by External U.
Comment on LOCAL scope variable undefined inside object literal in function call by External U.
Tracker Comment Comment on Turkish Java Locale > Empty pages by External U.
Comment on Turkish Java Locale > Empty pages by External U.
Tracker Comment Comment on Turkish Java Locale > Empty pages by External U.
Comment on Turkish Java Locale > Empty pages by External U.
Tracker Comment Comment on Turkish Java Locale > Empty pages by External U.
Comment on Turkish Java Locale > Empty pages by External U.
Tracker Comment Comment on Turkish Java Locale > Empty pages by External U.
Comment on Turkish Java Locale > Empty pages by External U.
Comment on Bug 78715:The new, implicit "local" scope within a breaks backwards compatibility with previous versions of CF when creating a var'd variable called "local" by External U.
Comment on Bug 78715:The new, implicit "local" scope within a breaks backwards compatibility with previous versions of CF when creating a var'd variable called "local" by External U.
Comment on Bug 78715:The new, implicit "local" scope within a breaks backwards compatibility with previous versions of CF when creating a var'd variable called "local" by External U.
Tracker Comment Comment on [ANeff] Bug for: Import Local Server fails for local server by External U.
Comment on [ANeff] Bug for: Import Local Server fails for local server by External U.
Comment on [ANeff] Bug for: Import Local Server fails for local server by Adobe D.
Tracker Comment Comment on [ANeff] Bug for: Import Local Server fails for local server by External U.
Comment on [ANeff] Bug for: Import Local Server fails for local server by External U.
Comment on Locally scoped variables with null values may see scope bleed by Dan S.
Tracker Comment Comment on Var scope continues to be in effect even after local-scoped variable becomes null by A. B.
Comment on Var scope continues to be in effect even after local-scoped variable becomes null by A. B.
6048839 CF-4204933 A. B. dateConvert("utc2local", dateObj) and dateConvert("local2utc", dateObj) are crucial conversion functions
5318804 CF-4203997 John V. This is rather annoying. My local env running the same version works fine but pushing code to production throws the error. I need to know that code developed locally will work when pushed to production.
Tracker Issue Local scope is broken outside of CFCs
Local scope is broken outside of CFCs
Tracker Issue CFLDAP result cannot be in LOCAL scope
CFLDAP result cannot be in LOCAL scope
Tracker Comment Comment on [LOC]: HotFix Update details in the Update section is not localized. by Divya D.
Comment on [LOC]: HotFix Update details in the Update section is not localized. by Divya D.
Tracker Comment Comment on As a Cluster of Servers, I want to store SESSION data outside of local RAM by External U.
Comment on As a Cluster of Servers, I want to store SESSION data outside of local RAM by External U.
Tracker Comment Comment on Default local scope in variables declared within functions by External U.
Comment on Default local scope in variables declared within functions by External U.
Tracker Comment Comment on Turkish Java Locale > Empty pages by External U.
Comment on Turkish Java Locale > Empty pages by External U.
Tracker Comment Comment on Bug introduced in ColdFusion 9 still plagues us today - session scope gets trashed by External U.
example
writeDump(session) would dump the session as writeDump(local) wold dump the local scope.
But
writeDump(local.session) should dump the variable defined in the local scope.
Comment on Bug 80552:Use of "LOCAL" inside a cffunction is broken by External U.
Comment on Bug 80552:Use of "LOCAL" inside a cffunction is broken by External U.
Comment on Bug 80552:Use of "LOCAL" inside a cffunction is broken by External U.
Comment on [ANeff] Bug for: local scope has THIS in .cfm by Vijay M.
Bug 78715:The new, implicit "local" scope within a breaks backwards compatibility with previous versions of CF when creating a var'd variable called "local"
[ANeff] Bug for: arraySort() syntax missing localeSensitive
[ANeff] Doc Bug for: lsTimeFormat() locale parameter undocumented
ARGUMENTS scope taking precedence over LOCAL scope in CFSET
Tracker Comment Comment on ColdFusion 11 Updates do NOT install when ColdFusion is running as local user account by External U.
Comment on ColdFusion 11 Updates do NOT install when ColdFusion is running as local user account by External U.
2673081 CF-4152476 External U. Some important notes from Adam's post:
1) "struct" refers to the configuration struct. Example:
{direction="ASC|DESC", on="key|value", type="text|numeric", caseSensitive=boolean(false), locale="fr_FR"}
2) The locale parameter should accept locale name (as shown
Comment on en_BR must be one of the ColdFusion supported locales by Nikhil S.
Tracker Comment Comment on Local Documentation is missing by External U.
Comment on Local Documentation is missing by External U.
Tracker Comment Comment on DateConvert("local2Utc",now()) Breaks Other Date/Time Functions by External U.
Comment on DateConvert("local2Utc",now()) Breaks Other Date/Time Functions by External U.
2682311 CFB-4126170 External U. Sorry for the delay as I was not notified that you had commented. The issue is that I cannot install a local instance of CF (org policy is no server products on local machines, and nothing to the root) only CF Builder. In the configuration I mentioned (local
Comment on [ANeff] Bug for: Import Local Server fails for local server by Adobe D.
6551050 CF-4206264 Toby W. We dont copy s3 to s3, only local to s3.
Can you do the test at the basic level and just copy local to local. Even though it is still a low time to transfer, its still 3-4 times worse (as per my results above)
What size file are you using? Could you use something around
Tracker Issue Bug 84833:(Watson Migration Closure)[ANeff] Bug for: Clearing local scope odd behavior (ignore #84831)Please disregard #84831
Bug 84833:(Watson Migration Closure)[ANeff] Bug for: Clearing local scope odd behavior (ignore #84831)Please disregard #84831
Tracker Issue TimeFormat Function Bug w/Local2Utc
TimeFormat Function Bug w/Local2Utc
Tracker Comment Comment on Local scope is broken outside of CFCs by External U.
Comment on Local scope is broken outside of CFCs by External U.
Tracker Issue Installer option to install local documentation
Installer option to install local documentation
2598132 CF-3041704 External U. A workaround is to prefix the "out" parameter values. So this:
{fields='f', stream='s', getItemResult='g', url=theURL}
becomes:
{fields='local.f', stream='local.s', getItemResult='local.g', url=theURL}
f, s and g are then written to the local scope instead
starts with a previous parameter’s name.
Steps to Reproduce:
local.sql = "
INSERT INTO testTable
(url
,urlVariables)
VALUES
(:url
,:urlVariables);
";
local.params = {
"url" = {value="http://www.example.com/test.cfm", cfsqltype="cf_sql_varchar", maxLength="8000"},
"urlVariables" = {value
Bug 84831:[ANeff] Bug for: CF8 vs CF9 regarding local scope (another one)CF9 writes unscoped variables to variables scope *only if same-named local-scope'd variable wasn't previously defined*
Tracker Comment Comment on Rasing bug#3495357 again because you didn't look into the problem before closing it. by External U.
this, well maybe if the docs that Adobe put together it might make our jobs easier.
But the docs is not the issue.
When I ran into issues with local vars getting trashed, I started to look at how ColdFusion can get this so wrong. So I raised a ticket and you marked it as not worth the effort.
Well
defaultLocal server’s Port reads 8600 but web browser uses 8500 to display .cfm page
Tracker Issue incorrect serialization of undefined values.
:
function test(a, b, c) {
writeDump(arguments); // shows initial structure
cfwddx(action="cfml2wddx", input=arguments, output="local.payload");
writeDump(local.payload); // shows incorrect conversion of undefined argument c to empty string during serialization
writeOutput(htmlCodeFormat(local
Tracker Issue incorrect serialization of undefined values.
:
function test(a, b, c) {
writeDump(arguments); // shows initial structure
cfwddx(action="cfml2wddx", input=arguments, output="local.payload");
writeDump(local.payload); // shows incorrect conversion of undefined argument c to empty string during serialization
writeOutput(htmlCodeFormat(local
Tracker Issue incorrect serialization of undefined values.
:
function test(a, b, c) {
writeDump(arguments); // shows initial structure
cfwddx(action="cfml2wddx", input=arguments, output="local.payload");
writeDump(local.payload); // shows incorrect conversion of undefined argument c to empty string during serialization
writeOutput(htmlCodeFormat(local
Tracker Comment Comment on DateConvert Function seems corrupt. by Chris J.
4486139 CF-4202965 Chris J. The following example also produces the dateConvert() bug:
variables.localTime = createODBCDateTime("{ts '2019-03-13 17:48:00'}");
variables.currentUtc = dateConvert('local2Utc', variables.localTime);
variables.targetUtc = createODBCDateTime('3/13/2019 10
Bug 80153:[JFERNANDES] CFThread within a loop inside cffunction breaks local scope
Tracker Issue Argument is not treated as a struct by Query functions
5997941 CF-4204882 Language Argument is not treated as a struct by Query functions Problem Description:
Within a function, the Arguments scope is a struct, also accessible via `Local.Arguments`.
This struct is not treated as such by the query functions of CFML. Specifically, when attempting to add
Comment on [ANeff] Bug for: local scope has THIS in .cfm by Aaron N.
Tracker Issue Local Application setting randomly lost
Local Application setting randomly lost
2597972 CF-3041882 Reporting : CFReport Henry Ho Bug 83814:(Watson Migration Closure)currenly, CF will only uses lib/cffont Problem:
currenly, CF will only uses lib/cffont.properties.#defaultLocale# but does not respect locale set by setLocale(). It'd be more flexible if cfreport
Bug 82861:If you have a function with cfthread in it, and use local