mirror of
https://github.com/tuxis-ie/nsedit.git
synced 2026-04-27 00:25:50 +03:00
[GH-ISSUE #119] Search returns 500 API error #70
Labels
No labels
bug
duplicate
enhancement
help wanted
invalid
pull-request
question
question
upstream
upstream
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/nsedit#70
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ruben-herold on GitHub (Sep 16, 2016).
Original GitHub issue: https://github.com/tuxis-ie/nsedit/issues/119
hi,
If I try the search I ever got an 500 API error.
@tuxis-ie commented on GitHub (Sep 16, 2016):
Version? Php-error logs? pdns Error logs?
A bit more information is useful. My primary reaction to such an issue is 'Ok, thanks for the information' and then just close the bug.
@skfigved commented on GitHub (Sep 17, 2016):
I had the same problem after updating to PowerDNS 4. In my case it was that some zones actually contained bad data which threw an 500 API error when i searched for those zones. I was able to fix the issue by identifying the bad zones and deleting the records manually in mysql
@richard-underwood commented on GitHub (Sep 19, 2016):
I had a similar problem after importing a zone from bind - there were duplicate records in the zone which needed thinning out. It was a powerdns problem, not nsedit.
@tuxis-ie commented on GitHub (Sep 19, 2016):
Ok. So mainly, the errorhandling needs to be better.
@skfigved commented on GitHub (Sep 19, 2016):
I guess it might be related to this?
https://github.com/PowerDNS/pdns/pull/4195
@tuxis-ie commented on GitHub (Sep 19, 2016):
@skf82 No. This issue is about search, not about importing. But thank you for pointing out that issue, it is something we are using. :)
@telefax commented on GitHub (Oct 8, 2016):
I just did a bulk import to pdns mysql via zone2sql and got the same problem when searching for a specific term in nsedit ui.
The httpd instance that run nsedit had nothing in its error logs.
But if you check the powerdns web statistics page (port 8081) you would see something like:
So, problem in this case was that I had a TXT record which was surrounded by extra quotes (probably had never worked at the place where the zones originates from).
Quick fix mysql query was to locate the records and then remove the extra quotes:
SELECT * FROMpowerdns_db.records where content like '""%""';So again, not an nsedit problem it self, but it's having a hard time interpreting syntax errors in zones :)
@tuxis-ie commented on GitHub (Oct 10, 2016):
Yes, we have to find out if we get these messages from PDNS. I don't know yet.
@tuxis-ie commented on GitHub (Oct 10, 2016):
I've created issue #128 for these issues.