| Server IP : 150.230.34.123 / Your IP : 216.73.217.23 Web Server : LiteSpeed System : Linux amd-instance-20210802-1657 5.15.0-1042-oracle #48~20.04.1-Ubuntu SMP Mon Aug 21 18:27:46 UTC 2023 x86_64 User : ubuntu ( 1001) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/local/lsws/admin/html.open/lib/util/build_php/ |
Upload File : |
<?php
class BuildConfig
{
const OPTION_VERSION = 1;
const BUILD_DIR = 2;
const LAST_CONF = 3;
const DEFAULT_INSTALL_DIR = 4;
const DEFAULT_PARAMS = 5;
const PHP_VERSION = 10;
const LSAPI_VERSION = 11;
const SUHOSIN_VERSION = 12;
const APC_VERSION = 13;
const MEMCACHE_VERSION = 15;
const OPCACHE_VERSION = 16;
const MEMCACHED_VERSION = 17;
const MEMCACHED7_VERSION = 18;
const MEMCACHE7_VERSION = 19;
const MEMCACHE8_VERSION = 20;
public static function GetVersion($field)
{
// you can update the below list to include your versions
switch ($field) {
case self::PHP_VERSION:
return [
'8.1.11',
'8.0.24',
'7.4.32',
'7.3.31',
'7.2.34',
'7.1.33',
'7.0.33',
'5.6.40',
'5.5.38',
'5.4.45',
'5.3.29'];
case self::LSAPI_VERSION: return '8.1';
case self::SUHOSIN_VERSION: return '0.9.38';
case self::APC_VERSION: return '3.1.9';
case self::MEMCACHE_VERSION: return '2.2.7';
case self::MEMCACHE7_VERSION: return '4.0.5.2'; // for php7
case self::MEMCACHE8_VERSION: return '8.0'; // for php8
case self::MEMCACHED_VERSION: return '2.2.0';
case self::MEMCACHED7_VERSION: return '3.2.0'; // for php7,php8
case self::OPCACHE_VERSION: return '7.0.5';
default: die("illegal field");
}
}
public static function Get($field)
{
switch ($field) {
case self::OPTION_VERSION:
return 4;
case self::BUILD_DIR:
return SERVER_ROOT . 'phpbuild';
case self::LAST_CONF:
return SERVER_ROOT . 'phpbuild/savedconfig.';
case self::DEFAULT_INSTALL_DIR:
return SERVER_ROOT . 'lsphp'; // actual dir will include . php base version.
case self::DEFAULT_PARAMS:
return [
'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' );