Uploaded image for project: 'Blesta Core'
  1. Blesta Core
  2. CORE-5360

Domain Manager: Potential error when activating domain through admin interface

    Details

    • Type: Bug
    • Status: Closed
    • Priority: Major
    • Resolution: Fixed
    • Affects Version/s: None
    • Fix Version/s: 5.11.1
    • Component/s: None
    • Labels:
      None

      Description

      To Reproduce:
      1. Create a tld and ensure that the pricing for that tld has a record for which the package_pricing.id and package_pricing.pricing_id do not match.
      2. Make sure the package_pricing.pricing_id does not match the package_pricing.id for any other record
      3. Create a domain through the admin interface using that tld and price in the pending status
      4. Manage the domain through the admin interface and try to activate
      5. Receive error "please select a valid term"

      To resolve, in plugins/domain/controllers/admin_main.php around line 627 change

      
                  if (isset($this->post['module']) && $module->id !== $this->post['module'] && $service->status == 'pending') {
      

      to

      
                  if (isset($this->post['module']) && $module->id != $this->post['module'] && $service->status == 'pending') {
      

      and around line 651 change

                      $this->post['pricing_id'] = $pricing->id;
      

      to

                      $this->post['pricing_id'] = $pricing->pricing_id;
      

        Activity

        There are no comments yet on this issue.

          People

          • Assignee:
            jonathan Jonathan Reissmueller
            Reporter:
            jonathan Jonathan Reissmueller
          • Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

            • Created:
              Updated:
              Resolved:
              Fix Release Date:
              10/Mar/25

              Time Tracking

              Estimated:
              Original Estimate - Not Specified
              Not Specified
              Remaining:
              Remaining Estimate - 0 minutes
              0m
              Logged:
              Time Spent - 26 minutes
              26m

                Agile