Recent content by youds

  1. youds

    Add subaddressing support to Exim/Dovecot

    Old post but this worked for me.
  2. youds

    "php 5.x, 7.x and 8.0 cannot compile against openssl 3.0 or higher. Try php 8.1 or higher"

    Well, I assumed you were using `--openssl=/usr/local/openssl` in your compile script, hence it would be whichever that directory is currently at.
  3. youds

    "php 5.x, 7.x and 8.0 cannot compile against openssl 3.0 or higher. Try php 8.1 or higher"

    FWIW I managed to install OpenSSL v1 and compile PHP on AlmaLinux 9. wget https://www.openssl.org/source/openssl-1.1.1w.tar.gz tar -zxf openssl-1.1.1w.tar.gz cd openssl-1.1.1w make clean ./config shared –prefix=/usr –openssldir=/usr/local/openssl make && make test make install...
  4. youds

    DirectAdmin Duplicate Domain

    Hi I'm trying to add a domain and it is refusing because a duplicate exists. I've deleted it from DNS and manually on the /home/user/domains/domain.com however it is still flagged as being duplicate. When in admin mode, searching the domain points to user "projects", however when I log in to...
  5. youds

    Backup Utility (via Rclone)

    So I can’t find it! Can someone post it and I’ll update.
  6. youds

    Backup Utility (via Rclone)

    Ah, my bad. I’ll upload shortly.
  7. youds

    DirectAdmin and Domain Pointers with SSL

    Hi It seems obvious this feature is provided out of the box, am I not looking in the right place or do you need to manually do it? To manually do it should be `/usr/local/directadmin/scripts/letsencrypt.sh request <domain>` or is there another way? Kind regards
  8. youds

    Unable to access socket issue, 503 Service Unavailable

    Hi I updated PHP on my server and one site went offline, others appear to be ok. It shows: Service Unavailable The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later. In the logs I can see: [Fri Jan 06 17:50:00.357818...
  9. youds

    SSL Certificate For CNAME domain

    Ah ok. Thank you
  10. youds

    SSL Certificate For CNAME domain

    Hi I can't figure out how/where to generate SSL for a cname pointing to a different server. Any tips?
  11. youds

    SpamAssassin DCC Razor Pyzor

    Hi I read on a post that the SpamAssassin installation through custombuild has these modules by default, but was it correct? Incase it wasn't and if you could make use of additional spam management, see this feature request and upvote it...
  12. youds

    How to completely disable .htaccess via DirectAdmin interface?

    FYI <Files ?*> SetHandler default-handler </Files> is what causes the lack of trailing slash to fail.
  13. youds

    How to completely disable .htaccess via DirectAdmin interface?

    Sooo just to reach out for someone who is doing the same or maybe someone who can offer a solution, I require index.php in the root of the domain to execute but all subfolders must not parse PHP. The below works (yay) but unfortunately Apache delivers 404 for folders without trailing slash. Very...
  14. youds

    How to completely disable .htaccess via DirectAdmin interface?

    I did this: Require all granted AllowOverride None Options +Indexes In CUSTOM3, followed by: <Files ?*> SetHandler default-handler </Files> In CUSTOM4.
  15. youds

    How to completely disable .htaccess via DirectAdmin interface?

    Hi I want to use "AllowOverride None" in DirectAdmin HTTPD Configuration for a domain. I go to CUSTOM3 (the only place it can be entered) but it is then over-ridden by other values in the config. Any ideas?
Back
Top