Afox Posted October 12, 2021 Share Posted October 12, 2021 Hallo, ich versuche gerade Domains über eine csv zu importieren und suche das Feld für den Error und Access Log. In der Dokumentation ist es nicht aufgeführt. Wenn ich die Bezeichnung aus der API Doku nehme funktioniert es leider nicht. LG, Afox Link to comment Share on other sites More sharing options...
0 d00p Posted October 12, 2021 Share Posted October 12, 2021 Seit 0.10.x übergibt er eigentlich 1:1 die header als api-parameters, du solltest alles übergeben können was die API funktion hergibt. Was genau meinst du denn mit "feld für error und access log"? Wenn du das meinst, das für die Domain eine eigene/separate log erstellt wird dann ist das: * @param bool $speciallogfile * optional, whether to create an exclusive web-logfile for this domain, default 0 (false) Link to comment Share on other sites More sharing options...
0 Afox Posted October 12, 2021 Author Share Posted October 12, 2021 Danke, ich habe folgende Header auf 0 gesetzt: speciallogfile writeaccesslog writeerrorlog sslenabled Jedoch wird bei allen der Haken trotzdem gesetzt. Link to comment Share on other sites More sharing options...
0 d00p Posted October 12, 2021 Share Posted October 12, 2021 Wie sieht deine csv aus? Link to comment Share on other sites More sharing options...
0 Afox Posted October 12, 2021 Author Share Posted October 12, 2021 Siehe Anhang (temp) Link to comment Share on other sites More sharing options...
0 d00p Posted October 12, 2021 Share Posted October 12, 2021 Jau, gefunden, der 0-Wert ist für PHP bei einer Abfrage auf empty() leider gleichbedeutend wie leer...versuche folgenden Patch: diff --git a/lib/Froxlor/Bulk/BulkAction.php b/lib/Froxlor/Bulk/BulkAction.php index fdfca799..9f946b38 100644 --- a/lib/Froxlor/Bulk/BulkAction.php +++ b/lib/Froxlor/Bulk/BulkAction.php @@ -133,7 +133,7 @@ abstract class BulkAction $new_data = array(); foreach ($this->api_params as $idx => $param) { - if (isset($data_array[$idx]) && ! empty($data_array[$idx])) { + if (isset($data_array[$idx])) { $new_data[$param] = $data_array[$idx]; } } Link to comment Share on other sites More sharing options...
0 Afox Posted October 12, 2021 Author Share Posted October 12, 2021 Danke aber jetzt erhalte die folgende Meldung: Quote Selected admin cannot have any more domains or could not be found Nach dem Setzen der ID für den Admin lief es aber durch. Link to comment Share on other sites More sharing options...
Question
Afox
Hallo,
ich versuche gerade Domains über eine csv zu importieren und suche das Feld für den Error und Access Log. In der Dokumentation ist es nicht aufgeführt. Wenn ich die Bezeichnung aus der API Doku nehme funktioniert es leider nicht.
LG,
Afox
Link to comment
Share on other sites
6 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now