Search results

  1. J

    ProFTPD 1.3.7a update: failed to start

    After the update to ProFTPD 1.3.7a the service failed to start. Reason: unknown configuration directive 'IdentLookups' on line 73 of '/etc/proftpd.conf' The directive was removed in 1.3.7RC1 http://www.proftpd.org/docs/RELEASE_NOTES-1.3.7a + The mod_ident module is no longer automatically...
  2. J

    Curl 7.70.0

    Custombuild 2.0 is still building curl 7.69.1: [root@vps custombuild]# cat versions.txt | grep curl curl:7.69.1:b9bb5e11d579425154a9f97ed44be9b8 curl_cacert:20161102:c726ae88fd600aa26df1d30f42b51fec Is there any reason why the update to curl 7.70.0 has not been made?
  3. J

    [CB] Support for building first, not yet 'make install'

    I am in the process of changing the php_mode of all my 4 PHP releases from mod_php (1) and fastcgi (3) to php-fpm. Because I want the downtime to be as short as possible, I was looking for a possibility to do it in 2 steps: first step is building the 4 PHP versions and second step is to install...
  4. J

    CentOS 6.10 update: iptables overwrite warning

    CentOS 6.10 is available now. Warning for Directadmin users: it will overwrite /etc/init.d/iptables and /etc/init.d/ip6tables. If you modified these files to use the Brute Force IP-blocking, make a backup before updating. Release notes: https://wiki.centos.org/Manuals/ReleaseNotes/CentOS6.10
  5. J

    sshd_config: Match user conflicts with AllowUsers

    In the standard DA setup new SSH-users are appended to the end of /etc/ssh/sshd_config. However if you want to use Match User, this directive also has to be at the end of sshd_config. I wanted to grant Password Authentication to only a few users: PasswordAuthentication no Match User newuser99...
  6. J

    Bad flag delimiters after update to DA 1.43.3

    There are errors in line 50 and 51 of data/templates/virtual_host2.conf after the update to DA 1.43.3 Line 50 was: RewriteCond %{REQUEST_FILENAME} \.php|PHP2_ RELEASE|$ And should have been RewriteCond %{REQUEST_FILENAME} \.php|PHP2_RELEASE|$ Without the space between PHP2_ and RELEASE. I...
  7. J

    ./build update_versions replaces my PHP 5.3 by PHP 5.4

    I have got the following setup: php1_release=5.3 php2_release=5.4 php1_mode=mod_php php2_mode=php-fpm php_ini=no #Possible values - production or development php_ini_type=production I ran ./build update to see if DA already had put PHP 5.3.21 and 5.4.11 in the custombuild setup. Yes, both new...
  8. J

    Open_basedir in default /usr/local/directadmin/data/users/*/php/php-fpm54.conf

    My CB 2.0 setup: php1_release=5.3 php2_release=5.4 php1_mode=mod_php php2_mode=php-fpm The build was successful and I could change a domain to PHP-FPM by adding this to the Custom HTTPD setup: <IfModule mod_fastcgi.c> <FilesMatch "\.(inc|php|php3|php4|php44|php5|php52|php53|phtml|phps)$">...
  9. J

    HOWTO: mod_fcgid in CB 2.0, switchable to suphp

    HOWTO: mod_fcgid in CB 2.0, switchable to suphp and mod_php This post will show you how to install mod_fcgid, using custombuild 2.0, and create a setup where the admin can choose for every individual DA-user between mod_php, suphp and mod_fcgid. I am using this on my Centos server with Apache...
  10. J

    Error in default options.conf CB 2.0

    I had some troubles with installing PHP 5.4 as suphp and discovered what was wrong: a typo in the generated default options.conf. I did the following: cd /usr/local/directadmin mv custombuild custombuild_1.x wget -O custombuild.tar.gz...
  11. J

    mod_rewrite under PHP 5.4 as php-fpm

    I just had a hard time getting drupal 7 to work under PHP 5.4 as php-fpm. My options.conf: php1_release=5.3 php2_release=5.4 php1_mode=mod_php php2_mode=php-fpm ... apache_ver=2.4 mod_ruid2=yes secure_htaccess=no harden-symlinks-patch=no Drupal 7 normally rewrites every URL in the .htaccess...
Back
Top