Skip to main content
Participant
September 12, 2017
Answered

cfprogressbar cfc bind runs only once

  • September 12, 2017
  • 1 reply
  • 315 views

I'm trying to test the first sample from here ColdFusion Help | Using the cfprogressbar tag

where cfprogressbar ... bind="cfc:pbar.getProgessData()" and the backyard code in pb.cfc

There are plenty more similar samples out there to run cfprogressbar with cfc callback bind since CF9 or so but I get all the same results.

I'm running it on ColdFusion 2016 Update 4 and it only runs once from 0% to 10%. Only one step. Tested with both IE and Chrome with F12 debugger.

In the browser debugger I see pbar.cfc?method=getProgessData& ... calls every one second as it should but the response is always the same like {"MESSAGE":"10%","STATUS":0.1}

How can fix it, any ideas, please?

UPDATE: It works only via http://localhost or https://localhost

Stuck via http://127.0.0.1 or https://127.0.0.1 or direct public available IP address or any domain name to that computer

This topic has been closed for replies.
Correct answer SideX

now runs OK

I need to check

in Server Settings > Memory Variables

and restart ColdFusion server

1 reply

SideXAuthorCorrect answer
Participant
September 12, 2017

now runs OK

I need to check

in Server Settings > Memory Variables

and restart ColdFusion server

BKBK
Community Expert
Community Expert
September 13, 2017

Hi SideX, thanks for sharing that.