Skip to content

GitLab

  • Projects
  • Groups
  • Snippets
  • Help
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
I
ISPConfig 3
  • Project overview
    • Project overview
    • Details
    • Activity
    • Releases
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 495
    • Issues 495
    • List
    • Boards
    • Labels
    • Service Desk
    • Milestones
  • Merge Requests 31
    • Merge Requests 31
  • CI / CD
    • CI / CD
    • Pipelines
    • Jobs
    • Schedules
  • Operations
    • Operations
    • Incidents
    • Environments
  • Analytics
    • Analytics
    • CI / CD
    • Repository
    • Value Stream
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Members
    • Members
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • ISPConfig
  • ISPConfig 3
  • Issues
  • #5861

Closed
Open
Opened Oct 24, 2020 by Diogo Braga@dioobr

PHP version list does not load when opening the form to create a new Subdomain/Aliasdomain Vhost

Fix suggestion: On the template sites/templates/web_vhost_domain_edit.htm, change the following lines:

jQuery('#parent_domain_id').change(function() {
      reloadServerId(false);
});
// new Vhostsubdomains/Vhostaliasdomains
if(serverId == ''){
      jQuery('#parent_domain_id').trigger('change');
}

to

jQuery('#parent_domain_id').change(function(e, noFormChange) {
      reloadServerId(noFormChange);
});
// new Vhostsubdomains/Vhostaliasdomains
if(serverId == ''){
      jQuery('#parent_domain_id').trigger('change', [true]);
}
Assignee
Assign to
None
Milestone
None
Assign milestone
Time tracking
None
Due date
None
Reference: ispconfig/ispconfig3#5861