Hi folks,

i have a wierd problem. I try to port an small application (that's
working) for one of our customers from CF4/NT4 to CFMX/RH7.3.

My application.cfm is this:
------------------------------------------------------------------
<cfsetting enablecfoutputonly="Yes">

<cfapplication  name="medienverzeichnis"
                applicationtimeout="#CreateTimeSpan(0,0,30,0)#"
                sessiontimeout="#CreateTimeSpan(0,0,30,0)#"
                clientmanagement="No"
                sessionmanagement="Yes"
                setclientcookies="No">

<cflock timeout="10">
        <cfset application.ds = 'guvv_medien'>
        <cfparam name="session.artikel" default="0">
</cflock>

<cfsetting enablecfoutputonly="No">
------------------------------------------------------------------

The startingpage in this dir is the following index.cfm:
------------------------------------------------------------------
<cflock timeout="10">
<cfoutput>

<frameset cols="170,*" border="0" framespacing="0" frameborder="0">
    <frame name="navigation" src="_frame/navigation.cfm?#Session.URLToken#" 
marginwidth="0" marginheight="0" noresize scrolling="auto" border="0" framespacing="0" 
frameborder="0">
    <frame name="inhalt" src="_inhalt/start.cfm?#Session.URLToken#" marginwidth="0" 
marginheight="0" noresize scrolling="auto" border="0" framespacing="0" frameborder="0">
</frameset>

</cfoutput>
</cflock>
------------------------------------------------------------------

This one seems to load just fine. But when the navigation.cfm comes up
I get the following error:

Error Occurred While Processing Request
Element URLTOKEN is undefined in SESSION.  

The Error Occurred in 
/var/www/html/guvv-wl/medien/verzeichnisse/_frame/navigation.cfm: line 17
 
15 :    <tr align="left"><td width="155" align="left" valign="top"><a 
href="../../zeitschriften" target="main"><img src="../../_px/nav_zei_of.gif" width=155 
height=17 alt="" border=0></a></td></tr>
16 :    <tr align="left"><td width="155" align="left" valign="top"><img 
src="../../../_px/nav_trenner.gif" width="155" height="1" alt="" border="0"></td></tr>
17 :    <tr align="left"><td width="155" align="left" valign="top"><a 
href="../../verzeichnisse/<cfoutput>index.cfm?#Session.URLToken#</cfoutput>" 
target="main"><img src="../../_px/nav_med_on.gif" width="155" height="17" alt="" 
border="0"></td></tr>
18 :    <tr align="left"><td width="155" align="left" valign="top"><img 
src="../../../_px/nav_trenner.gif" width="155" height="1" alt="" border="0"></td></tr>
19 :    <tr align="left"><td width="155" align="left" valign="top"><img 
src="../../../_px/nav_blind.gif" width="155" height="20" alt="" border="0"></td></tr>


BTW: There's a lock around the session-request. And I do not have any
other application.cfm lying around.

The same pages on CFMX-RC with Windows do work.


I don't know where to go... any help?

TIA

Patric


-- 
Patric Stumpe
mailto:[EMAIL PROTECTED]

______________________________________________________________________
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to