Poweradmin is a friendly web-based DNS administration tool for PowerDNS server. The interface supports most of the features of PowerDNS. It is a hybrid solution that uses SQL for most operations and has PowerDNS API support for DNSSEC operations.
This project is not associated with PowerDNS.com , Open-Xchange, or any other external parties. It is independently funded and maintained. If this project does not fulfill your requirements, please explore these alternative options.
This project is licensed under the GNU General Public License v3.0. See the LICENSE file for more details.
| Poweradmin | PHP | PowerDNS | MariaDB | MySQL | PostgreSQL | SQLite |
|---|---|---|---|---|---|---|
| 3.9.x | 8.1.30 | 4.5.5 | 10.11.9 | - | 16.3 | 3.45.3 |
| 3.8.x | 8.1.28 | 4.5.5 | 10.11.8 | - | 16.3 | 3.45.3 |
| 3.7.x | 8.1.2 | 4.5.3 | 11.1.2 | 8.2.0 | 16.0 | 3.40.1 |
| 3.6.x | 8.1.2 | 4.5.3 | 11.1.2 | 8.1.0 | 16.0 | 3.40.1 |
| 3.5.x | 8.1.17 | 4.5.3 | 10.11.2 | 8.0.32 | 15.2 | 3.34.1 |
| 3.4.x | 7.4.3 / 8.1.12 | 4.2.1 | 10.10.2 | 8.0.31 | 15.1 | 3.34.1 |
Install the following dependencies:
On Debian-based systems and their derivatives:
apt install php-intl php-gettext php-openssl php-filter php-tokenizer php-pdo
For MySQL/MariaDB
apt install php-mysqlnd
For PostgreSQL
apt install php-pgsql
For SQLite
apt install php-sqlite3On Red Hat Enterprise Linux (RHEL) and its derivatives:
dnf install -y php-intl php-gettext php-openssl php-filter php-tokenizer php-pdo
For MySQL/MariaDB
dnf install -y php-mysqlnd
For PostgreSQL
dnf install -y php-pgsqlDownload the project files
git clone https://github.com/poweradmin/poweradmin.gitgit checkout tags/v3.8.1Go to the installed system in your browser
install folder.To help diagnose issues, you can enable various debug settings in the inc/config.inc.php file. Below are the available
debug settings and how to enable them:
PHP Error Reporting: To display PHP errors directly in the browser, add the following lines to your index.php
or any other entry point file:
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);Logger Settings: Configure the logging settings to use the native type and debug level. Currently, these settings are used only for logging authentication issues:
$logger_type = 'native';
$logger_level = 'debug';Database Debugging: Enable or disable database debugging. When enabled, detailed database operations and errors will be logged:
$db_debug = true;DNSSEC Debugging: Enable or disable DNSSEC debugging. When enabled, detailed DNSSEC operations and errors will be logged:
$pdnssec_debug = true;LDAP Debugging: Enable or disable LDAP debugging. When enabled, detailed LDAP operations and errors will be logged:
$ldap_debug = true;By enabling these settings, you can gain more insight into the application's behavior and troubleshoot issues more effectively.
Please note that while I am open to contributions, I might only take the good parts of your submission or rewrite it to keep in sync with the overall style and structure of the project. However, I will still keep a reference to you as the original contributor. This will be mentioned in the release notes.
All contributions will be reviewed. Feedback will be provided, and you may be asked to make additional changes.
Ensure that your changes are well-tested.
Thank you for your contributions!