Linux yavrix.internet-webhosting.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
LiteSpeed
Server IP : 103.8.25.136 & Your IP : 216.73.216.204
Domains :
Cant Read [ /etc/named.conf ]
User : klinikpe
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lsws /
admin /
html.6.0 /
utility /
build_php /
Delete
Unzip
Name
Size
Permission
Date
Action
buildPHP.php
567
B
-rw-r--r--
2021-05-27 17:20
buildProgress.php
367
B
-rw-r--r--
2021-05-27 17:20
buildStep1.php
1.48
KB
-rw-r--r--
2021-05-27 17:20
buildStep2.php
9.56
KB
-rw-r--r--
2021-05-27 17:20
buildStep3.php
3.46
KB
-rw-r--r--
2021-05-27 17:20
buildStep4.php
4.24
KB
-rw-r--r--
2021-05-27 17:20
build_common.template
565
B
-rw-r--r--
2021-05-27 17:20
build_install.template
4
KB
-rw-r--r--
2021-05-27 17:20
build_install_ext.template
1.72
KB
-rw-r--r--
2021-05-27 17:20
build_manual_run.template
1.05
KB
-rw-r--r--
2021-05-27 17:20
build_prepare.template
5.29
KB
-rw-r--r--
2021-05-27 17:20
build_prepare_ext.template
2.6
KB
-rw-r--r--
2021-05-27 17:20
buildconf.inc.php
2.11
KB
-rw-r--r--
2021-05-27 17:20
buildfunc.inc.php
28.68
KB
-rw-r--r--
2021-05-27 17:20
Save
Rename
<?php define ('LEGAL', 1); define ('TITLE', 'Compile PHP with LSAPI'); define ('OPTION_VERSION', 3); define ('BUILD_DIR', $_SERVER['LS_SERVER_ROOT'] . 'phpbuild'); define ('LAST_CONF', BUILD_DIR . '/savedconfig.'); // actual file will include . php base version. define ('DEFAULT_INSTALL_DIR', $_SERVER['LS_SERVER_ROOT'].'lsphp'); // actual dir will include . php base version. $PHP_VER = [ '8' => [ '8.0.1'], '7' => [ '7.4.14', '7.3.26', '7.2.34', '7.1.33', '7.0.33'], '5' => [ '5.6.40', '5.5.38', '5.4.45', '5.3.29'] ]; define ('LSAPI_VERSION', '7.8'); define ('SUHOSIN_VERSION', '0.9.38'); define ('APC_VERSION', '3.1.9'); // http://pecl.php.net/package/APC define ('XCACHE_VERSION', '3.2.0'); // http://xcache.lighttpd.net/ define ('MEMCACHE_VERSION', '2.2.7'); // http://pecl.php.net/package/memcache define ('MEMCACHED_VERSION', '2.2.0'); // http://pecl.php.net/package/memcached define ('MEMCACHED7_VERSION', '3.1.5'); // http://pecl.php.net/package/memcached for php7 only define ('OPCACHE_VERSION', '7.0.5'); // http://pecl.php.net/package/ZendOpcache $DEFAULT_PHP_PARAMS = [ '8' => '--with-mysqli --with-zlib --enable-gd --enable-shmop --enable-sockets --enable-sysvsem --enable-sysvshm --enable-mbstring --with-iconv --with-pdo-mysql --enable-ftp --with-zip --with-curl --enable-soap --enable-xml --with-openssl --enable-bcmath', '7' => '--with-mysqli --with-zlib --with-gd --enable-shmop --enable-sockets --enable-sysvsem --enable-sysvshm --enable-mbstring --with-iconv --with-mcrypt --with-pdo-mysql --enable-ftp --enable-zip --with-curl --enable-soap --enable-xml --enable-json --with-openssl --enable-bcmath', '5' => '--with-mysqli --with-zlib --with-gd --enable-shmop --enable-sockets --enable-sysvsem --enable-sysvshm --enable-mbstring --with-iconv --with-mysql --with-mcrypt --with-pdo --with-pdo-mysql --enable-ftp --enable-zip --with-curl --enable-soap --enable-xml --enable-json --with-openssl --enable-bcmath', '4' => '--with-mysql --with-zlib --with-gd --enable-shmop --enable-sockets --enable-sysvsem --enable-sysvshm --enable-magic-quotes --enable-mbstring', ]; include_once( 'buildfunc.inc.php' );