Closed eliataylor closed 2 years ago
at a glance, it seems like we just need to add the missing files. For example, for .app:
I created whois.app.php with:
whois.app.php
<?php require_once('whois.parser.php'); if (!defined('__APP_HANDLER__')) define('__APP_HANDLER__', 1); class app_handler { function parse($data, $query) { $r['regrinfo'] = generic_parser_b($data['rawdata']); $r['regyinfo']['referrer'] = 'whois.nic.google'; $r['regyinfo']['registrar'] = 'Charleston Road Registry Inc.'; return $r; } } ?>
found answer in https://github.com/sparc/phpWhois.org/blob/master/Handlers.md
at a glance, it seems like we just need to add the missing files. For example, for .app:
I created
whois.app.php
with: