Jump to content
Froxlor Forum

d00p

Administrators
  • Posts

    10317
  • Joined

  • Last visited

  • Days Won

    43

Posts posted by d00p

  1. Der einzige unterschied ist, dass der wechsel von admin auf kunden nicht mehr in einem neuen fenster stattfindet, du hast oben rechts einen link der dich zurück zu deinem admin-account bringt. Funktioniert wunderbar. Ich muss keine cookies löschen und nix. Das ist allerdings schon seit version 2.0 so, nicht erst jetzt...das ganze session handling wurde überarbeitet.

     

  2. Ich kanns zwar reproduzieren, aber nicht verstehen wieso das in 2.0.x funktioniert und in 2.1.x nicht - der code dafür ist eigentlich identisch...folgende Änderung lässt bei mir die Option wieder speichern:

     

    diff --git a/lib/Froxlor/UI/Form.php b/lib/Froxlor/UI/Form.php
    index 694fd3d9..9645f18f 100644
    --- a/lib/Froxlor/UI/Form.php
    +++ b/lib/Froxlor/UI/Form.php
    @@ -236,8 +236,8 @@ class Form
                                            if (\Froxlor\Validate\Form::validateFieldDefinition($groupdetails)) {
                                                    // Prefetch form fields
                                                    foreach ($groupdetails['fields'] as $fieldname => $fielddetails) {
    -                                                       if (!$only_enabledisable || ($only_enabledisable && isset($fielddetails['overview_option']))) {
    -                                                               $groupdetails['fields'][$fieldname] = self::arrayMergePrefix($fielddetails, $fielddetails['type'], self::prefetchFormFieldData($fieldname, $fielddetails));
    +                                                       if (!$only_enabledisable || isset($fielddetails['overview_option'])) {
    +                                                               $groupdetails['fields'][$fieldname] = array_merge($fielddetails, self::prefetchFormFieldData($fieldname, $fielddetails));
                                                                    $form['groups'][$groupname]['fields'][$fieldname] = $groupdetails['fields'][$fieldname];
                                                            }
                                                    }

     

  3. standard ports...what else would we use?

    Auththentication -> username = email-adresse, password = your password (also pretty standard...)

    If you've added an email address and created an account, then yes, froxlor is "ready out of the box" to send and receive email.

    If you want to use ssl/tls you will have to adjust the postfix/dovecot configs accordingly as we're shipping mostly vanilla configs with just adjustments for the services to communicate with froxlor, the rest is up to the sysadmin itself

  4. and i guess you did not add newer php versions to the available fpm-daemons in froxlor prior to the update and now can't access froxlor to do so.

    Try to adjust the values accordingly directly in mysql. The current values are shown by running:
     

    SELECT * FROM `panel_fpmdaemons`;

    The important fields to adjust are reload_cmd and config_dir

  5. Probier mal folgenden Patch:

     

    diff --git a/lib/Froxlor/Cron/Traffic/TrafficCron.php b/lib/Froxlor/Cron/Traffic/TrafficCron.php
    index 30d1bd1b..421505e3 100644
    --- a/lib/Froxlor/Cron/Traffic/TrafficCron.php
    +++ b/lib/Froxlor/Cron/Traffic/TrafficCron.php
    @@ -47,7 +47,7 @@ class TrafficCron extends FroxlorCron
    
            public static function run()
            {
    -               self::runFork([self::class, 'handle']);
    +               self::runFork([self::class, 'handle'], [true]);
            }
    
            public static function handle()

     

×
×
  • Create New...