- @reboot cron not working
- csf.deny IP format
- Help opening after Custombuild (da build all)
- "You do not own that domain"
- Unlock Innovation with Award-Winning iOS App Development in Perth
- Wildcard SSL cert for fourth level subdomain
- 550 authentication required - email bounce
- Custombuild 404 issues
- cPanel-to-DirectAdmin conversion tool
- Let's Encrypt Certificate name mismatch
On FreeBSD when installing GIT from ports I got an error which was related to PCRE - briefly there was no --enable-jit in PCRE configuration and that made GIT to fail to compile.I looked in the build script and saw that it had:
I guess something is wrong on FreeBSD and it does not configure it like that. I fixed the issue by:Code:
./configure --enable-utf8 --enable-unicode-properties --enable-jitAfter this /usr/ports/devel/git compiles without any error.Code:
cd /usr/local/directadmin/custombuild tar -zxvf pcre-8.41.tar.gz cd pcre-8.41 ./configure --enable-utf8 --enable-unicode-properties --enable-jit make install
