Documentation improvements

This commit is contained in:
Pinga 2024-07-30 12:14:24 +03:00
parent ea6a79b5c5
commit dd6625f578
5 changed files with 123 additions and 9 deletions

View file

@ -291,4 +291,4 @@ location /dbtool.php {
In conclusion, this detailed configuration guide aims to streamline the setup process of the Namingo system for users of all expertise levels. The guide meticulously details each configuration file, providing clear explanations and guidance for customization to suit your specific needs. This approach ensures that you can configure Namingo with confidence, optimizing it for your registry management requirements. We are committed to making the configuration process as straightforward as possible, and we welcome any questions or requests for further assistance. Your successful deployment and efficient management of Namingo is our top priority.
After finalizing the configuration of Namingo, the next step is to consult the [Initial Operation Guide](docs/iog.md). This guide provides comprehensive details on configuring your registry, adding registrars, and much more, to ensure a smooth start with your system.
After finalizing the configuration of Namingo, the next step is to consult the [Initial Operation Guide](iog.md). This guide provides comprehensive details on configuring your registry, adding registrars, and much more, to ensure a smooth start with your system.

View file

@ -0,0 +1,48 @@
# Guide to Adding Custom Pricing per Registrar
To add custom pricing per registrar in the domain price and domain restore price tables using Adminer, follow these steps:
## 1. Access Adminer:
Log in to your Adminer interface with your database credentials.
## 2. Navigate to the Correct Table:
- For general pricing, select the `domain_price` table.
- For restoration pricing, select `the domain_restore_price` table.
## 3. Add a New Row:
Click on the "Insert" tab at the top of the page to add a new record.
## 4. Fill in the Details:
- tldid: Enter the ID corresponding to the TLD (Top-Level Domain) you want to set the price for.
- registrar_id: Enter the ID of the registrar for whom you are setting the custom pricing. This field is crucial for setting registrar-specific pricing.
- command (only in the domain price table): Select the operation you are pricing for: 'create', 'renew', or 'transfer'.
### Price Fields:
For domain price:
- Enter the prices for each term (e.g., m0 for 0 months, m12 for 12 months, etc.). Ensure to fill in at least the relevant fields.
For domain restore price:
- Enter the price in the price field.
## 5. Save the Entry:
Once all the necessary details are filled in, click "Save" or "Insert" at the bottom of the form.
## Important Notes:
- *Unique Registrar Pricing:* Ensure that you specify the registrar_id correctly to apply the custom pricing for that specific registrar. **Leaving this field NULL will cause issues with the default price.**
- *Operation Specificity:* In the domain price table, the command field determines the specific operation (create, renew, transfer) the pricing applies to. Make sure to select the correct operation.
- *Accuracy:* Double-check the pricing fields to ensure that they are accurately filled in, as these will directly affect billing.
By following these steps, you can effectively manage custom pricing for different registrars using Adminer.

View file

@ -1,4 +1,4 @@
# Minimal Data Set Documentation
# Minimum Data Set Documentation
This document provides guidance on transitioning to the Minimum Data Set for domain registration data. This change requires registries to update their systems to stop accepting specific contact data for domain names. The purpose of this document is to provide an overview of the Minimum Data Set, how to activate it in your configuration files, and the implications of this change.

View file

@ -1,4 +1,4 @@
# Namingo Upgrade Guide (from v1.0.0-RC4 or v1.0.0-RC5)
# Namingo Upgrade Guide (from v1.0.0-RC4 or later)
## Introduction
@ -111,7 +111,8 @@ ZONE_MODE=nice // or default based on your requirement
```bash
cp -r /opt/upgrade/* /opt/registry/
cp -r /opt/upgrade/web/* /var/www/
cp -r /opt/upgrade/cp/* /var/www/
cp -r /opt/upgrade/whois/* /var/www/
```
## Step 6: Delete Panel Cache and Update Composer
@ -122,7 +123,16 @@ cp -r /opt/upgrade/web/* /var/www/
find /var/www/cp/cache/* -type d -exec rm -rf {} +
```
2. Run `composer update` in each component directory.
2. Run `composer update` in each component directory:
```bash
/opt/registry/epp
/opt/registry/das
/opt/registry/rdap
/opt/registry/whois/port43
/var/www/cp
/var/www/whois
```
## Step 7: Restart Services