Hey Bob, HeHe,Ok...I see what's happening now.
Since login.cfm is called directly and the request does not pass through the standard Farcry display handler template you're missing "request.navid". Which is why <skin:importcss> bombs out on ya. No problem though, try this: <!---Spoof request.navid---> <cfset request.navid = application.navid.home> <cfmodule template="[your header tempalte path]" pageTitle="Login"> Depending on how your header and footer are setup. You may need to spoof some other vars :) Let me know how this works. ~Tom >-----Original Message----- >From: Robert Everland III [mailto:[EMAIL PROTECTED] >Sent: Thursday, November 06, 2003 10:12 AM >To: FarCry Developers >Subject: [farcry-dev] RE: Custom Login > > >Variable LCSS is undefined. > > >The error occurred in >D:\Inetpub\applications\farcry_core\tags\webskin\importCSS.cfm: > line 69 Called from >D:\Inetpub\applications\fidelity_beta\webskin\includes\ifsheade >r.cfm: line 16 Called from >D:\Inetpub\applications\fidelity_beta\customadmin\login\login.c >fm: line 7 Called from >D:\Inetpub\applications\farcry_core\admin\login.cfm: line 29 > >67 : <style type="text/css" media="all"></cfoutput> >68 : <!--- loop through style sheets and import ---> >69 : <cfloop list="#lCSS#" index="styleSheet"> >70 : <cfoutput> >71 : @import >"#application.url.webroot#/css/#styleSheet#"; > >I'm using the built in style sheets in my header as suggested >on the how to. > ><cfimport taglib="/farcry/farcry_core/tags/webskin" prefix="skin"> > <skin:importCSS> > >It works if i takes those lines out, but obviously that messes >up everything else. > >Bob > >> >I did that, and what I wanted to do was include my header and >> >footer and it kept erroring out everytime I tried. Are there >> >some structures that aren't included with the custom login? >> >> What's the error message? > >--- >You are currently subscribed to farcry-dev as: >[EMAIL PROTECTED] To unsubscribe send a blank email to >[EMAIL PROTECTED] > >MXDU2004 + Macromedia DevCon AsiaPac + Sydney, Australia http://www.mxdu.com/ + 24-25 February, 2004 --- You are currently subscribed to farcry-dev as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED] MXDU2004 + Macromedia DevCon AsiaPac + Sydney, Australia http://www.mxdu.com/ + 24-25 February, 2004
