Jump to content
Froxlor Forum

d00p

Administrators
  • Posts

    10305
  • Joined

  • Last visited

  • Days Won

    43

Community Answers

  1. d00p's post in How do I enable allow_url_fopen? was marked as the answer   
    admin -> PHP-configurations -> edit the php config you want to enable this for in field php.ini settings -> save and wait for cron
  2. d00p's post in nscd invalidiert nicht die Gruppen was marked as the answer   
    Mit libnss-extrausers brauchst du kein nscd...kannst du einfach löschen, er liest die User und Gruppen ja über Textfiles genau wie das System.
  3. d00p's post in vHost PHP disabled in apache configuration was marked as the answer   
    Log in as admin -> edit customer -> check "PHP enabled?" flag AND/OR
    Log in as admin -> edit domain -> check "PHP enabled" flag 
  4. d00p's post in [HELP] After switching to PHP-FPM I cannot upload images to WordPress via Admin interface 🤯 was marked as the answer   
    Well, just take a look at the owner, chown it to user/group editor1
  5. d00p's post in [HELP] Reconfiguring running froxlor was marked as the answer   
    Settings -> System -> Use libnss-extrausers instead of libnss-mysql
  6. d00p's post in [HELP] Reconfiguring running froxlor was marked as the answer   
    Settings -> System -> Use libnss-extrausers instead of libnss-mysql
  7. d00p's post in [HELP] Reconfiguring running froxlor was marked as the answer   
    Settings -> System -> Use libnss-extrausers instead of libnss-mysql
  8. d00p's post in Template for: Domain Default Page? was marked as the answer   
    Yes, go to admin -> templates
    Can you explain???
  9. d00p's post in Pro tips needed! was marked as the answer   
    Not magically, no, it's in the docs: you need to adjust the settings and then follow the configuration-steps to set up the system and services
    Most of the settings can be changed even without the need to reconfigure any services. Some few don't make sense to change afterwards (e.g. customer basedir, you'd have to manually adjust paths etc. better just not do it). Things like switching the webserver from apache to nginx for example would of course mean you'd have to go through configuration steps for webserver again
    most used - as far as i know - is debian. second ubuntu. i have not seen many people with arch or centos using froxlor
  10. d00p's post in was mach ich falsch was marked as the answer   
    Hm, schon die zweite Meldung mit der Datenbank. Muss ich Mal schauen, da hat sich wohl ein Fehler eingeschlichen... Ärgerlich
  11. d00p's post in Post Bullseye update (Bind9 installed and running but not in /etc/init.d/bind9) was marked as the answer   
    Better use 'service' or 'systemctl' - many services just add init.d-files for compatibility reasons but they get removed more and more
  12. d00p's post in PHP-FPM Umstellung & Webroot was marked as the answer   
    Einstellungen -> froxlors vhost Einstellungen -> php-fpm für froxlor vhost nutzen auch aktiviert?
  13. d00p's post in cron error after deleting one ssl cert was marked as the answer   
    Most likely you've hit this: https://github.com/Froxlor/Froxlor/issues/957
    Simple solution: use more recent php or replace lib/Froxlor/Cron/Http/LetsEncrypt/AcmeSh.php with the current one where the compatibility for 7.1 is restored -> https://raw.githubusercontent.com/Froxlor/Froxlor/master/lib/Froxlor/Cron/Http/LetsEncrypt/AcmeSh.php
  14. d00p's post in Rebuild config files - Frage was marked as the answer   
    das config rebuild fügt nur Tasks zum erstellen von DNS und Webserver configs ein. Wenn du mit neue User aus der DB die libnss-extrausers Implementierung meinst dann ja, das sollte der Cron in dem Zuge ebenfalls mit abarbeiten (extrausers Files werden immer neuerstellt wenn es mind. Einen Task zu erledigen gibt)
    Wenn du da ein Script erstellst, rufe doch am ende einfach den Cron mit --force auf (im Grunde gleiche Funktion wie "rebuild configs", aber du musst es nicht im Webinterface anklicken :p)
     
  15. d00p's post in mod_fcgid: stderr: richdocumentscode (proxy.php) error exit, PID: 212444, Message: exec_disabled was marked as the answer   
    Welche Anforderungen nextcloud, collabora server oder andere tools haben die du einsetzt musst du in deren Dokumentation / Hilfe nachlesen. Froxlor bietet dir ja alle Freiheiten die php configs / php.ini Einstellungen entsprechend anzupassen. Welches (sicherheits-)risiko du dabei eingehst ist ebenso dir überlassen. Diese Funktionen sind zurecht standardmäßig deaktiviert, aber genauso zu recht existieren sie, da Ihre Nutzung schlichtweg nötig sein kann.
    Diese Anpassungen auf eine einzelne Domain zu begrenzen ist doch defintiv schon eine gute Sache - völlig ausschließen kann man nie etwas - aber damit minimierst du defintiv die Angriffsfläche
  16. d00p's post in dovecot: keine Verbindung zu mysql // Lösung: keine Sonderzeichen im Passwort für froxlor DB-User !!! was marked as the answer   
    das Passwort im Parameter nicht mit ' ' einschließen, dovecot geht sonst davon aus, die Zeichen gehören mit zum Passwort.
  17. d00p's post in warum sind php-Konfigurationen in den Domainsettings ausgegraut? was marked as the answer   
    Die Berechtigung muss zunächst auf den Kunden gesetzt werden, welche FPM Configs er alle für seine domains verwenden können soll. Der Admin darf zwar grundsätzlich alle verwenden, aber eben der Kunde ggfls nicht (relevant wenn das editieren von Domains für den Kunden erlaubt ist, da kann er nämlich dann selbst seine FPM Version/Variante wählen und das ist einschränkbar über diese Option)
  18. d00p's post in How to use Froxlor API with curl was marked as the answer   
    apikey and secret are not http-header fields but part of the request body, e.g.

    request = [header => [apikey => key, secret = sec], body => [command => ..., params => ...]]
  19. d00p's post in weiterleitung von www. was marked as the answer   
    Ja die Option gibt es nicht, lässt sich aber auch via .htaccess oder eigene vhost settings (wenn nginx z.b.) machen
  20. d00p's post in Access/Error-Log als Kunde einsehen was marked as the answer   
    Wenn dem Kunden das Einsehen der Logdateien gestattet wurde, hat er wie der admin in der domain-liste rechts in den Optionen die "Lupe" mit denen er den logfile-viewer öffnen kann
  21. d00p's post in How can I change the password by using Mysql? was marked as the answer   
    Reset password for admin using mysql (change values accordingly):
    UPDATE panel_admins SET `password` = md5('thepassword-youwant') WHERE `loginname` = 'admin'; Activate "password reset function for admin" using mysql:
    UPDATE panel_settings SET `value` = '1' WHERE `varname` = 'allow_preset'; UPDATE panel_settings SET `value` = '1' WHERE `varname` = 'allow_preset_admin';  
  22. d00p's post in Problem mit Datenbank-Update und Error Report (Adresse tuts nicht) was marked as the answer   
    Strict mode sollte froxlor eigentlich on-demand deaktivieren sofern aktiv
  23. d00p's post in Froxlor installation mit nginx und php-fpm verweist nicht auf den fpm sock was marked as the answer   
    Fpm nicht explizit für den froxlor vhost aktiviert?
  24. d00p's post in Fehler nach Upgrade auf 0.10.23.1-1 was marked as the answer   
    a2dismod php7.0 && a2enmod php7.4 mal probiert?
    Ich nehme an bei mod_php steht dein webserver halt noch auf php-7.0
  25. d00p's post in Bug oder Fehler durch Fehlbedienung/Fehlkonfiguration? was marked as the answer   
    This should do the trick for you: https://github.com/Froxlor/Froxlor/commit/b8c0688ba0639163ea0ae3ff0137c1a46beea018#diff-1abf0cf9a90c83e15173ac8d816f1bc3cc7a3b58f5a72e8c8f2fe38ae15ed5ee
×
×
  • Create New...