Pedro Henrique
Pedro Henrique
Would a partial unmarshal work here? Since you dont need the others fields, just unmarshal on a struct with the fields that you need and are common to the tasks....
Hello @SevenOutman I think it will, but I'm not sure if we can avoid it. When using SSR we are required to have the same value rendered on the server...
Sorry for the delay, that was my first thought as well, but it will not work. The root problem is that the server MUST return the same output as the...
To enable TLS/SSL you need to edit the [default-vhost.tmpl](https://github.com/fauzie/docker-whmcs/blob/master/root/app/default-vhost.tmpl) file. You need to add another server block, something like this. ```nginx server { listen 443 ssl; ssl_certificate CERTIFICATE_LOCATION.crt; ssl_certificate_key CERTIFICATE_KEY_LOCATION.key;...
Hi, I have create a pull request to fix this issue. But in the meantime you could try see if this works for you. - Clone my repo: https://github.com/crossworth/docker-whmcs -...
@CheeseL0ver are you sure no other application is interacting with the database? I tried `0.12.3` and `master` and both works as expected. Seems like the second time not only the...
> What's the reason to support ValueScanner in this case? While I reviewed the issue I thought that the problem seems like strange, since I remembered using types with `ValueScanner`...
OK, I know why this happens. Springboot uses `spring-boot-maven-plugin` that does some repackaging, changing the default folder structure of the jar (puting the "generated jar" inside a `BOOT-INF/classes/` folder). We...