ColdFusion · Runtime error
What does The request has exceeded the allowable time limit mean in ColdFusion?
The page took longer to run than the configured request timeout, so ColdFusion ended it to free up the server. This is a resource protection mechanism, not a bug by itself.
The page took longer to run than the configured request timeout, so ColdFusion ended it to free up the server. This is a resource protection mechanism, not a bug by itself.
Find and fix the actual slow operation (a query, an external HTTP call, a loop) rather than only raising the timeout. If you do need to extend it with cfsetting requestTimeout inside the page, remember it sets an absolute value, not an increment: calling it again with what you think is +10 seconds resets the deadline to 10 seconds from the start, not 10 seconds from now.