Query user permissions only once per pageload Get all permissions at the first request, cache for others - Was making an SQL query for every permissions checking request - Now grab all permissions for the user in a single query and store them in a static cache for future requests |
|
More...
|
over 9 years ago
|
Get records directly from DB instead of iterating Do a single query to get all record info - Old code called `get_record_from_id` for every record listed - No reason for this, improved the SQL to pull it all in one query |
|
More...
|
over 9 years ago
|
Implement is_zone_secured directly in SQL Instead of calling pdnssec, do it with SQL for security and performance |
|
More...
|
over 9 years ago
|
list_zones optimization & sort fixing Performance substantially improved for list_zones.php - Improve main get_zones() query to join instead of subselect and also return DNSSEC state and zone owner. Tested with Postgres only. - Don't call 'pdnssec' from list_zones.php, instead use DNSSEC state from get_zones. - Ditto for owner fullname - Also fixes DNSSEC state checking which was not working due to checking pdnssec return code, which is '0' if the domain exists, not related to DNSSEC state |
|
More...
|
over 9 years ago
|
Sort by length(name) is not sensible, sort by name DBMSs that don't support the natsort hack should revert to lexical sort Sorting by length first doesn't make sense as a fallback here, it causes sorting such that short domains appear first in the list which is not very intuitive or useful. Revert to a lexical sort in that case. |
|
More...
|
over 9 years ago
|
Merge pull request #237 from noris-network/feature/234-UpdateOnlyChangedRecords |
|
More...
|
over 9 years ago
|
Update records only if they have been changed |
|
More...
|
over 9 years ago
|
Recompiled binary German translation file (required after changes in #229) |
|
More...
|
over 9 years ago
|
Fixes #220 - Initialise array. |
|
More...
|
over 9 years ago
|
Removed undefined variable from logging. |
|
More...
|
over 9 years ago
|
Merge branch 'master' of https://github.com/poweradmin/poweradmin |
|
More...
|
over 9 years ago
|
Removed trailing space. |
|
More...
|
over 9 years ago
|
Minor visual improvement. |
|
More...
|
over 9 years ago
|
Merge pull request #223 from ilsi/patch-1 |
|
More...
|
over 9 years ago
|
Merge pull request #229 from mariuskiessling/master |
|
More...
|
almost 10 years ago
|
Fixed a tiny typo in german translation |
|
More...
|
almost 10 years ago
|
Merge pull request #228 from darton/patch-1 |
|
More...
|
almost 10 years ago
|
update top level domains list to newest version |
|
More...
|
almost 10 years ago
|
password cleanups / added bcrypt as secure password storage |
|
More...
|
almost 10 years ago
|
cleanup |
|
More...
|
almost 10 years ago
|
fixes #50 |
|
More...
|
almost 10 years ago
|
mysql should use utf8 |
|
More...
|
almost 10 years ago
|
typo |
|
More...
|
almost 10 years ago
|
Adding support for submitting IPv4 and IPv6 update in a single request |
|
More...
|
almost 10 years ago
|
Add support for PostgreSQL |
|
More...
|
almost 10 years ago
|
Revert "FIX for #218: SRV creation is preventing use of _ character" |
|
More...
|
about 10 years ago
|
FIX for #218: SRV creation is preventing use of _ character |
|
More...
|
about 10 years ago
|
is_valid_ipv6 is now capable to suppressing error message |
|
More...
|
about 10 years ago
|
FIX issue #217: Multiple masters not allowed when adding a new slave zone |
|
More...
|
about 10 years ago
|
Fixes #215 - It was not possible to edit SOA records for administrators. |
|
More...
|
about 10 years ago
|