@keerthana_hn hi, I dont think that its a good approach to put runtime models in the codebase:var/workflow/models/** The runtime model should be synced in each instance as it is a one time activity.Thanks,Milind
Hi @Suraj_Kamdi , When you create SPA react component, you have to wrap the component B in render() of component A in the react code itself. You can refer react articles for component embedding and wrapping.The only concept while embedding would be passing the required props to component B(fixed com...
@DEBAL_DAS , I was thinking in the same direction by adding :RewriteRule ^/(.*).html$ /$1 [R=301,NE,L]which strips out the html by default from all accessed URLs, but is it the only way to achieve it ?
I have a scenario where if I access:<domain>/blah-blah (non existing page) redirects me to correct 404 page.BUT, if I access :<domain>/blah-blah.html (non existing page with .html extension) redirects me to generic 404 page. Expectation :Both the scenarios should be redirecting me to custom 404 page...
Hi @aniketp1012 , PATH based servlet have following disadvantages :path-bound servlets cannot be access controlled using the default JCR repository ACLspath-bound servlets can only be registered to a path and not a resource type (i.e. no suffix handling)if a path-bound servlet is not active, e.g. if...
@geverett , the above mentioned solution by @DEBAL_DAS is appropriate and should work, however make sure : The port you are using is free to use (avoid :80 / :8080) for debug since they are generally occupied ports.Thanks.
Hi @AntonioPagotto ,You can refer this link and might be useful to you : https://stackoverflow.com/questions/47545940/when-i-run-npm-install-it-returns-with-err-code-eintegrity-npm-5-3-0Also, here is a universal solution to all EINTEGRITY errors:$ cd <project_directory>
$ rm -rf package-lock.json np...