{"id":22631663,"url":"https://github.com/getpinga/fossbilling-epp-rfc","last_synced_at":"2025-09-02T12:34:05.603Z","repository":{"id":65912727,"uuid":"587461430","full_name":"getpinga/fossbilling-epp-rfc","owner":"getpinga","description":"EPP Registrar Module for FOSSBilling (Generic RFC EPP)","archived":false,"fork":false,"pushed_at":"2025-04-07T06:45:55.000Z","size":180,"stargazers_count":9,"open_issues_count":4,"forks_count":5,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-07-15T04:09:34.903Z","etag":null,"topics":["billing","epp","epp-client","epp-protocol","fossbilling","fossbilling-extensions"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/getpinga.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-01-10T20:04:17.000Z","updated_at":"2025-04-07T06:44:29.000Z","dependencies_parsed_at":"2025-04-11T20:03:12.848Z","dependency_job_id":"a589a8dc-d62e-4ce0-a587-f2a08fa76104","html_url":"https://github.com/getpinga/fossbilling-epp-rfc","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/getpinga/fossbilling-epp-rfc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getpinga%2Ffossbilling-epp-rfc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getpinga%2Ffossbilling-epp-rfc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getpinga%2Ffossbilling-epp-rfc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getpinga%2Ffossbilling-epp-rfc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/getpinga","download_url":"https://codeload.github.com/getpinga/fossbilling-epp-rfc/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getpinga%2Ffossbilling-epp-rfc/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268057147,"owners_count":24188616,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-31T02:00:08.723Z","response_time":66,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["billing","epp","epp-client","epp-protocol","fossbilling","fossbilling-extensions"],"created_at":"2024-12-09T02:10:36.764Z","updated_at":"2025-07-31T14:33:29.476Z","avatar_url":"https://github.com/getpinga.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Compatibility\n\nThis module is designed for use with:\n\n- Any Generic RFC EPP registry.\n\n- Caucasus Online - .ge\n\n- CentralNic - all\n\n- CoCCA - all\n\n- CORE/Knipp - all\n\n- GoDaddy Registry - all\n\n- Google Nomulus - all\n\n- HKIRC - .hk\n\n- Identity Digital - all\n\n- RoTLD - .ro\n\n- RyCE - all\n\n- SIDN - all\n\n- ZADNA - .za\n\n- ZDNS - .all\n\n# FOSSBilling Module Installation instructions\n\n## 1. Download and Install FOSSBilling:\n\nStart by downloading the latest version of FOSSBilling from the official website (https://fossbilling.org/). Follow the instructions below to install it, or run for automated installation:\n\n```bash\nwget https://raw.githubusercontent.com/getpinga/fossbilling-epp-rfc/main/install_epp_module.sh -O install_epp_module.sh \u0026\u0026 chmod +x install_epp_module.sh \u0026\u0026 ./install_epp_module.sh\n```\n\n## 2. Installation and Configuration of Registrar Adapter:\n\nFirst, download this repository which contains the epp.php file. After successfully downloading the repository, move the epp.php file into the `[FOSSBilling]/library/Registrar/Adapter` directory.\n\nNext, rename `epp.php` as `YourRegistryName.php`. Please ensure to replace \"**YourRegistryName**\" with the actual name of your registry.\n\nProceed to open the newly renamed file and locate the phrase \"**Registrar_Adapter_EPP**\". Replace it with \"**Registrar_Adapter_YourRegistryName**\".\n\n## 3. Addition of Synchronization Script:\n\nThere is one additional script in the repository: **eppSync.php**. It needs to be placed in the main `[FOSSBilling]` directory.\n\nRename `eppSync.php` to `YourRegistryNameSync.php`.\n\nEdit `eppSync.php` and replace **Epp** in the line `$registrar = \"Epp\";` with the name of your registry provided in step 2.\n\n## 4. Setting Up the Cron Job:\n\nYou need to set up a cron job that runs the sync module twice a day. Open crontab using the command `crontab -e` in your terminal.\n\nAdd the following cron job:\n\n`0 0,12 * * * php /var/www/html/YourRegistryNameSync.php`\n\nThis command schedules the synchronization script to run once every 12 hours (at midnight and noon).\n\n## 5. Activate the Domain Registrar Module:\n\nWithin FOSSBilling, go to **System -\u003e Domain Registration -\u003e New Domain Registrar** and activate the new domain registrar.\n\n## 6. Registrar Configuration:\n\nNext, head to the \"**Registrars**\" tab. Here, you'll need to enter your specific configuration details, including the path to your SSL certificate and key.\n\n## 7. Adding a New TLD:\n\nFinally, add a new Top Level Domain (TLD) using your module from the \"**New Top Level Domain**\" tab. Make sure to configure all necessary details, such as pricing, within this tab.\n\n# Troubleshooting\n\nIf you experience problems connecting to your EPP server, follow these steps:\n\n1. Ensure your server's IP (IPv4 and IPv6) is whitelisted by the EPP server.\n\n2. Confirm your client and server support IPv6 if required. If needed, disable IPv6 support in EPP server.\n\n3. Reload the EPP module or restart the web server after any changes.\n\n4. Ensure certificates have the correct permissions: `chown www-data:www-data cert.pem` and `chown www-data:www-data key.pem`.\n\n5. Verify the EPP module is configured with the chosen registrar prefix.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgetpinga%2Ffossbilling-epp-rfc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgetpinga%2Ffossbilling-epp-rfc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgetpinga%2Ffossbilling-epp-rfc/lists"}