bynicolas
bynicolas
now that explains why I had this issue... +1 for this feature
I'm having similar issues, I installed my cluster using `k3s` and k3s comes with `coreDNS` to manage the cluster's NS, when you install Pi-hole, I'm assuming you get some kind...
well no, from your output, the http service on which pihole's web server exists is not exposed. the `external-ip` you have is for the DNS service on the `UDP` protocol....
The issue does arise on a non-dev environment, but I don't really need the package on a production/staging server. My mistake was to use `composer upgrade` when what I really...
Your last snippet should work ``` array( 'post_type_name' => 'brand', 'singular' => __('Brand', 'my-text-domain'), 'plural' => __('Brands', 'my-text-domain'), 'slug' => 'brands' ), ``` Are you using poedit (or similar software)...
Same issue regarding history not showing up in UI I have this in the logs ``` gunicorn[5132]: detailedHistories.append(DetailedHistory(histories[i], None)) gunicorn[5132]: File "/var/www/html/pdns/powerdnsadmin/routes/admin.py", line 767, in __init__ gunicorn[5132]: detail_dict = json.loads(history.detail)...
After a bit more digging, the error I posted above stems from the `/dashboard` endpoint returning a `500` error. I still can't see the history, but maybe these these 2...
So I managed to fix the double quote issue by applying this SQL Query on the history table ``` UPDATE history SET detail = replace(detail, '\'', '"'); ``` But I...
@corubba Thanks for the snippet, it helped a lot narrowing down the issues. It actually was 2 offending records containing badly escaped comments. So I created an API key a...
> the same problem here, is there anyway to solve this the right way > > Thanks The current way of solving this is using Journal Entry to mark the...