Mauro caresimo
06/19/2023, 9:13 AMMauro caresimo
06/19/2023, 9:27 AMdswitzer
06/19/2023, 1:23 PMAdam Cameron
zackster
06/21/2023, 9:43 AMAdam Cameron
lucee-server/deploy/
, as per those docs?
I only ask cos that mechanism seems to be a way of installing an extension "on the fly" rather than "at install time"? I'd like the extensions I need "already installed" in my Docker image, rather than it being another step I need to wait to run when the container starts up (if that makes sense). EG: I wanna do it once when I create the image, not every time I start a new container.jamiejackson
06/21/2023, 6:01 PMlucee-web.xml.cfm
in the docker container).
without a s3://...
lucee mapping, i have this shown in the bundle page:
s3.extension 2.0.0.112 Jun 21, 2023 122kb S3 Resource Extension activewith a
s3://...
lucee mapping defined, an old version of the s3 extension appears (along with some of its dependencies):
s3.extension 2.0.0.112 Jun 21, 2023 122kb S3 Resource Extension active
s3.extension 0.9.4.114 Sep 8, 2017 65kb loadedthis ends up leading to OSGI errors in the app logs. could someone help me understand what's happening and how to avoid it?
Robert Zehnder
06/21/2023, 6:13 PMqueryExecute
no longer return the generatedKey? I am not seeing the value returned in query resultszackster
06/22/2023, 9:00 AMAdam Cameron
IFNULL
in QoQ with data from a MySQL DB. Cannot tie down what the actual issue is yet, but am getting there is a problem to execute sql statement on query
(nice English, btw) and incompatible data type in operation
as the detail.
The columns in question are both varchar(100)
in the DB. And in the dataset I'm seeing it on, there are no nulls, or anything else quirky about the data.
I will look more into it a bit later, just thought I'd let you know.
This is a show stopper for us upgrading to 5.4.
TBC...Simone
06/22/2023, 5:05 PM<cfquery name="getCompiled" dbtype="query">
select distinct num1 from getAssignments
union
select distinct num1 from getCompleted
</cfquery>
Adam Cameron
jamiejackson
06/23/2023, 9:41 PMcache [session] is not enabled to be used as a session/client storage, you have to enable it in the Lucee administrator.
i went to check on the configuration in the lucee admin and saw this: https://gist.github.com/jamiejackson/f700efc410e9b708ea80b76076aae58d
(attn: @bdw429s)Adam Cameron
<cfimage>
request the Image extension, etc)?
It'd be a sitter for them to be listed in this doc: https://download.lucee.org/; or if each extension had its own page perhaps.zackster
06/25/2023, 9:07 AMzackster
06/25/2023, 9:38 AMzackster
06/25/2023, 11:13 AMzackster
06/25/2023, 11:21 AMzackster
06/25/2023, 1:12 PMzackster
06/26/2023, 7:52 AMDirk
06/26/2023, 12:39 PM_this_.datasource = 'my_db'
Is it possible to access to this value inside my code directly?
I mean only the datasource name, not the datasorce configuration.zackster
06/26/2023, 8:30 PMtattva5
06/27/2023, 5:23 AM/home/tomcat/server/webapps/ROOT/coldbox/system/logging/util/FileRotator.cfc: line 55
53: <cfset zipFileName = getDirectoryFromPath(logFullPath) & fileName & "." & dateformat(now(),"yyyymmdd") & "." & timeformat(now(),"HHmmss") & ".zip">
54: <!--- Zip it --->
55: <cfzip action="zip"
56: file="#zipFileName#"
57: overwrite="true"
StackTrace:
lucee.runtime.exp.TemplateException: undefined tag [cfzip]
at lucee.transformer.cfml.tag.CFMLTransformer.tag(CFMLTransformer.java:634)
at lucee.transformer.cfml.tag.CFMLTransformer.body(CFMLTransformer.java:376)
at lucee.transformer.cfml.tag.CFMLTransformer.body(CFMLTransformer.java:384)
brettpr
06/27/2023, 10:55 AMAdam Cameron
now()throw "this should be the exception I see";
Lucee gives Missing [;] or [line feed] after expression on line 2
cos it's not parsing the code properly. I expect what CF does: this should be the exception I see on line 2
.
If CF can work out that the statement ends at now()
, then Lucee oughta be able to as well, yeah?
NB: sticking a line break in sorted me out, but still thing my laziness ought to be indulged here. Also perhaps points towards a general glitch in the code parser anyhow.seandaniels
06/27/2023, 10:48 PMharryk
06/28/2023, 1:15 PMrodyon
06/28/2023, 2:10 PMzackster
06/29/2023, 7:36 AMzackster
06/29/2023, 6:12 PMtry { .... } finally { ... }
is a thought crime