Custombuild Not Showing

floyd

Verified User
Joined
Mar 29, 2005
Messages
6,334
Custombuild is not showing in an old installation but has been updated to the latest. It doesn't show in the Enhanced or Evolution skin. Anybody else have this problem and solved?
 
Custombuild is not showing in an old installation but has been updated to the latest.
Can you be a bit more specific?
Old installation = old DA version?

Because if it's an old installation with new DA version (so DA is updated) and it's a legacy license, it will not show up on either (sorry, I made a mistake) not show up on Enhanced only. But should show on Evo.
 
Last edited:
All of my licenses are legacy licenses. What I meant by old installation is that it was installed years ago but its been kept up to date.

Custombuild does show in Evo skin in legacy licenses. I can should you screenshots of old and new installations where it is working properly. Its just this particular one where its not working properly. I have plenty of others that are working as expected.

I was thinking it might be a setting I missed.
 
I ended up running this and custombuild started working:

Code:
CHANNEL=rhel7
OS_SLUG=linux_amd64
COMMIT=$(dig +short -t txt "$CHANNEL-version.directadmin.com" | sed 's|.*commit=\([0-9a-f]*\).*|\1|')
FILE="directadmin_${COMMIT}_${OS_SLUG}.tar.gz"
curl --location --progress-bar --connect-timeout 10 "https://download.directadmin.com/${FILE}" --output "/root/${FILE}"
tar xzf "/root/${FILE}" -C /usr/local/directadmin/usr/local/directadmin
/usr/local/directadmin/scripts/update.sh
service directadmin restart
 
Back
Top