Password & DNS entries issues
| Affects | Status | Importance | Assigned to | Milestone | |
|---|---|---|---|---|---|
| Zpanel cp X |
New
|
Undecided
|
Unassigned | ||
Bug Description
Password issue:
-------
According to my thread
http://
there is an issue, where long password defined (15 characters) does not let me login anymore.
Pass has to be reset via SSH in oder to roll back to previous (shorter) one.
DNS issue:
-------
According to my thread
http://
i had issues to enter long TXT & CNAME entries, they have not been saved.
The issue was the underscore ( _ ) used.
Fix was hard coded to file /module/
(thanks to user 5050 for his support)
if ($type['new_' . $id] != "SRV") {
if (!self:
and line 1298, adding additional IsValidHostName check
static function IsValidDomainNa
if ($a != "@") {
$part = explode(".", $a);
foreach ($part as $check) {
if (!preg_
}
}
}
return true;
}
//custom
static function IsValidHostName($a) {
if ($a != "@") {
$part = explode(".", $a);
foreach ($part as $check) {
if (!preg_
}
}
}
return true;
}
While my TXT entries where accepted by Amazon, the CNAME entries could not be verified.
This is a high priority, as i need the entries to get Amazon DKIM verified.
Amazon sent me notification that CNAME entries are still not indexed.
