I am unable to add cname records with underscore. This function has already been implemented, Is there any setting should I qualify? http://bugtracker.ispconfig.org/index.php?do=details&task_id=3848
3.1 is public: http://git.ispconfig.org/ Just change the regex in interface/web/dns/form/dns_cname.tform.php from Code: 'regex' => '/^[a-zA-Z0-9\.\-]{1,255}$/', to Code: 'regex' => '/^[a-zA-Z0-9\.\-\_]{1,255}$/', http://git.ispconfig.org/ispconfig/ispconfig3/commit/6f8a85a6d8047ca0e18626f5eba90c7807a103a7#diff-0
Code: nano /usr/local/ispconfig/interface/web/dns/form/dns_cname.tform.php I changed but not worked. There is a need to restart the services?
Yes, look: Code: 'data' => array ( 'datatype' => 'VARCHAR', 'formtype' => 'TEXT', 'filters' => array( 0 => array( 'event' => 'SAVE', 'type' => 'IDNTOASCII'), 1 => array( 'event' => 'SHOW', 'type' => 'IDNTOUTF8'), 2 => array( 'event' => 'SAVE', 'type' => 'TOLOWER') ), 'validators' => array ( 0 => array ( 'type' => 'NOTEMPTY', 'errmsg'=> 'data_error_empty'), 1 => array ( 'type' => 'REGEX', 'regex' => '/^[a-zA-Z0-9\.\-\_]{1,255}$/', 'errmsg'=> 'data_error_regex'),