Scott, I would suggest doing Mark's first suggestion. Then open the page using a product that 'used' to work (or still does work). And write down the EXACT value that is displayed for GetPageContent.PageInclude. Then compare that value to the one that is generated when you try to open your new page (that doesn't work). I am guessing that the value in the database for the working page has no initial '/' symbol, while the value for the not working page has that '/' symbol.
William -----Original Message----- From: Scott Weber [mailto:[email protected]] Sent: Thursday, February 19, 2009 2:20 PM To: cf-talk Subject: RE: cfinclude template issues All existing pages work. I'm just copying the way he did it on the old pages. I add an entry into the DB and point it to this file which is in the same sub folder as the other working ones. I added that code and on the working pages, nothing happened. On the new page I added I got the same debug message at the bottom like I posted previously. I will try your second option and see, but like I said all other pages are working. -----Original Message----- From: Gaulin, Mark [mailto:[email protected]] Sent: Thursday, February 19, 2009 3:52 PM To: cf-talk Subject: RE: cfinclude template issues Hi Scott After your </cfquery>, add this to see exactly what the query is returning: <cfdump var="#GetPageContent#"> <cfabort> The first line will dump the query (or any variable, which is very handy), and cfabort will end the page (before the error hits). If the dump doesn't show a column called PageInclude, or if that value doesn't look like a decent template name, then this query (or something) is the problem. (Remove the debugging code when you're done.) If the query looks right then add a simple <cfinclude template="..."> and hard-code the query's value as the template. Follow this by <cfabort> and your page should do the cfinclude and then stop; if you get an error then the template you are trying to include is either missing or not reachable from your page. (You can put this tag near the top of the page... All you want to verify is that cfinclude works or doesn't. Remove the cfinclude after the test.) Post your results. Thanks ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319586 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

