Search results

  1. wattie

    New documentation

    The user "admin" itself is not only an administrator but a reseller too. What I do is creating users directly with the admin account - no need to create additional reseller that way. You can simplify it that way: - User is a domain(s) owner; - Reseller is an User who is able to create other...
  2. wattie

    PHP segfault after upgrading today

    While mod_ruid2 solves the permissions issue, it is still an Apache in prefork mode which is not efficient enough nowadays. For example it does not support HTTP2. There is no good reason nowadays to choose mod_php over php-fpm. I guess they are doing it there with multiapache installations.
  3. wattie

    About phpmyadmin

    In /etc/my.cnf you can define the default server charset. Check here for details: https://mariadb.com/kb/en/setting-character-sets-and-collations/#example-changing-the-default-character-set-to-utf-8
  4. wattie

    PHP IMAP

    It is relevant. For the second question, check the shell script and see what it is doing - you should be able to modify it.
  5. wattie

    php-fpm and mod_ruid2 - current view

    Mod_ruid2 is a suexec module for mod_php. Just use PHP-FPM. Mod_php works in prefork mode which is incompatible with HTTP2.
  6. wattie

    Change this name at the top of the browser

    Here is the answer: https://www.directadmin.com/features.php?id=250
  7. wattie

    PHP5 segmentation fault after update

    1. You can have only one PHP in mod-php mode. 2. You should not use mod-php on shared hosting (all sites run with the same user so when permissions are messed up one customer can read or even modify the files of another). 3. What does it mean "I updated my Direct Admin configuration as I did...
  8. wattie

    PHP segfault after upgrading today

    As an offtopic: do NOT use mod_php on shared hosting! It is not suitable because of permissions.
  9. wattie

    Key exchange 'ffdhe3072' or even 'ffdhe4096' instead of own created DH 2048 , 3072 while is not safe enough anymore, and cipher order preference

    It should be done through the config files. I tried just reordering the curves in the past but failed: https://forum.directadmin.com/threads/sslopensslconfcmd-curves-failed-for-domain-443.58609/
  10. wattie

    Some about MX 0 NULL Record and also parked domains

    What is you just delete the MX so there's not MX record at all? I think that will work.
  11. wattie

    Minor bug in the old default DA skin

    This happens when user goes to the database management section - there is a missing string for PHPMyAdmin.
  12. wattie

    Dovecot 2.3.9 build error

    It works. But now Dovecot 2.3.9.2 has the same issue.
  13. wattie

    Need Help With Installing & Configuring ModSecurity in DirectAdmin

    edit /usr/local/directadmin/custombuild/options.conf and see the options: modsecurity=no modsecurity_ruleset=comodo Change the first one to "yes" and choose whatever you want the second one to be. Then rebuild.
  14. wattie

    Dovecot 2.3.9 build error

    FreeBSD 11.3 here. I get the following error when building Dovecot: ... net.c:1071:5: error: use of undeclared identifier 'EAI_ADDRFAMILY' { EAI_ADDRFAMILY, NET_HOSTERROR_TYPE_NOT_FOUND }, ^ net.c:1077:5: error: use of undeclared identifier 'EAI_NODATA'...
  15. wattie

    PHP 7.4 PECL?

    P.S. PEAR is considered outdated. It has lots of issues: 1. It install extensions only globally; 2. There is no dependency management; 3. All packages must be "pear reviewed" (the devs of extensions must always wait to be approved before pushing an update). Most of the developers migrated to...
  16. wattie

    PHP 7.4 PECL?

    In January this year there was a big hack on the pear website (the main installation package was replaced with malicious version with a trojan planted inside). That is not the reason but it triggered a discussion around it. PEAR is not actively maintained and even updates for deprecation...
  17. wattie

    PHP 7.4 PECL?

    PEAR is disabled by default on PHP 7.4. As "PECL is a repository of PHP extensions that are made available to you via the PEAR packaging system", it also removes the PECL too. To enable PEAR (and PECL) you need to add "--with-pear" in the configure script and recompile PHP 7.4. Here is the...
  18. wattie

    Need help with opcache

    Do this test: 1. Disable opcache and watch your "top" to see how much MB of RAM each php-fpm process takes 2. Enable it and do the same You will be surprised :)
  19. wattie

    PHP 7.4 installation error

    Yes, that was it. On FreeBSD you need to have /usr/ports/security/krb5 installed.
  20. wattie

    PHP 7.4 installation error

    configure: error: Package requirements (krb5-gssapi krb5) were not met: Package 'krb5-gssapi', required by 'virtual:world', not found Package 'krb5', required by 'virtual:world', not found Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard...
Back
Top