Posts

Showing posts from January, 2024

How to enable awstats in directadmin

  By default, DirectAdmin comes with webalizer stat software, but it is possible to switch to awstats. Just be aware it is a global on/off switch and not per domain. If you wish to enable this feature for testing or use, you must install awstats. Type: da build set awstats yes da build awstats

Rainloop problem: Can’t connect to server

 TO FIX      https://207.244.254.94:8090/manageSSL/sslForMailServer just select any domain and issue SSL and use  SMTP port 465 IMAP 993 SMTP Comment

install php module in apache directadmin

cd /usr/local/directadmin/custombuild ./build used_configs | grep configure.php   PHP (default) configuration file: /usr/local/directadmin/custombuild/configure/php/configure.php56 phpMyAdmin configuration file: /usr/local/directadmin/custombuild/configure/phpmyadmin/config.inc.php /usr/local/directadmin/custombuild/configure/php check above location for custom PHP config with PHP versions  --enable-intl \         --with-apxs2 \         --with-mssql=/usr/local/freetds cd /usr/local/directadmin/custombuild ./build php n Check if MS Sql is intalled. php -m|grep mssql mssql If you're referring to the legacy MSSQL module (for connecting PHP to Microsoft SQL Server), note that the MSSQL extension for PHP was deprecated and removed in PHP 7+. The modern equivalent for Microsoft SQL Server is the sqlsrv extension, which is the recommended method for connecting to SQL Server from PHP. sudo apt-get install unixodbc unixodbc-dev yum install unixOD...