Brandon Brown
02/24/2023, 4:34 PMJohn Liljegren
02/24/2023, 9:13 PMJonas Eriksson
02/25/2023, 7:17 AMgsr
02/26/2023, 3:19 PMgsr
02/26/2023, 3:19 PMdanlance
02/27/2023, 5:16 PMbhartsfield
02/28/2023, 3:56 PMzackster
03/01/2023, 9:32 AMrichard.herbert
03/02/2023, 1:02 PMSorry this site is not setup correctly on our platform.
I have an ancient Lucee site that seems to have stopped working. There's no WEB-INF
folder in the webroot.sknowlton
03/02/2023, 7:06 PMPrashant S
03/03/2023, 11:12 AMromanstr
03/07/2023, 9:06 AMbdw429s
03/08/2023, 5:05 PMgetLuceeID().server.id
Marc Funaro
03/09/2023, 6:12 PMlucee/lucee:5.3.9.160-light-nginx
and Snyk is reporting 190 vulnerabilities (12 critical, 17 high, 8 medium, and 85 low) -- all apparently the result of the BASE image, tomcat:9.0.65-jdk11-openjdk-bullseye
. The Snyk interface reports an "Alternative upgrade" base image, tomcat:9-jdk11
, having only 3 medium vulnerabilities and 9 low. Is anyone else encountering this, and do you have any resolution advice?Anders Lars
03/10/2023, 2:28 AM[INFO ] Runwar: Creating deployment [default] in C:\Source\X
[INFO ] [luceedebug] Loaded luceedebug.coreinject.DebugManager@3b9632d1 with ClassLoader 'lucee.core [49]'
[INFO ] [luceedebug] attempting jdwp self connect to jdwp on 127.0.0.1:9999...
[ERROR] java.lang.NoClassDefFoundError: com/sun/jdi/Bootstrap
[ERROR] at luceedebug.coreinject.DebugManager.getConnector(DebugManager.java:74)
[ERROR] at luceedebug.coreinject.DebugManager.jdwpSelfConnect(DebugManager.java:87)
[ERROR] at luceedebug.coreinject.DebugManager.spawnWorker(DebugManager.java:60)
[ERROR] at luceedebug.LuceeTransformer.transform(LuceeTransformer.java:108)
[ERROR] at java.instrument/java.lang.instrument.ClassFileTransformer.transform(Unknown Source)
[ERROR] at java.instrument/sun.instrument.TransformerManager.transform(Unknown Source).....
Adam Cameron
03/12/2023, 6:43 PM/var/tmp
as being with in the webroot (eg so Lucee thinks I mean /var/www/var/tmp
when obviously I clearly don't). I can't find the issue in Jira. I found this one: https://luceeserver.atlassian.net/browse/LDEV-2893, which is similar (and probably same root cause), but not the exact issue.David Rogers
03/13/2023, 9:04 PMwritedump(img)
does "the right thing" and I get a typical dump, including a nice rendering of the image. but img.getBlob()
throws "missing format definition". I really want that blob! is there something I'm missing?Marc Funaro
03/15/2023, 3:56 PMFROM lucee/lucee:5.3.10.120-light-nginx-tomcat9.0-jdk11-openjdk-2303
Snyk has identified that fixes for the following are available:
org.apache.tomcat:tomcat-catalina
org.apache.tomcat:tomcat-util
org.apache.tika:tika-core
Would this be a matter of simply overwriting the files that currently exist, using new files (downloaded from...?) during the Docker build? Has anyone else manually attempted to update elements of tomcat server for security in context of Lucee?Cory Howitz
03/15/2023, 7:30 PMTony Weeg
03/15/2023, 7:37 PMCory Howitz
03/15/2023, 8:02 PMjclausen
03/16/2023, 12:35 PMErik Jespersen
03/16/2023, 5:35 PMx-www-form-urlencoded
)
My code expects an argument of type 'struct' which CF2016 is parsing from raw getHTTPRequestData().content
<cffunction name="setThing" access="remote" output="false" httpMethod="POST" returntype="struct" returnformat="JSON" description="Updates Thing">
<cfargument name="obj" required="true" type="struct" hint="JSON-parsable object />
Lucee does not transform the getHTTPRequestData().content
and keeps it as a string, so the call errors out
Invalid call of the function [setThing], first Argument [obj] is of invalid type, Cannot cast String [{"a":"Port Jarrett","b":"6235 Dena Dam","c":10036,"d":"Bode Light...] to a value of type [struct]*
Again, CF2016 has no trouble converting the exact same argument/parameter data and I do not need to independently parse it
Is this something to do with a server setting I could no longer recall?
I certainly would know how to work around it from several angles, but want to know what's up ;)
*note: fake data
jclausen
03/16/2023, 6:06 PMErik Jespersen
03/16/2023, 7:36 PMAdam Cameron
03/17/2023, 3:38 PMwriteDump([
createTimeSpan(1,0,0,0),
createTimeSpan(0,0,1440,0)
])
https://i.paste.pics/c777ed1931d1ac61f5770331eb8de5f8.png▾
jamiejackson
03/17/2023, 8:23 PMbdw429s
03/18/2023, 9:58 PMlucee.runtime.type.dt.DateTimeImpl
?abram
03/20/2023, 10:13 PMjakobward
03/21/2023, 2:25 AMjakobward
03/21/2023, 2:25 AMryan
03/21/2023, 2:33 AM<cfscript>
// Access the Task Scheduler
taskService = createObject("component", "lucee.runtime.schedule.TaskService");
// Get all tasks
tasks = taskService.listAll();
// Loop through tasks and delete failed tasks
for (task in tasks) {
if (task.status == "failed") {
taskService.remove(task.id);
}
}
</cfscript>
jakobward
03/21/2023, 2:54 PM