Jump to content
Froxlor Forum
  • 0

Domain Import: Option für Access/Error Log


Afox

Question

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

  • 0

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

  • 0

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...