|
Mailing Lists
|
Home /
Groups /
ColdFusion Talk (CF-Talk)
CFinclude issues
I am trying to code a cfinclude on a template page:Eileen Harberts 03/01/12 04:16 P Are you sure you need the ".." in front of the first slash? It could be a relative path issue. What errors are you getting?Bill Franklin 03/01/12 04:27 P > Thank you for your response. I did take the ".." away: <cfinclude template="/includes/sponsors.cfm"> and it still did not display the include. There are not any errors that pop up, it just does not display.Eileen Harberts 03/02/12 10:09 A Try a cfabort showerror="Here I am" in the included page. Also, try using the fully qualified path name for the include to see if that works.Bill Franklin 03/02/12 10:29 A if there is no error then the cfinclude is working, the content is simplyRuss Michaels 03/02/12 10:49 A What do you meanby it does not work, is there an error, the file is notRuss Michaels 03/01/12 04:31 P >By 'not work' I mean the include does not display. There is no error message, just a page not displaying the include.Eileen Harberts 03/02/12 10:10 A This is a stab in the dark - but it did catch me once. It's not a cfinclude on a cfincluded page, is it? I didn't bother to test it just now but I don't believe that will work.Stephens, Larry V 03/02/12 01:26 P > This is a stab in the dark - but it did catch me once. It's not aCameron Childress 03/02/12 02:11 P > This is a stab in the dark - but it did catch me once. It's not a cfinclude on a cfincluded page, is it? I didn't bother to test it just now but I don'tDave Watts 03/02/12 02:18 P >>unless youClaude_Schnéegans 03/02/12 02:21 P Aren't they all also relative to the original including templates path though even though they're nested? I feel like I got bitten by that once...Jeff Langevin 03/02/12 02:26 P > include a file that includes the file you're including.Larry Lyons 03/04/12 01:12 P >>Aren't they all also relative to the original including templates path though even though they're nested?Claude_Schnéegans 03/02/12 03:16 P Not to state the obvious, but you are trying to include it from a .cfm pageBrian Cain 03/02/12 03:35 P >>You cannot use a cfinclude on a .htm pageClaude_Schnéegans 03/02/12 03:53 P Actually you can't being an html file, it will never be run by ColdFusion,Andrew Scott 03/02/12 03:57 P Yes Andrew, that was the point I was making.Brian Cain 03/02/12 04:01 P Well the point was lost, because saying you can, implies that it can beAndrew Scott 03/02/12 05:07 P Andrew: You must have meant that for the other guy. My original reply said you cannot use cfinclude in a .htm file. I will add the addendum that being the case in a traditional server configuration.Brian Cain 03/03/12 12:04 A Actually you can... The web server can be set up to have ColdFusion process any file you want it to. I had to work on one site once where it was all ColdFusion, but all the extensions were .htm.DURETTE, STEVEN J 03/02/12 04:06 P Do a "view source"Brian Thornton 03/02/12 04:08 P Then it is not an html file then is it, if someone sets the server up toAndrew Scott 03/03/12 12:13 A I am trying to code a cfinclude on a template page: <cfinclude template="../includes/sponsors.cfm"> to show this include when its pages are displayed. The name of the include is correct, the location it is directing to is correct, but it will not work. Does someone have an easy solution to help me? Are you sure you need the ".." in front of the first slash? It could be a relative path issue. What errors are you getting? Best regards, Bill Franklin I am trying to code a cfinclude on a template page: <cfinclude template="../includes/sponsors.cfm"> to show this include when its pages are displayed. The name of the include is correct, the location it is directing to is correct, but it will not work. Does someone have an easy solution to help me? > Thank you for your response. I did take the ".." away: <cfinclude template="/includes/sponsors.cfm"> and it still did not display the include. There are not any errors that pop up, it just does not display. Thank you, Eileen Are you sure you need the ".." in front of the first slash? It could > be a relative path issue. What errors are you getting? > > Best regards, ----- Excess quoted text cut - see Original Post for more ----- Try a cfabort showerror="Here I am" in the included page. Also, try using the fully qualified path name for the include to see if that works. Freundliche Grüße / Best regards, Bill Franklin Computer Integrated Mfg. Bayer CropScience LP 8400 Hawthorne Road, Room 2447 Kansas City, MO 64120 Tel: +1 816 242 2148 Fax: +1 816 242 2047 E-mail: bill.franklin@bayer.com Web: http://www.bayercropscience.com Vorstand: Sandra E. Peterson, Vorsitzende | Lykele van der Broek, Achim Noack, Rüdiger Scheitza, Michael A. Schulz Vorsitzender des Aufsichtsrats: Werner Baumann Sitz der Gesellschaft: Monheim am Rhein | Eintragung: Amtsgericht Düsseldorf, HRB 46985 > Thank you for your response. I did take the ".." away: <cfinclude template="/includes/sponsors.cfm"> and it still did not display the include. There are not any errors that pop up, it just does not display. Thank you, Eileen Are you sure you need the ".." in front of the first slash? It could > be a relative path issue. What errors are you getting? > > Best regards, ----- Excess quoted text cut - see Original Post for more ----- if there is no error then the cfinclude is working, the content is simply not being disaplyed. Do you have a cfsetting somewhere set to only display cfoutpout maybe ? On Fri, Mar 2, 2012 at 3:28 PM, Bill Franklin <bill.franklin@bayer.com>wrote: ----- Excess quoted text cut - see Original Post for more ----- What do you meanby it does not work, is there an error, the file is not included, what? Regards Russ Michaels From my mobile On 1 Mar 2012 21:16, "Eileen Harberts" <eileen@tdai.net> wrote: ----- Excess quoted text cut - see Original Post for more ----- >By 'not work' I mean the include does not display. There is no error message, just a page not displaying the include. Thank you, Eileen What do you meanby it does not work, is there an error, the file is not ----- Excess quoted text cut - see Original Post for more ----- This is a stab in the dark - but it did catch me once. It's not a cfinclude on a cfincluded page, is it? I didn't bother to test it just now but I don't believe that will work. I'd check Firebug or IE F12 to see if it gives you a clue. >By 'not work' I mean the include does not display. There is no error message, just a page not displaying the include. Thank you, Eileen What do you meanby it does not work, is there an error, the file is not ----- Excess quoted text cut - see Original Post for more ----- > This is a stab in the dark - but it did catch me once. It's not a > cfinclude on a cfincluded page, is it? I didn't bother to test it just now > but I don't believe that will work. > For the record, that *will* work. -Cameron ... > This is a stab in the dark - but it did catch me once. It's not a cfinclude on a cfincluded page, is it? I didn't bother to test it just now but I don't > believe that will work. This will work fine, actually, just like Cameron said, unless you include a file that includes the file you're including. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized instruction at our training centers, online, or onsite. >>unless you include a file that includes the file you're including. Even this will work, provided you have a test to stop the recursive loop. Aren't they all also relative to the original including templates path though even though they're nested? I feel like I got bitten by that once... >>unless you include a file that includes the file you're including. Even this will work, provided you have a test to stop the recursive loop. > include a file that includes the file you're including. CF_Inception! >>Aren't they all also relative to the original including templates path though even though they're nested? I would say yes. Better do this in the same directory. Any way, I do not relly see a good occasion for using recursive includes, because they will all work on the same variable scope. I sometimes use recursive custom tags though. Not to state the obvious, but you are trying to include it from a .cfm page right? You cannot use a cfinclude on a .htm page. On Fri, Mar 2, 2012 at 2:16 PM, <> wrote: ----- Excess quoted text cut - see Original Post for more ----- >>You cannot use a cfinclude on a .htm page Well, actually you can, ... but it will include nothing ;-) Actually you can't being an html file, it will never be run by ColdFusion, and will only be seen as a standard html comment. -- Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/108193156965451149543 On Sat, Mar 3, 2012 at 7:53 AM, <> wrote: ----- Excess quoted text cut - see Original Post for more ----- Yes Andrew, that was the point I was making. On Fri, Mar 2, 2012 at 2:56 PM, Andrew Scott <andrews@andyscott.id.au>wrote: ----- Excess quoted text cut - see Original Post for more ----- Well the point was lost, because saying you can, implies that it can be called or used by ColdFusion. -- Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/108193156965451149543 ----- Excess quoted text cut - see Original Post for more ----- Andrew: You must have meant that for the other guy. My original reply said you cannot use cfinclude in a .htm file. I will add the addendum that being the case in a traditional server configuration. Brian Cain On Mar 2, 2012, at 4:06 PM, Andrew Scott <andrews@andyscott.id.au> wrote: ----- Excess quoted text cut - see Original Post for more ----- Actually you can... The web server can be set up to have ColdFusion process any file you want it to. I had to work on one site once where it was all ColdFusion, but all the extensions were .htm. Yes Andrew, that was the point I was making. On Fri, Mar 2, 2012 at 2:56 PM, Andrew Scott <andrews@andyscott.id.au>wrote: ----- Excess quoted text cut - see Original Post for more ----- Do a "view source" Depending on the server .html could be rendered at cfm ----- Excess quoted text cut - see Original Post for more ----- Then it is not an html file then is it, if someone sets the server up to server files to ColdFusion server, I would not consider this an html file. -- Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/108193156965451149543 On Sat, Mar 3, 2012 at 8:07 AM, Brian Thornton <Brian@cfdeveloper.com>wrote: ----- Excess quoted text cut - see Original Post for more -----
|
May 22, 2013
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||