Recent content by thunn

  1. T

    Cannot Execute .well-known/acme-challenge/: Is a directory Response is empty. Command

    Hi, My domain (Only this domain get error, other domains still working good): Cannot Execute Your Request Details Getting challenge for domain.com from acme-server... /usr/local/directadmin/scripts/letsencrypt.sh: line 452: [: : integer expression expected...
  2. T

    Row size too large. The maximum row size for the used table type is 65535

    Hi, I have a table with 75 fields currently. When I add a new field, then it raise error: ALTER TABLE `mytable` ADD COLUMN `myfieldname` varchar(255) NULL AFTER `xxxxxxx` MySQL said: Documentation #1118 - Row size too large. The maximum row size for the used table type, not counting BLOBs, is...
  3. T

    Email suspended but still able to receive mail

    Hello, I'm using dovecot and exim for mail service. When I suspend an account, then I tried to send email to that address, email still go into [email protected]. I checked in /home/mrjang/imap/domain.com/jang/Maildir/new/ and email come there. Do you have any solution for this? Thanks.
  4. T

    Performance between physical server and VPS

    Hello, Has anyone test 2 server, one with virtualization (VMware, KVM) and one without virtualization (of course same server's resource/configuration). So what will be better performance? (I only want to compare about performance)
  5. T

    Build DA Roundcube fail due to incorrect password

    Hello, I'm currently use roundcube 1.1.2, when I login, system show me: DATABASE ERROR: CONNECTION FAILED! Unable to connect to the database! Please contact your server-administrator. So I searched and found this topic: https://forum.directadmin.com/showthread.php?t=24727 I tried to install...
  6. T

    suPHP and $GLOBALS variable scope

    Hello, I'm trying to use $GLOBALS in suPHP but it can't give me data. Example: File setData.php <?php $foo = "global VARIABLE"; $GLOBALS["foo"]; print_r($GLOBALS); ?> Result is: Array ( [GLOBALS] => Array *RECURSION* [_POST] => Array ( ) [_GET] => Array ( ) [_COOKIE] => Array ( [PHPSESSID] =>...
  7. T

    Urgent: Most of backups are getting error

    Hello, I'm doing a full backup, and most of user, I got the following error (I have chown admin.admin /home/admin/admin_backups/, and chmod 755 /home/admin/admin_backups/) I'm using csf firewall, but I guess there is no problem with process kill, because I checked in /var/log/lfd.log and...
  8. T

    DirectAdmin API Suspend incorrect

    Hello, I'm trying to suspend an account (And I don't know real state of that account is suspended or not). I do exact as example: $sock->query('/CMD_SELECT_USERS', array( 'location' => 'CMD_SELECT_USERS', 'suspend' => 'Suspend', // note - this can also be 'Unsuspend' 'select0' =>...
  9. T

    How to set open_basedir per domain?

    Hello, I have multiple sites in one DA Account. So I want to setup open_basedir for each domain instead of each account. How can I do that, is it possible to do in /usr/local/directadmin/data/users/xxxxxx/httpd.conf instead of php.ini? Thank you very much!
  10. T

    [ApacheTrafficServer] use regex_map apply for all domains?

    Hi all, I'm using Apache Traffic Server (ATS) for my server, and configure each url in /etc/trafficserver/remap.config Now I want to add some more domains, I see regex_map allow to configure using Regular Expression, but it does not work. So I want to ask if someone has configured this? Thank...
  11. T

    Cache mail for roundcube

    Hello, I have a mail server with a lot of data there. And it grow up day by day. I'm finding a good cache solution to make it load faster. Which solution should I consider to? Thank you.
  12. T

    How to use Login Key with API?

    Hello, I'm trying to use login key to replace DA admin account to work with API, but it does not work. Can Anyone help me by giving example? This is my current code: <?php include 'httpsocket.php'; $sock = new HTTPSocket; $sock->connect('ssl://123.456.789',2222)...
  13. T

    custom/virtual_host2_secure.conf does not parsed with "Domain Setup"

    Hello, I've just recognized that the /usr/local/directadmin/data/templates/custom/virtual_host2_secure.conf has not been parsed when add more domain to a host account. So there is no https (port 443) generated in /usr/local/directadmin/data/users/mytestuser/httpd.conf, only contains http (port...
  14. T

    Prevent outlook to delete mail from exim mail

    Hello, Is there a way that can config in server to prevent Outlook to delete email from server? I know that Outlook allows to configure this, but I don't want to use that method. Thank you.
  15. T

    CentOS 6.4 change SSH default port

    Hello, I'm currently running CentOS 6.4. I have tried to change SSH port but not successfully, Steps I did: - Change port in /etc/ssh/sshd_config to 8668: Port 8668 - Restart sshd service. Tried to connect via putty => It does not work, can't connect to server via 8668 port. - I checked in...
Back
Top