Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/funzoneq/freshdns
FreshDNS AJAX based, PowerDNS administration system
https://github.com/funzoneq/freshdns
Last synced: about 1 month ago
JSON representation
FreshDNS AJAX based, PowerDNS administration system
- Host: GitHub
- URL: https://github.com/funzoneq/freshdns
- Owner: funzoneq
- License: gpl-2.0
- Archived: true
- Created: 2013-12-03T09:24:40.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2019-07-31T10:44:42.000Z (over 5 years ago)
- Last Synced: 2024-08-02T12:44:05.665Z (4 months ago)
- Language: PHP
- Size: 435 KB
- Stars: 9
- Watchers: 5
- Forks: 7
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: license.txt
Awesome Lists containing this project
- awesome-starred - funzoneq/freshdns - FreshDNS AJAX based, PowerDNS administration system (others)
README
freshdns
========FreshDNS AJAX based, PowerDNS administration system
# Installation
Upload the files to /var/www/freshdns/ and go to http://localhost/freshdns/install.phpReplace the default values of config.inc.php with the values from installation
cp config.inc.default.php config.inc.php
vi config.inc.phpGo to http://localhost/freshdns/install.php?p=install_db and create an admin user and finish the install.
Remove the installation files:
rm class/class.install.php install.php
# Upgrade notes
## 1.0.3 or below --> 1.0.5 or above
* Run the sql queries in sql_upgrade/mysql.103.104.sql and sql_upgrade/mysql.104.105.sql
* Adapt your config.inc.php to the changes in config.inc.default.php, especially as follows:
* Use the PDO Data Source Name syntax for the database connection
//...
$config['DB']['master_dsn'] = 'mysql:dbname=pdns;host=127.0.0.1';
$config['DB']['slave_dsns'] = array('mysql:dbname=pdns;host=127.0.0.1','mysql:dbname=pdns;host=127.0.0.1');
//...
* remove the lines starting with 'include_once(...)' and all below