CF 10 - deserializeJSON
Hi, in CF 9 I could do <cfset test = '[{"key1":"value1", "key2":12345, "key3":{"nestedkey1":"nestedvalue1", "nestedkey2":"nestedvalue2"}}]' /><cfset deserialized = deserializeJSON(test)...
View ArticleRe: cfloop: index loop
I just found it odd that it would increment one more time after the loop is done processing. I guess not that it really matters.. just unexpected by myself. ^_^
View ArticleRe: cfloop: index loop
It's sort of doing this, if we convert it to pseudocode: from = 1to = 4step = 1idx = from // idx = 1 is idx <= to? output Index = #idx# idx += step // idx now = 2 is idx <= to? output Index...
View ArticleProblems with client variables storage.
I have a couple of problems with my client variable storage on CF8. Storage is in a sql server db: cdata has no data.cglobal is growing very quickly. It seems that every new page request is generating...
View ArticleRe: Problems with client variables storage.
create index ixCfid on COLDFUSION_ClientVariableStore.dbo.cglobal (cfid) This seemed to help a lot with the page load times.
View ArticleRe: Webservice: Problem passing long string 8k
Thanks for your recomendations, The problem is still there. I'm doing a POST. I already did the same sample in CF9 and I don't have the problem there. The only diference is the that the CF9 is a...
View ArticleRe: Installing CF10, in Configuration and Settings Migration Wizard - getting...
Hi Oleg, Can you try this in a different browser instead of IE, if that doesn't help then try below steps. Can you please go to the ColdFusion 10 installed directory ColdFusion_root\cfsuion\bin There...
View ArticleRe: Version 9 app service still needed after upgrade to 10
Best Practise is first remove the connector from your previous server(using WSCONFIG utility) which is ColdFusion 9 in this scenario, and then check IIS manager if any thing left for ColdFusion 9 which...
View ArticleRe: Confusing collection issue - CF9/*nix
{coldfusionhome}/solr/multicore/solr.xml might be the culprit. ^_^
View ArticleColdfusion 10 + Apache + Flex2gateway + Debian/Linux
I had a battle with this, I've googled and seen more than 100 results and have not found the solution. I installed many times "Coldfusion", in different ways, in different distributions of linux and...
View ArticleRe: CF 10 - deserializeJSON
Your code example works just fine with me. Tested it with CF10 under RHEL, all the latest updaters installed.
View ArticleSetters in a component
Hi, I made the mistake of not scoping a local variable in a component's function. The variable had the same name as one of the propeties in the component, and that had the unexpected effect of...
View ArticleRe: Installing CF10, in Configuration and Settings Migration Wizard - getting...
Hi Priyank,I changed the URL from http://127.0.0.1/CFIDE/administrator/enter.cfm to http://localhost/CFIDE/administrator/enter.cfm and it took the password just fine.I'm all set, I guess.thanks,Oleg
View ArticleRe: cfmail glitches in ColdFusion 9 (not sending, but says sent)
Hi all,My post here is about understanding the cfmail 'vanished email' bug (as described by booster94 and webfoot1 on page one of this thread), and finding a solution(s) that works around it. I decided...
View ArticleRe: Coldfusion 10 + Apache + Flex2gateway + Debian/Linux
Solved. Adding this lines on /etc/apache2/mod_jk.conf : # Fix para Flex2gateway <IfModule jk_module> JkMount /*.cfm ajp13 JkMount /*.cfc ajp13 JkMount /*.do ajp13 JkMount /*.jsp ajp13...
View Articlecftooltip works on one server not another; same environment
Updating an OLD web site to newer stuff ... migrated it over to a server running Windows Web server 2008 R2. Developedment workstation is Windows 7. Both running ColdFusion 9.0.1. On the dev w/station...
View Articleerror cf with deserializeJSON
Hi everyone,I have a problem while using the function deserializeJSON.I have a request looking like this :Request: { 'config': { 'bgSubtractor': { 'config': { 'learningRate': 1e-06,...
View ArticleRe: error cf with deserializeJSON
I'm using Coldfusion 9 and it works fine for me. isNumeric(1e-06); // true jsn = '{"string":"foo","number":123.456,"scientific":1e-06}'; struct = deserializeJSON(jsn); writedump(struct); You can try...
View ArticleRe: cfmail glitches in ColdFusion 9 (not sending, but says sent)
Thanks Byron for all of the leg work you did here and then sharing it with the rest of us! I am convinced Adobe is not reading this thread. Pity. I will try your solutions on my server. Grateul,John...
View Article