http://coldfusion.com logo
Join SlackCommunities
Powered by
# box-products
  • r

    richard.herbert

    02/03/2023, 7:16 PM
    Where can I get a copy of this old TestBox Global runner template? I so much prefer it to the current version.
    b
    • 2
    • 7
  • r

    richard.herbert

    02/03/2023, 8:22 PM
    As I’m having a session with TestBox on this new project, this time using the TestBox Test Browser, when I click on a single file I get a new tab with no content. If I click run all I see my test results. What have I get wrongly configured?
    j
    • 2
    • 16
  • a

    aaronstoddard

    02/07/2023, 4:55 PM
    Hey all, I am doing some performance tuning on a ColdBox app and using FusionReactor to view execution times around specific requests. I have the coldbox config set to cache handlers, events, and views. I have requests where coldbox.system.web.controller.cfc is running very long.
    b
    j
    • 3
    • 10
  • g

    gpickin

    02/07/2023, 5:59 PM
    @dcar7191 and @gpickin going live with the CFML News Podcast https://youtube.com/live/yAG1d0bplxM?feature=share
  • d

    danmurphy

    02/07/2023, 7:49 PM
    On our build server, we are getting an error about CommandBox not being able to install a specific version of a package that was recently published. When it errors, it lists the versions it sees (screenshot) so it is reporting back info from the package, but the newest version isn’t in the list. Locally, I can see the version no problem (1.2.1) via commandbox, install it, and I can see it on ForgeBox as well. https://forgebox.io/view/images-helper#versions. Any ideas what might be happening here?
    b
    • 2
    • 35
  • a

    Andreas

    02/08/2023, 10:45 AM
    @lmajano and Ortus... sorry for posting this here, but I know that the LATAM CFML community and the persons of interest might be bigger here. I've just published a Lucee Plugin for the Lucee Administrator that populates the Lucee Administrator (Server or Web) with Spanish. Before PR'ing the es.xml language file to the Lucee core repository (as requested by @zackster), I'd just like any spanish speaking person around to have a quick check/look on it, if possible. Please don't try this in production, cause I'm a total noob in Lucee Plugin Development and I don't want anybody to have an unfortunate surprise. Test it on a clean new instance. However, I tested the plugin extensively and it should work. After uploading the Plugin, Lucee might need a restart. Here is the link to the repository: https://github.com/andreasRu/lucee-admin-language-editor/tree/master/extension Or here is the lex extension:
    F1A3EEAF-5B7A-499C-9656DE3E103C8EA9.lex
    👍 2
    d
    • 2
    • 2
  • r

    richard.herbert

    02/08/2023, 3:33 PM
    When using
    CFConfig
    with ModCFML, can the web context .cfconfig.json file just be the differences wanted between the server context and the particular web context or do that have to be a full overwrite of the config?
    b
    • 2
    • 24
  • p

    Patrick S

    02/08/2023, 8:05 PM
    So is ColdBox 7 the current release? When I tell CommandBox to install ColdBox (or create a new app), it installs 6.8.1...
    s
    b
    • 3
    • 13
  • c

    cubortea

    02/09/2023, 2:23 AM
    Hello Guys, Currently I use docker-commandbox with image jdk11-3.6.0 (commandBox 5.6.1) with lucee 5.3.9.141 When I upgraded to jdk11-3.6.4 (commandBox 5.7.0) with the same lucee 5.3.9.141 my instances has the strange behaviour. The instances sometime suddenly down, i have a feeling when there are so many requests the CPU will get high and after that the isntance is down. FYI, currently I set the maxRequest = 200, and at busy period my instance can be 10-12 instances. in commandBox 5.6.1 I never have this problem, after I upgrade to commandBox 5.7 then I always get info if one of our isntance down. Maybe someone know about my case? is there new setting in commandBox 5.7 I have to regards ?
    b
    • 2
    • 6
  • g

    gpickin

    02/10/2023, 8:04 PM
    Ortus Software Book Club - Come join in now - Patreon and Non Patreons Alike - https://us06web.zoom.us/j/8442622062
  • j

    johnbarrett

    02/12/2023, 1:08 AM
    When I go to the CF Admin, and set null support, I am getting an error. When setting JVM in server.json I am trying to fix this error:
    Unable to update server settings.
    In memory file system limit cannot be more than JVM max heap size.
    I am looking at this page - https://commandbox.ortusbooks.com/embedded-server/configuring-your-server/jvm-args Im my server.json file I have, {
    Copy code
    "app":{
            "cfengine":"adobe@2021"
        },
        "trayEnable":"true",
        "server set JVM.heapSize=1024"
    }
    d
    b
    • 3
    • 9
  • p

    pegarm

    02/13/2023, 7:59 PM
    In Coldbox, If I wanted to organize some of my handlers in a subdirectory in the handlers folder, what do I need to do to call them? IE: If I've got handlers > subfolder > my_handler.cfc and I call /subfolder/my_handler from the URL, I'm expecting it to run the /handlers/subfolder/my_handler.cfc and execute the
    index()
    method. Instead I'm getting "The event: [subfolder.my_handler] is not a valid registered event." I'm missing something simple here. Does anyone have any "do this, you idiot" advice?
    b
    f
    • 3
    • 39
  • b

    bdw429s

    02/13/2023, 9:23 PM
    Any CFConfig users on Adobe who are using one or call of the following settings • Services > Cloud credentials • Services > Cloud Configuration • Security > IDP Configuration • Security > SP Configuration who want to help smoke test support for these settings in CFConfig for me?
    c
    • 2
    • 13
  • k

    Kannan

    02/14/2023, 4:40 AM
    Hi Team I've used the cbswagger and cbswaggerUI module for the api documentaion in the coldbox framework. I've done all the cbswagger configuration in the coldbox.cfc. There two different type of code available in my application. 1. Script based 2. Tag based 1. Script based I've used the annotation to display the endpoint with param and sample responce in the swaggerUI. See below.
    /**
    * @x-route (POST) /api/login
    * @tags Authentication
    * @requestBody ~login/requestBody.json
    * @response-default ~login/responses.json##200
    * @response-401 ~login/responses.json##401
    */
    function login( event, rc, prc ) {}
    2. Tag based
    <cffunction name="login" tags="Authentication">
    Showing only the endpoints in the swagger UI. I tried with the same annotation like script based but not working.
    <!---
    @requestBody ~login/requestBody.json
    @response-default ~login/responses.json##200
    @response-401 ~login/responses.json##401
    --->
    I want to show the endpoint with param and sample response through tag based code. How to add the param and sample response in the tag based code? Could you please advise me?
  • m

    Mauro caresimo

    02/14/2023, 1:16 PM
    Anyone know why I am getting this error on server start using commndbox
    b
    • 2
    • 3
  • d

    David Rogers

    02/14/2023, 4:32 PM
    hey anyone know if this is possible with quick? probably I'm overlooking some subselect feature or something
    • 1
    • 3
  • r

    Robert Zehnder

    02/15/2023, 8:55 PM
    I am using cbauth on a project and I was trying to find the timeout if the session is idle. Looks like it is using session storage from cbstorages, I am assuming it is tied to the session timeout in Application.cfc, but I didn't want to assume....
    e
    • 2
    • 4
  • l

    lmajano

    02/15/2023, 9:49 PM
    Ok Folks, we will be in the DC area doing ColdBox training in April right after CFSummit East https://mvc-cfsummit-east.eventbrite.com/
  • m

    Mauro caresimo

    02/16/2023, 11:30 AM
    if you have a global xml file outside of the main root, how would you configure commandbox to ensure that it references that file ?
    t
    b
    • 3
    • 7
  • c

    Cavan Vannice

    02/16/2023, 5:44 PM
    I am currently using ColdBox scheduled tasks and need to be able to scale out to multiple servers when needed. This means I need to use
    serverFixation
    and a cache. My question is, do I need to set up ACF@2021 for the Redis connection or can I set that up directly in ColdBox?
  • e

    elpete

    02/16/2023, 5:50 PM
    You can do either. CacheBox can point directly to an ACF or Lucee cache or you can use a Redis Provider directly like cbRedis: https://forgebox.io/view/cbredis
  • c

    Cavan Vannice

    02/16/2023, 6:06 PM
    @elpete Will CacheBox be able to connect via the SSL port 6380? So far, ACF2021 can't.
  • e

    elpete

    02/16/2023, 6:07 PM
    I can’t think why it couldn’t. I also can’t think why ACF couldn’t.
  • c

    Cavan Vannice

    02/16/2023, 6:08 PM
    Me either, but when I try and that port I get
    Redis Connection Verification Failed. java.net.SocketTimeoutException: Read timed out
  • j

    johnbarrett

    02/19/2023, 3:40 AM
    The Hawaii ColdFusion User Group is looking for a speaker for our March event, the topic is An Introduction to ColdBox
    a
    l
    b
    • 4
    • 14
  • l

    lmajano

    02/20/2023, 5:10 PM
    New CBSecurity v3.1 Released today! Including a new secure and random password gennerator for your applications: https://www.ortussolutions.com/blog/cbsecurity-31-released
    🙌🏻 1
    🙌 3
    🙌🏼 1
  • j

    joechastain

    02/21/2023, 8:20 PM
    Is anyone else using the
    route
    helper function in cbPlaywright on Windows? For me, I'm just passing in "/" — so `navigate( page, route( "/" ) );`— and it's giving an error "*Illegal char <:> at index 4: http://127.0.0.1:63337\/*". For some reason, it's blowing up because of the colon, which obviously is a problem since we're talking about urls here. I've traced it to the definition of the
    route
    method in
    models/PlaywrightMixins.cfm
    of the cbPlaywright project. The return value of the method,
    return variables.javaPaths.get( baseURL, javacast( "String[]", pathArray ) ).toString();
    , is calling
    javaPaths.get
    which is itself an object instantiated with the following
    variables.javaPaths = createObject( "java", "java.nio.file.Paths" );
    .
    baseURL
    is just my URL -
    <http://127.0.0.1:63337>
    - and
    pathArray
    is just
    ["/"]
    . There is no problem with the
    javacast
    portion of the line. The error is coming from the
    javaPaths.get
    call and specifically the
    baseURL
    value that is being passed in with the colon. The most I've found is here which also is referencing
    java.nio.file.Path
    , and the explanation found here, unless I'm wrong (which is very possible), suggests that this code in the
    route
    helper method won't work on Windows. I'm on v1.0.3 of cbPlaywright. I tried both ACF2021u5 and Lucee 5.3.10. Running v11.0.18 of Java and Windows 11.
    z
    • 2
    • 7
  • m

    mike42780

    02/22/2023, 7:09 PM
    I'm struggling to get a cfhttp call to work using my local instance of ACF 2021 update 5 that runs through Commandbox. Keep getting "I/O Exception: Received close_notify during handshake". After trying all kinds of things like bolthttp, etc. I committed the code and moved it to our dev server and it ran perfectly using the cfhttp call. The dev server is on a standard install of ACF 2021 Ent update 5 (not commandbox). There can't be many differences, but the one thing I noticed is the official install uses Oracles java (on 11.0.1) and commandbox uses openjdk (11.0.18). That's my only guess right now. Is there anyway to install the Oracle version of java in commandbox to test? On https://commandbox.ortusbooks.com/package-management/code-endpoints/java#installation-id it seems to only support openjdk. I tried to mess around with the box.json file under /serverJREs, but it didn't like it.
    b
    r
    m
    • 4
    • 67
  • r

    ryan

    02/22/2023, 7:39 PM
    Hi All, I'm taking on a project to convert an app to using coldbox. I'm searching for docs and/or solutions regarding how you handle coldbox with your repo. Do you include your coldbox engine files into your repo or keep them outside in order for coldbox to be updated on each server environment separately? I was thinking that maybe we use commandbox to update cbox on each server or that maybe somehow CI does this in some controlled way. What are your recommendations? As I'm thinking, probably the box.json is meant for this to help in the updating for each environment as the box.json gets sent from one environment to another and auto-updated somehow, maybe by CI or is there a way commandbox watches for box.json on each environment? Searching for this on the web as well...
    s
    d
    +2
    • 5
    • 31
  • j

    jakobward

    02/23/2023, 1:04 AM
    @jakobward has left the channel
1...222324...30Latest