Various variables do not appear in the debug information

Hello,
I’m looking at debug information in the log files. I’ve checked everything in the debug settings. However, the output from Lucee behaves differently than Coldfusion. On the same website, I had information about form variables and URL parameters via the Coldfusion debugger, but Lucee doesn’t output anything on this website. There are websites where Lucee outputs URL variables, but the form variable is still incorrect there.
I’m using Lucee 5.4.2.17 on a Windows Server 2019.

CF had issued the following, which Lucee is missing:

debug

I never use the debug template, but i configure it, and seems works the right vars.

image

Maybe you should be more precise in saying that vars are missing and give an example.

e.g. I use this code:

<cfoutput>
			<form action="abfrage_resultat_xls.cfm?Tabelle=#URL.Tabelle#" method="post" target="_blank" class="cSchrift_normal">
				<input type="hidden" name="Felder" value="#Form.Felder#">
				<input type="hidden" name="Region" value="#Form.Region#">
				<input type="hidden" name="Zeitpunkt" value="#Form.Zeitpunkt#">
				<input type="hidden" name="Sort" value="#Form.Sort#">
				<cfif IsDefined("FORM.Gruppen")><input type="hidden" name="Gruppen" value="#Form.Gruppen#"></cfif>
			
				<input type="submit" value="Excel-Datei" onClick="action='test.cfm?Tabelle=#URL.Tabelle#'" name="excel" class="cButton">
			</form>
		</cfoutput>

As already written. In the Coldfusion server, all variables and their contents are displayed in debug mode. In the Lucee debug logs, all variables are missing.
This is all that Lucee displays:

Do you have choose the correct scopes?

In: Debugging - Templates

image

1 Like

Thanks. I didn’t know about the templates route.

1 Like