Fixed
Details
Details
Assignee
Michael Offner
Michael OffnerReporter
Scott Berry
Scott BerryPriority
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Sprint
None
Affects versions
Created 4 April 2019 at 17:07
Updated 2 September 2019 at 08:32
Resolved 2 September 2019 at 08:32
Trying to use the admin component to install an extension. I have the provider installed (Ortus) and am using a very basic call:
admin=new Administrator("server","******"); dump(admin.updateExtension('037A27FF-0B80-4CBA-B954BEBD790B460E'));
I confirmed the ID of the extension as well as have installed the extension from within the server admin. I am logged in to the admin component properly (I can run other commands successfully) and have also tried using the version variable as part of the function call, same result.
**As a side note, I did also try other extensions (cfspreadsheet for example) and got the same result.
And the result is:
lucee.runtime.exp.ApplicationException: was not able to install extension 5C558CC6-1E67-4776-96A60F9726D580F1 at lucee.runtime.config.DeployHandler.deployExtension(DeployHandler.java:279) at lucee.runtime.tag.Admin.doUpdateRHExtension(Admin.java:4207) at lucee.runtime.tag.Admin._doStartTag(Admin.java:729) at lucee.runtime.tag.Admin.doStartTag(Admin.java:341) at org.lucee.cfml.administrator_cfc$cf.udfCall4(/org/lucee/cfml/Administrator.cfc:819) at org.lucee.cfml.administrator_cfc$cf.udfCall(/org/lucee/cfml/Administrator.cfc) at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:106) at lucee.runtime.type.UDFImpl._call(UDFImpl.java:339) at lucee.runtime.type.UDFImpl.callWithNamedValues(UDFImpl.java:202) at lucee.runtime.ComponentImpl._call(ComponentImpl.java:679) at lucee.runtime.ComponentImpl._call(ComponentImpl.java:566) at lucee.runtime.ComponentImpl.callWithNamedValues(ComponentImpl.java:1934) at lucee.runtime.util.VariableUtilImpl.callFunctionWithNamedValues(VariableUtilImpl.java:845) at lucee.runtime.PageContextImpl.getFunctionWithNamedValues(PageContextImpl.java:1686) at test.misc.scott_cfm$cf.call(/test/misc/scott.cfm:5) at lucee.runtime.PageContextImpl._doInclude(PageContextImpl.java:911) at lucee.runtime.PageContextImpl._doInclude(PageContextImpl.java:803) at lucee.runtime.listener.ClassicAppListener._onRequest(ClassicAppListener.java:64) at lucee.runtime.listener.MixedAppListener.onRequest(MixedAppListener.java:43) at lucee.runtime.PageContextImpl.execute(PageContextImpl.java:2367) at lucee.runtime.PageContextImpl._execute(PageContextImpl.java:2357) at lucee.runtime.PageContextImpl.executeCFML(PageContextImpl.java:2332) at lucee.runtime.engine.Request.exe(Request.java:43) at lucee.runtime.engine.CFMLEngineImpl._service(CFMLEngineImpl.java:1045) at lucee.runtime.engine.CFMLEngineImpl.serviceCFML(CFMLEngineImpl.java:991) at lucee.loader.engine.CFMLEngineWrapper.serviceCFML(CFMLEngineWrapper.java:102) at lucee.loader.servlet.CFMLServlet.service(CFMLServlet.java:51) at javax.servlet.http.HttpServlet.service(HttpServlet.java:742) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:199) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:81) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342) at org.apache.coyote.ajp.AjpProcessor.service(AjpProcessor.java:486) at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:790) at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1459) at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) at java.lang.Thread.run(Thread.java:748)
There is nothing more in the log files that I could find.