mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-22 15:40:25 +00:00
121 lines
4.2 KiB
PHP
121 lines
4.2 KiB
PHP
<?php
|
|
|
|
namespace App\Installers\Server\Applications;
|
|
|
|
class PHPInstaller
|
|
{
|
|
public $phpVersions = [];
|
|
public $phpModules = [];
|
|
public $logFilePath = '/var/log/phyre/php-installer.log';
|
|
|
|
public function setPHPVersions($versions)
|
|
{
|
|
$this->phpVersions = $versions;
|
|
}
|
|
|
|
public function setPHPModules($modules)
|
|
{
|
|
$this->phpModules = $modules;
|
|
}
|
|
|
|
public function setLogFilePath($path)
|
|
{
|
|
$this->logFilePath = $path;
|
|
}
|
|
|
|
public function install()
|
|
{
|
|
$commands = [];
|
|
$commands[] = 'echo "Starting PHP Installation..."';
|
|
$commands[] = 'export DEBIAN_FRONTEND=noninteractive';
|
|
$commands[] = 'apt-get install -yq sudo';
|
|
$commands[] = 'add-apt-repository -y ppa:ondrej/php';
|
|
$commands[] = 'add-apt-repository -y ppa:ondrej/apache2';
|
|
|
|
$dependenciesList = [
|
|
'apache2',
|
|
'apache2-suexec-custom',
|
|
'libapache2-mod-ruid2'
|
|
];
|
|
if (!empty($this->phpVersions)) {
|
|
foreach ($this->phpVersions as $phpVersion) {
|
|
$dependenciesList[] = 'libapache2-mod-php' . $phpVersion;
|
|
}
|
|
if (!empty($this->phpModules)) {
|
|
foreach ($this->phpVersions as $phpVersion) {
|
|
$dependenciesList[] = 'php' . $phpVersion;
|
|
$dependenciesList[] = 'php' . $phpVersion . '-cgi';
|
|
$dependenciesList[] = 'php' . $phpVersion . '-{' . implode(',', $this->phpModules) . '}';
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
$dependencies = implode(' ', $dependenciesList);
|
|
$commands[] = 'apt-get install -yq ' . $dependencies;
|
|
|
|
$lastItem = end($this->phpVersions);
|
|
foreach ($this->phpVersions as $phpVersion) {
|
|
if ($phpVersion == $lastItem) {
|
|
$commands[] = 'a2enmod php' . $phpVersion;
|
|
} else {
|
|
$commands[] = 'a2dismod php' . $phpVersion;
|
|
}
|
|
}
|
|
|
|
$commands[] = 'a2enmod cgi';
|
|
$commands[] = 'a2enmod mime';
|
|
$commands[] = 'a2enmod rewrite';
|
|
$commands[] = 'a2enmod env';
|
|
$commands[] = 'a2enmod ssl';
|
|
$commands[] = 'a2enmod actions';
|
|
$commands[] = 'a2enmod headers';
|
|
$commands[] = 'a2enmod suexec';
|
|
$commands[] = 'a2enmod ruid2';
|
|
$commands[] = 'a2enmod proxy';
|
|
$commands[] = 'a2enmod proxy_http';
|
|
|
|
// For Fast CGI
|
|
// $commands[] = 'a2enmod fcgid';
|
|
// $commands[] = 'a2enmod alias';
|
|
// $commands[] = 'a2enmod proxy_fcgi';
|
|
// $commands[] = 'a2enmod setenvif';
|
|
|
|
// $commands[] = 'ufw allow in "Apache Full"';
|
|
$commands[] = 'systemctl restart apache2';
|
|
|
|
$shellFileContent = '';
|
|
foreach ($commands as $command) {
|
|
$shellFileContent .= $command . PHP_EOL;
|
|
}
|
|
$shellFileContent .= 'echo "All packages installed successfully!"' . PHP_EOL;
|
|
$shellFileContent .= 'echo "DONE!"' . PHP_EOL;
|
|
$shellFileContent .= 'rm -f /tmp/php-installer.sh';
|
|
|
|
file_put_contents('/tmp/php-installer.sh', $shellFileContent);
|
|
shell_exec('bash /tmp/php-installer.sh >> ' . $this->logFilePath . ' &');
|
|
|
|
}
|
|
|
|
public function installIonCube()
|
|
{
|
|
|
|
// 64 bit
|
|
// $ wget https://downloads.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz
|
|
// tar -zxvf ioncube_loaders_lin_x86*
|
|
// cd ioncube/
|
|
// php -i | grep extension_dir
|
|
// sudo cp /tmp/ioncube/ioncube_loader_lin_7.4.so /usr/lib/php/20190902
|
|
|
|
// sudo vi /etc/php/8.2/cli/php.ini #for PHP CLI
|
|
// sudo vi /etc/php/8.2/fpm/php.ini #for PHP-FPM & Nginx
|
|
// sudo vi /etc/php/8.2/apache2/php.ini #for Apache2
|
|
|
|
// zend_extension = /usr/lib/php/20190902/ioncube_loader_lin_8.2.so
|
|
|
|
// command to add zend_extension to the php.ini file -cphp8.2-cgi.ini
|
|
// sudo echo "zend_extension = /usr/lib/php/20190902/ioncube_loader_lin_8.2.so" | sudo tee -a /etc/php/8.2/cgi/php.ini
|
|
// sudo echo "zend_extension = /usr/lib/php/20190902/ioncube_loader_lin_8.2.so" | sudo tee -a /etc/php/8.2/apache2/php.ini
|
|
// sudo echo "zend_extension = /usr/lib/php/20190902/ioncube_loader_lin_8.2.so" | sudo tee -a /etc/php/8.2/cli/php.ini
|
|
}
|
|
}
|