> We're currently using Spectra 1.5.2 and I have an application > that uses the cfa_page tag along with cfa_container tags. > The application works as intended, but every so often and > seemingly at random the cfa_page tag fails and the page is > not rendered correctly - only information from some embedded > cfincludes are displayed. The only way we have found to > correct this issue is to stop the cf services and restart > them. Has anyone else heard of anything like this and what > might the solution be. We are currently in the development > phase of the application and need to find the solution before > we go to production.
We had similar problems. I was never able to stop the problem from happening on the server, but I was able to hide the symptoms from the end user by surrounding ever page with <cfoutput></cfoutput> when I realized everything not inside those tags was what was being skipped when this problem arose. I put the <cfoutput> right after the <cfa_page> and the </cfoutput> right before the </cfa_page>. Of course if you are already using <cfoutput> on your page you have to get rid of them so you dont nest them. If you are using <cfoutput> to loop through a query on the page, you either have to change that to a cfloop or put a </cfoutput> right before it and a <cfoutput right after it ends. Not the prettiest solution, it is abotu as brute force as it gets, but it made the problem go away for us and sometimes that is all you can ask for. Good luck. rw ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net http://www.cfhosting.net Message: http://www.houseoffusion.com/lists.cfm/link=i:17:5608 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/17 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:17 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.17 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54
