Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.255
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
apps /
ldap /
build /
Delete
Unzip
Name
Size
Permission
Date
Action
make.sh
953
B
-rw-r--r--
2022-11-29 07:23
Save
Rename
#!/bin/bash source /var/softaculous/apps/build/common.sh #Version #ldap=openldap-stable-20100719 ldap=openldap-2.4.56 # need lower openssl versions #ldap=openldap-2.5.7 # need higher openssl-1.1.1 versions is_file $AMPPS_PATH"/lib/libldap.so" if [ $? == 0 ] then banner "Installing LDAP" cd $SRC_PATH remove_dir $ldap is_file $ldap.tgz if [ $? == 0 ] then banner $ldap".tgz Downloading" wget --no-check-certificate -O $SRC_PATH/$ldap.tgz https://www.openldap.org/software/download/OpenLDAP/openldap-release/$ldap.tgz >> $LOG 2>&1 fi tar -zxf $ldap.tgz cd $ldap LDFLAGS="-L$AMPPS_PATH/lib" CPPFLAGS="-I$AMPPS_PATH/include" ./configure --prefix=$AMPPS_PATH --enable-dynamic=yes --enable-slapd=no --enable-backends=no --enable-overlays=no --enable-shared --with-tls && make && make install >> $LOG 2>&1 fi is_file $AMPPS_PATH"/lib/libldap.so" if [ $? == 0 ] then banner 'ldap could not be installed due to some reason' exit 1 fi