Link to home
Start Free TrialLog in
Avatar of Lmillard
Lmillard

asked on

cfimport not working in Railo

Hi,
I have just downloaed Railo and copied one of my simple CF sites over to test but cfimport does not seem to be working.

I use cfimport as below to bring in the top and bottom of every page and send variables to the template.

Has anyone come across this before?

Regards
Leigh

THIS IS THE TOP OF THE INDEX.cfm PAGE THE CFIMPORT TAG IS CALLED ON EVERY PAGE

<cfimport prefix="banilla" taglib="assets/templates/" />
<banilla:public section="Root" 
					page="Index" 
                    thickbox="False" 
                    Title="" 
                    description="" 
                    keywords=""
                    robots="True">



THIS IS THE CFM PAGE THAT IS IMPORTED (IN THIS CASE PUBLIC.CFM)


<cfif not isDefined('thisTag.executionMode')>
  <cfabort />
</cfif>
<!---Start: set defaults for the "clickKclic: public template--->
<cfparam name="attributes.title" default="Pat McKeown" />
<cfparam name="attributes.description" default="" />
<cfparam name="attributes.keywords" default="Pat McKeown" />
<cfparam name="attributes.section" default="Root" />
<cfparam name="attributes.page" default="Index" />
<cfparam name="attributes.tabs" default="false" type="boolean" />
<cfparam name="attributes.thickbox" default="false" type="boolean" />
<cfparam name="attributes.robots" default="true" type="boolean" />
<cfparam name="attributes.footer" default="true" type="boolean"/>
<cfparam name="attributes.gallery" default="false" type="boolean"/>


<cfswitch expression="#thistag.hasendtag#">

<cfcase value="NO">
  <!---START: PAGE HEADER--->
  
  
  
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<cfif attributes.robots>
        <meta name="robots" content="index,follow" />
    <cfelse>
        <meta name="robots" content="noindex,nofollow" />
    </cfif>
	<cfoutput>
        <title>#attributes.title#</title>
        <meta name="description" content="#attributes.description#" />
        <meta name="keywords" content="#attributes.keywords#" />
        <meta name="Author" content="Banilla" />
        <meta name="Copyright" content="Copyright #year(now())# #Application.Client#" />
        <meta name="MSSmartTagsPreventParsing" content="true" />
		<link rel="shortcut icon" href="faveicon.ico" type="image/x-icon" />
		<link rel="stylesheet" type="text/css" href="#Application.SecureHttpPath#assets/styles/Public.css"/>
		<link rel="stylesheet" type="text/css" href="#Application.SecureHttpPath#assets/styles/Blog.css"/>
        <cfif attributes.gallery>
		<link rel="stylesheet" href="#Application.HttpPath#Assets/Styles/galleriffic-3.css" type="text/css" />
		<cfelse>
		<link rel="stylesheet" href="#Application.HttpPath#Assets/Styles/galleriffic-2.css" type="text/css" />
        </cfif>
		<script type="text/javascript" src="#Application.HttpPath#Assets/scripts/jquery.js"></script>
		<script type="text/javascript" src="#Application.HttpPath#Assets/scripts/webshop.js"></script>
		<script type="text/javascript" src="#Application.HttpPath#Assets/scripts/blog.js"></script>
		<script type="text/javascript" src="#Application.HttpPath#Assets/scripts/jquery.galleriffic.js"></script>
		<script type="text/javascript" src="#Application.HttpPath#Assets/scripts/jquery.opacityrollover.js"></script>
		<!-- We only want the thunbnails to display when javascript is disabled -->
		<script type="text/javascript">
			document.write('<style>.noscript { display: none; }</style>');
		</script>
    </cfoutput>
</head>
<body>

<div id="topBar"></div>

<div id="pagewrapper">

<div id="blanket"></div>

<div class="contentblock" style="margin-bottom:20px">


<cfoutput>
<div id="menubar">
<div id="logobox"><img src="#Application.HttpPath#assets/Img/frontend/logo.png" alt="logo" /></div>
<div id="menubox">
<cfinclude template="../include/MenuTop.cfm">
</div>
</div>
</cfoutput>

<div id="contentheader">

</div>



<div id="popupboxholder" style="position:absolute; left:0px; width:900px; display:none; z-index:1001;">
<div id="popupboxfixer" 
	style="position:fixed; 
            top:10%;
            width:900px;
            display:none; 
            z-index:1001;">
            <div id="popupbox" style="margin:0 auto;
                                        background-color:#FFFFFF; 
                                        border:3px solid #84b818; 
							            max-height:500px;
                                        overflow:auto;
                                        display:none; 
                                        z-index:1001;">
            </div>
            </div>

</div>










  </cfcase>

  <!---END: PAGE HEADER--->
<cfcase value="YES">
  <!---START: PAGE FOOTER--->
  
<div id="contentbottom">
	
</div>
<div id="footer">

</div>

</div>
</div>


</body>
</html>
  <cfabort>
  </cfcase>
  <!---END: PAGE FOOTER--->
</cfswitch>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Jones911
Jones911

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial