can not install after buy!

bubir

New member
Joined
Oct 4, 2021
Messages
7
I got this error many times during installation.


how can i solve this problem ?
 
Installation is included free of charge with Lite/Standard licenses, I'd suggest opening a ticket for this.
 
It seems that wget is broken for some reason there, I'd suggest to try reinstalling it. If that does not help - try opening a ticket over personal license, and assistance would be provided there.
 
It seems that wget is broken for some reason there, I'd suggest to try reinstalling it. If that does not help - try opening a ticket over personal license, and assistance would be provided there.
I tried reinstalling multiple times. I created a ticket on the topic.
 
The wget binarie is from the OS and has nothing to do with Directadmin.
I also see segmentation fault. However, maybe it's wise to either translate the error notices or reinstall the OS in English default so most of us can understand the error notices and then maybe see what's going on.

It could just as well be some memory or hardware issue. Hard to see.
 
The wget binarie is from the OS and has nothing to do with Directadmin.
I also see segmentation fault. However, maybe it's wise to either translate the error notices or reinstall the OS in English default so most of us can understand the error notices and then maybe see what's going on.

It could just as well be some memory or hardware issue. Hard to see.
can you check it here?

I have followed all the steps on this page, but I still get the error in the picture.


 
Oke. I don't see an error in the pictures, but I do see a warning or notice which says:
php1 mode must be set to lsphp when using litespeed WEB server
I don't use Litespeed so no experience with that, but I do understand this notice.

In the /usr/local/directadmin/custombuild/options.conf file the mode for php1 should be set to lsphp while it's now probably set to php-fpm.

So if you want to use both OpenLitespeed webserver and php 7.4 you should do it like this if I'm correct:
Code:
cd /usr/local/directadmin/custombuild
./build set webserver openlitespeed
./build set php1_mode lsphp
./build set php1_release 7.4
./build update
./build openlitespeed
./build php n
./build rewrite_confs

If I'm correct, you shouldn't get any errors anymore except for the same php version. Which can be fixed.
Be sure that in the options.conf file you use something else for other php modes, so for example like this
Code:
#PHP Settings
php1_release=7.4
php1_mode=lsphp
php2_release=8.0
php2_mode=lsphp
php3_release=no
php3_mode=php-fpm
php4_release=no
php4_mode=php-fpm
which would give you 2 php versions. Or if you only want to use php 7.4 then set php2_release= all to no.

It's also possible to edit this file and set it to your needs.
 
Back
Top