adding link to webmin

Discussion in 'ISPConfig 3 Priority Support' started by kwickcut, Oct 22, 2017.

  1. kwickcut

    kwickcut Member HowtoForge Supporter

    i was wondering what i would need to do to add a link under the website column under
    Aliasdomains
    to access webmin thanks



    kwick
     
  2. till

    till Super Moderator Staff Member ISPConfig Developer

    You will have to edit the ISPConfig sourcecode, the file is /usr/local/ispconfig/interface/web/sites/lib/module.conf.php and the manu entry needs to be added at line 58:

    something like:

    Code:
    $items[] = array(   'title'   => "Webmin",
                    'target'  => '_blank',
                    'link'    => 'https://yourdomain.tld:10000',
                    'html_id' => 'webmin');
    
     
    kwickcut likes this.

Share This Page