mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-03 20:05:58 +01:00
2301 lines
101 KiB
Python
2301 lines
101 KiB
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
import sys
|
|
reload(sys)
|
|
sys.setdefaultencoding("utf-8")
|
|
|
|
from django.shortcuts import render,redirect
|
|
from loginSystem.views import loadLoginPage
|
|
from .models import PHP,installedPackages
|
|
from django.http import HttpResponse
|
|
import json
|
|
from plogical.phpUtilities import phpUtilities
|
|
import os
|
|
from plogical.installUtilities import installUtilities
|
|
from plogical.CyberCPLogFileWriter import CyberCPLogFileWriter as logging
|
|
import re
|
|
import subprocess
|
|
from loginSystem.models import Administrator
|
|
from plogical.virtualHostUtilities import virtualHostUtilities
|
|
import subprocess
|
|
import shlex
|
|
import plogical.CyberCPLogFileWriter as logging
|
|
from random import randint
|
|
from xml.etree import ElementTree
|
|
# Create your views here.
|
|
|
|
|
|
def loadPHPHome(request):
|
|
try:
|
|
val = request.session['userID']
|
|
|
|
admin = Administrator.objects.get(pk=val)
|
|
|
|
if admin.type == 3:
|
|
return HttpResponse("You don't have enough priviliges to access this page.")
|
|
|
|
return render(request,'managePHP/index.html')
|
|
except KeyError:
|
|
return redirect(loadLoginPage)
|
|
|
|
|
|
|
|
def installExtensions(request):
|
|
try:
|
|
val = request.session['userID']
|
|
|
|
admin = Administrator.objects.get(pk=val)
|
|
|
|
if admin.type == 3:
|
|
return HttpResponse("You don't have enough priviliges to access this page.")
|
|
|
|
if PHP.objects.count() == 0:
|
|
for i in range(3, 7):
|
|
php = "php"+str(5)+str(i)
|
|
newPHP = PHP(phpVers=php)
|
|
newPHP.save()
|
|
|
|
newPHP = PHP(phpVers="php70")
|
|
newPHP.save()
|
|
newPHP = PHP(phpVers="php71")
|
|
newPHP.save()
|
|
|
|
|
|
|
|
### Gather php 53 information
|
|
|
|
php53 = PHP.objects.get(phpVers="php53")
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-bcmath",
|
|
description="A module for PHP applications for using the bcmath library",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-common",
|
|
description="Common files for PHP",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-dba",
|
|
description="A database abstraction layer module for PHP applications",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-enchant",
|
|
description="Human Language and Character Encoding Support",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-gd",
|
|
description="A module for PHP applications for using the gd graphics library",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-imap",
|
|
description="A module for PHP applications that use IMAP",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-intl",
|
|
description="Internationalization extension for PHP application",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-ioncube-loader",
|
|
description="Ioncube Loader",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-ldap",
|
|
description="A module for PHP applications that use LDAP",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-mbstring",
|
|
description="A module for PHP applications which need multi-byte string handling",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-mcrypt",
|
|
description="Standard PHP module provides mcrypt library support",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-mysql",
|
|
description="A module for PHP applications that use MySQL databases",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-odbc",
|
|
description="A module for PHP applications that use ODBC databases",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-pdo",
|
|
description="A database access abstraction module for PHP applications",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-pear",
|
|
description="PHP Extension and Application Repository framework",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
|
|
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-pecl-apc",
|
|
description="APC caches and optimizes PHP intermediate code",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-pgsql",
|
|
description="A PostgreSQL database module for PHP",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-process",
|
|
description="Modules for PHP script using system process interfaces",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-pspell",
|
|
description="A module for PHP applications for using pspell interfaces",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-recode",
|
|
description="A module for PHP applications for using the recode library",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-snmp",
|
|
description="A module for PHP applications that query SNMP-managed devices",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-soap",
|
|
description="A module for PHP applications that use the SOAP protocol",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-tidy",
|
|
description="Standard PHP module provides tidy library support",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-xml",
|
|
description="A module for PHP applications which use XML",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-xmlrpc",
|
|
description="A module for PHP applications which use the XML-RPC protocol",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
|
|
## non-active packages
|
|
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-debuginfo",
|
|
description="Debug information for package lsphp53",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-lsphp53-devel",
|
|
description="Files needed for building PHP extensions",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-mysql56",
|
|
description="PHP scripting language for creating dynamic web sites",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-mysqlnd",
|
|
description="A module for PHP applications that use MySQL databases",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-opcache",
|
|
description="The Zend OPcache",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-pecl-apc-devel",
|
|
description="APC developer files (header)",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-pecl-apc-panel",
|
|
description="APC control panel",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-sqlite",
|
|
description="Extension for the SQLite V2 Embeddable SQL Database Engine",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-xcache",
|
|
description="PHP accelerator, optimizer, encoder and dynamic content cacher",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp53-xcache-admin",
|
|
description="XCache Administration",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
### ################ #################
|
|
|
|
##### Gather php 54 information
|
|
|
|
### ################ #################
|
|
|
|
php54 = PHP.objects.get(phpVers="php54")
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-bcmath",
|
|
description="A module for PHP applications for using the bcmath library",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-common",
|
|
description="Common files for PHP",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp53-dba",
|
|
description="A database abstraction layer module for PHP applications",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp54-enchant",
|
|
description="Human Language and Character Encoding Support",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-gd",
|
|
description="A module for PHP applications for using the gd graphics library",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-imap",
|
|
description="A module for PHP applications that use IMAP",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp54-intl",
|
|
description="Internationalization extension for PHP application",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-ioncube-loader",
|
|
description="Ioncube Loader",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-ldap",
|
|
description="A module for PHP applications that use LDAP",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-mbstring",
|
|
description="A module for PHP applications which need multi-byte string handling",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-mcrypt",
|
|
description="Standard PHP module provides mcrypt library support",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-mysql",
|
|
description="A module for PHP applications that use MySQL databases",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-odbc",
|
|
description="A module for PHP applications that use ODBC databases",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-pdo",
|
|
description="A database access abstraction module for PHP applications",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-pear",
|
|
description="PHP Extension and Application Repository framework",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-pecl-apc",
|
|
description="APC caches and optimizes PHP intermediate code",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php53,
|
|
extensionName="lsphp54-pgsql",
|
|
description="A PostgreSQL database module for PHP",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-process",
|
|
description="Modules for PHP script using system process interfaces",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-pspell",
|
|
description="A module for PHP applications for using pspell interfaces",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-recode",
|
|
description="A module for PHP applications for using the recode library",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-snmp",
|
|
description="A module for PHP applications that query SNMP-managed devices",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-soap",
|
|
description="A module for PHP applications that use the SOAP protocol",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-tidy",
|
|
description="Standard PHP module provides tidy library support",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-xml",
|
|
description="A module for PHP applications which use XML",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-xmlrpc",
|
|
description="A module for PHP applications which use the XML-RPC protocol",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
## non-active packages
|
|
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-debuginfo",
|
|
description="Debug information for package lsphp54",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-mysql56-debuginfo",
|
|
description="Debug information for package lsphp54-mysql56",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-lsphp53-devel",
|
|
description="Files needed for building PHP extensions",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-mysql56",
|
|
description="PHP scripting language for creating dynamic web sites",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-mysqlnd",
|
|
description="A module for PHP applications that use MySQL databases",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-opcache",
|
|
description="The Zend OPcache",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-pecl-apc-devel",
|
|
description="APC developer files (header)",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-pecl-apc-panel",
|
|
description="APC control panel",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-sqlite",
|
|
description="Extension for the SQLite V2 Embeddable SQL Database Engine",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-xcache",
|
|
description="PHP accelerator, optimizer, encoder and dynamic content cacher",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp54-xcache-admin",
|
|
description="XCache Administration",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
### ################ #################
|
|
|
|
##### Gather php 55 information
|
|
|
|
### ################ #################
|
|
|
|
php55 = PHP.objects.get(phpVers="php55")
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-bcmath",
|
|
description="A module for PHP applications for using the bcmath library",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-common",
|
|
description="Common files for PHP",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-dba",
|
|
description="A database abstraction layer module for PHP applications",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-enchant",
|
|
description="Human Language and Character Encoding Support",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-gd",
|
|
description="A module for PHP applications for using the gd graphics library",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-imap",
|
|
description="A module for PHP applications that use IMAP",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-intl",
|
|
description="Internationalization extension for PHP application",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-ioncube-loader",
|
|
description="Ioncube Loader",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-ldap",
|
|
description="A module for PHP applications that use LDAP",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-mbstring",
|
|
description="A module for PHP applications which need multi-byte string handling",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-mcrypt",
|
|
description="Standard PHP module provides mcrypt library support",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-mysql",
|
|
description="A module for PHP applications that use MySQL databases",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-odbc",
|
|
description="A module for PHP applications that use ODBC databases",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-pdo",
|
|
description="A database access abstraction module for PHP applications",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-pear",
|
|
description="PHP Extension and Application Repository framework",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-pgsql",
|
|
description="A PostgreSQL database module for PHP",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-process",
|
|
description="Modules for PHP script using system process interfaces",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-pspell",
|
|
description="A module for PHP applications for using pspell interfaces",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-recode",
|
|
description="A module for PHP applications for using the recode library",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-snmp",
|
|
description="A module for PHP applications that query SNMP-managed devices",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-soap",
|
|
description="A module for PHP applications that use the SOAP protocol",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-tidy",
|
|
description="Standard PHP module provides tidy library support",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-xml",
|
|
description="A module for PHP applications which use XML",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-xmlrpc",
|
|
description="A module for PHP applications which use the XML-RPC protocol",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
## non-active packages
|
|
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-debuginfo",
|
|
description="Debug information for package lsphp55",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-mysql56-debuginfo",
|
|
description="Debug information for package lsphp55-mysql56",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-lsphp53-devel",
|
|
description="Files needed for building PHP extensions",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php54,
|
|
extensionName="lsphp55-mysql56",
|
|
description="PHP scripting language for creating dynamic web sites",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-mysqlnd",
|
|
description="A module for PHP applications that use MySQL databases",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-opcache",
|
|
description="The Zend OPcache",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-sqlite",
|
|
description="Extension for the SQLite V2 Embeddable SQL Database Engine",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-xcache",
|
|
description="PHP accelerator, optimizer, encoder and dynamic content cacher",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp55-xcache-admin",
|
|
description="XCache Administration",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
### ################ #################
|
|
|
|
##### Gather php 56 information
|
|
|
|
### ################ #################
|
|
|
|
php56 = PHP.objects.get(phpVers="php56")
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-bcmath",
|
|
description="A module for PHP applications for using the bcmath library",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-common",
|
|
description="Common files for PHP",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-dba",
|
|
description="A database abstraction layer module for PHP applications",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-enchant",
|
|
description="Human Language and Character Encoding Support",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-gd",
|
|
description="A module for PHP applications for using the gd graphics library",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-gmp",
|
|
description="A module for PHP applications for using the GNU MP library",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-imap",
|
|
description="A module for PHP applications that use IMAP",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-intl",
|
|
description="Internationalization extension for PHP application",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-ioncube-loader",
|
|
description="Ioncube Loader",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-ldap",
|
|
description="A module for PHP applications that use LDAP",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-mbstring",
|
|
description="A module for PHP applications which need multi-byte string handling",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-mcrypt",
|
|
description="Standard PHP module provides mcrypt library support",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-mysql",
|
|
description="A module for PHP applications that use MySQL databases",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-odbc",
|
|
description="A module for PHP applications that use ODBC databases",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-pdo",
|
|
description="A database access abstraction module for PHP applications",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php55,
|
|
extensionName="lsphp56-pear",
|
|
description="PHP Extension and Application Repository framework",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-pgsql",
|
|
description="A PostgreSQL database module for PHP",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-process",
|
|
description="Modules for PHP script using system process interfaces",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-pspell",
|
|
description="A module for PHP applications for using pspell interfaces",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-recode",
|
|
description="A module for PHP applications for using the recode library",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-snmp",
|
|
description="A module for PHP applications that query SNMP-managed devices",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-soap",
|
|
description="A module for PHP applications that use the SOAP protocol",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-tidy",
|
|
description="Standard PHP module provides tidy library support",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-xml",
|
|
description="A module for PHP applications which use XML",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-xmlrpc",
|
|
description="A module for PHP applications which use the XML-RPC protocol",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
## non-active packages
|
|
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-debuginfo",
|
|
description="Debug information for package lsphp56",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-mysql56-debuginfo",
|
|
description="Debug information for package lsphp56-mysql56",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-devel",
|
|
description="Files needed for building PHP extensions",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-mysql56",
|
|
description="PHP scripting language for creating dynamic web sites",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-mysqlnd",
|
|
description="A module for PHP applications that use MySQL databases",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-opcache",
|
|
description="The Zend OPcache",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-sqlite",
|
|
description="Extension for the SQLite V2 Embeddable SQL Database Engine",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-xcache",
|
|
description="PHP accelerator, optimizer, encoder and dynamic content cacher",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php56,
|
|
extensionName="lsphp56-xcache-admin",
|
|
description="XCache Administration",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
### ################ #################
|
|
|
|
##### Gather php 70 information
|
|
|
|
### ################ #################
|
|
|
|
php70 = PHP.objects.get(phpVers="php70")
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-bcmath",
|
|
description="A module for PHP applications for using the bcmath library",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-common",
|
|
description="Common files for PHP",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-dba",
|
|
description="A database abstraction layer module for PHP applications",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-enchant",
|
|
description="Human Language and Character Encoding Support",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-gd",
|
|
description="A module for PHP applications for using the gd graphics library",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-gmp",
|
|
description="A module for PHP applications for using the GNU MP library",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-imap",
|
|
description="A module for PHP applications that use IMAP",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-intl",
|
|
description="Internationalization extension for PHP application",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-json",
|
|
description="LSPHP70 Json PHP Extension",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-ldap",
|
|
description="A module for PHP applications that use LDAP",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-mbstring",
|
|
description="A module for PHP applications which need multi-byte string handling",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-mcrypt",
|
|
description="Standard PHP module provides mcrypt library support",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-mysqlnd",
|
|
description="A module for PHP applications that use MySQL databases",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-odbc",
|
|
description="A module for PHP applications that use ODBC databases",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-pdo",
|
|
description="A database access abstraction module for PHP applications",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-pear",
|
|
description="PHP Extension and Application Repository framework",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-pgsql",
|
|
description="A PostgreSQL database module for PHP",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-process",
|
|
description="Modules for PHP script using system process interfaces",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-pspell",
|
|
description="A module for PHP applications for using pspell interfaces",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-recode",
|
|
description="A module for PHP applications for using the recode library",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-snmp",
|
|
description="A module for PHP applications that query SNMP-managed devices",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-soap",
|
|
description="A module for PHP applications that use the SOAP protocol",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-tidy",
|
|
description="Standard PHP module provides tidy library support",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-xml",
|
|
description="A module for PHP applications which use XML",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-xmlrpc",
|
|
description="A module for PHP applications which use the XML-RPC protocol",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
## non-active packages
|
|
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-debuginfo",
|
|
description="Debug information for package lsphp70",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-dbg",
|
|
description="The interactive PHP debugger",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-mysql56-debuginfo",
|
|
description="Debug information for package lsphp70-mysql56",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-lsphp53-devel",
|
|
description="Files needed for building PHP extensions",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-mysql56",
|
|
description="PHP scripting language for creating dynamic web sites",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-opcache",
|
|
description="The Zend OPcache",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-sqlite",
|
|
description="Extension for the SQLite V2 Embeddable SQL Database Engine",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-xcache",
|
|
description="PHP accelerator, optimizer, encoder and dynamic content cacher",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-xcache-admin",
|
|
description="XCache Administration",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-pecl-apcu",
|
|
description="APC User Cache",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-pecl-apcu-devel",
|
|
description="APCu developer files (header)",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-pecl-apcu-panel",
|
|
description="APCu control panel",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-pecl-igbinary",
|
|
description="Replacement for the standard PHP serializer",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-pecl-igbinary-debuginfo",
|
|
description="Debug information for package lsphp70-pecl-igbinary",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-pecl-igbinary-devel",
|
|
description="Igbinary developer files (header)",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-pecl-memcache",
|
|
description="Extension to work with the Memcached caching daemon",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-pecl-memcached",
|
|
description="Extension to work with the Memcached caching daemon",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-pecl-msgpack",
|
|
description="API for communicating with MessagePack serialization",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-pecl-redis",
|
|
description="Extension for communicating with the Redis key-value store",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php70,
|
|
extensionName="lsphp70-zip",
|
|
description="ZIP archive management extension for PHP",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
### ################ #################
|
|
|
|
##### Gather php 71 information
|
|
|
|
### ################ #################
|
|
|
|
php71 = PHP.objects.get(phpVers="php71")
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-bcmath",
|
|
description="A module for PHP applications for using the bcmath library",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-common",
|
|
description="Common files for PHP",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-dba",
|
|
description="A database abstraction layer module for PHP applications",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-enchant",
|
|
description="Human Language and Character Encoding Support",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-gd",
|
|
description="A module for PHP applications for using the gd graphics library",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-gmp",
|
|
description="A module for PHP applications for using the GNU MP library",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-imap",
|
|
description="A module for PHP applications that use IMAP",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-intl",
|
|
description="Internationalization extension for PHP application",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-json",
|
|
description="LSPHP71 Json PHP Extension",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-ldap",
|
|
description="A module for PHP applications that use LDAP",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-mbstring",
|
|
description="A module for PHP applications which need multi-byte string handling",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-mcrypt",
|
|
description="Standard PHP module provides mcrypt library support",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-mysqlnd",
|
|
description="A module for PHP applications that use MySQL databases",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-odbc",
|
|
description="A module for PHP applications that use ODBC databases",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-pdo",
|
|
description="A database access abstraction module for PHP applications",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-pear",
|
|
description="PHP Extension and Application Repository framework",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-pgsql",
|
|
description="A PostgreSQL database module for PHP",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-process",
|
|
description="Modules for PHP script using system process interfaces",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-pspell",
|
|
description="A module for PHP applications for using pspell interfaces",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-recode",
|
|
description="A module for PHP applications for using the recode library",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-snmp",
|
|
description="A module for PHP applications that query SNMP-managed devices",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-soap",
|
|
description="A module for PHP applications that use the SOAP protocol",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-tidy",
|
|
description="Standard PHP module provides tidy library support",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-xml",
|
|
description="A module for PHP applications which use XML",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-xmlrpc",
|
|
description="A module for PHP applications which use the XML-RPC protocol",
|
|
status=1)
|
|
|
|
phpExtension.save()
|
|
|
|
## non-active packages
|
|
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-debuginfo",
|
|
description="Debug information for package lsphp71",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-dbg",
|
|
description="The interactive PHP debugger",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-mysql56-debuginfo",
|
|
description="Debug information for package lsphp71-mysql56",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-lsphp53-devel",
|
|
description="Files needed for building PHP extensions",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-mysql56",
|
|
description="PHP scripting language for creating dynamic web sites",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-opcache",
|
|
description="The Zend OPcache",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-sqlite",
|
|
description="Extension for the SQLite V2 Embeddable SQL Database Engine",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-xcache",
|
|
description="PHP accelerator, optimizer, encoder and dynamic content cacher",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-xcache-admin",
|
|
description="XCache Administration",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-pecl-apcu",
|
|
description="APC User Cache",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-pecl-apcu-devel",
|
|
description="APCu developer files (header)",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-pecl-apcu-panel",
|
|
description="APCu control panel",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-pecl-igbinary",
|
|
description="Replacement for the standard PHP serializer",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-pecl-igbinary-debuginfo",
|
|
description="Debug information for package lsphp71-pecl-igbinary",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-pecl-igbinary-devel",
|
|
description="Igbinary developer files (header)",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-pecl-memcache",
|
|
description="Extension to work with the Memcached caching daemon",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-pecl-memcached",
|
|
description="Extension to work with the Memcached caching daemon",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-pecl-msgpack",
|
|
description="API for communicating with MessagePack serialization",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-pecl-redis",
|
|
description="Extension for communicating with the Redis key-value store",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
phpExtension = installedPackages(phpVers=php71,
|
|
extensionName="lsphp71-zip",
|
|
description="ZIP archive management extension for PHP",
|
|
status=0)
|
|
|
|
phpExtension.save()
|
|
|
|
if PHP.objects.count() == 6:
|
|
|
|
newPHP72 = PHP(phpVers="php72")
|
|
newPHP72.save()
|
|
|
|
extensionDetailsPath = os.path.join('/usr','local','CyberCP','managePHP','php72.xml')
|
|
|
|
php72 = ElementTree.parse(extensionDetailsPath)
|
|
|
|
php72Extensions = php72.findall('extension')
|
|
|
|
for extension in php72Extensions:
|
|
|
|
extensionName = extension.find('extensionName').text
|
|
extensionDescription = extension.find('extensionDescription').text
|
|
status = int(extension.find('status').text)
|
|
|
|
phpExtension = installedPackages(phpVers=newPHP72,
|
|
extensionName=extensionName,
|
|
description=extensionDescription,
|
|
status=status)
|
|
|
|
phpExtension.save()
|
|
|
|
return render(request,'managePHP/installExtensions.html')
|
|
except KeyError:
|
|
return redirect(loadLoginPage)
|
|
|
|
|
|
def getExtensionsInformation(request):
|
|
|
|
try:
|
|
val = request.session['userID']
|
|
admin = Administrator.objects.get(pk=val)
|
|
try:
|
|
if admin.type == 1:
|
|
if request.method == 'POST':
|
|
|
|
data = json.loads(request.body)
|
|
phpVers = data['phpSelection']
|
|
|
|
if phpVers == "PHP 5.3":
|
|
phpVers = "php53"
|
|
elif phpVers == "PHP 5.4":
|
|
phpVers = "php54"
|
|
elif phpVers == "PHP 5.5":
|
|
phpVers = "php55"
|
|
elif phpVers == "PHP 5.6":
|
|
phpVers = "php56"
|
|
elif phpVers == "PHP 7.0":
|
|
phpVers = "php70"
|
|
elif phpVers == "PHP 7.1":
|
|
phpVers = "php71"
|
|
elif phpVers == "PHP 7.2":
|
|
phpVers = "php72"
|
|
|
|
php = PHP.objects.get(phpVers=phpVers)
|
|
|
|
records = php.installedpackages_set.all()
|
|
|
|
json_data = "["
|
|
checker = 0
|
|
|
|
for items in records:
|
|
|
|
if items.status == 0:
|
|
status = "Not-Installed"
|
|
else:
|
|
status = "Installed"
|
|
|
|
dic = {'id': items.id,
|
|
'phpVers': items.phpVers.phpVers,
|
|
'extensionName': items.extensionName,
|
|
'description': items.description,
|
|
'status': status
|
|
}
|
|
|
|
if checker == 0:
|
|
json_data = json_data + json.dumps(dic)
|
|
checker = 1
|
|
else:
|
|
json_data = json_data + ',' + json.dumps(dic)
|
|
|
|
json_data = json_data + ']'
|
|
final_json = json.dumps({'fetchStatus': 1, 'error_message': "None", "data": json_data})
|
|
return HttpResponse(final_json)
|
|
else:
|
|
final_json = json.dumps({'fetchStatus': 0, 'error_message': "Not enough privileges."})
|
|
return HttpResponse(final_json)
|
|
|
|
except BaseException,msg:
|
|
final_dic = {'fetchStatus': 0, 'error_message': str(msg)}
|
|
final_json = json.dumps(final_dic)
|
|
|
|
return HttpResponse(final_json)
|
|
except KeyError:
|
|
final_dic = {'fetchStatus': 0, 'error_message': "Not Logged In, please refresh the page or login again."}
|
|
final_json = json.dumps(final_dic)
|
|
return HttpResponse(final_json)
|
|
|
|
|
|
def submitExtensionRequest(request):
|
|
try:
|
|
val = request.session['userID']
|
|
admin = Administrator.objects.get(pk=val)
|
|
try:
|
|
if admin.type == 1:
|
|
if request.method == 'POST':
|
|
|
|
data = json.loads(request.body)
|
|
extensionName = data['extensionName']
|
|
type = data['type']
|
|
|
|
|
|
|
|
if type=="install":
|
|
phpUtilities.initiateInstall(extensionName)
|
|
|
|
else:
|
|
phpUtilities.initiateRemoval(extensionName)
|
|
|
|
final_json = json.dumps({'extensionRequestStatus': 1, 'error_message': "None"})
|
|
return HttpResponse(final_json)
|
|
else:
|
|
final_json = json.dumps({'extensionRequestStatus': 0, 'error_message': "Not enough privileges."})
|
|
return HttpResponse(final_json)
|
|
|
|
except BaseException,msg:
|
|
final_dic = {'extensionRequestStatus': 0, 'error_message': str(msg)}
|
|
final_json = json.dumps(final_dic)
|
|
|
|
return HttpResponse(final_json)
|
|
except KeyError:
|
|
final_dic = {'extensionRequestStatus': 0, 'error_message': "Not Logged In, please refresh the page or login again."}
|
|
final_json = json.dumps(final_dic)
|
|
return HttpResponse(final_json)
|
|
|
|
|
|
def getRequestStatus(request):
|
|
try:
|
|
val = request.session['userID']
|
|
admin= Administrator.objects.get(pk=val)
|
|
try:
|
|
if admin.type == 1:
|
|
if request.method == 'POST':
|
|
data = json.loads(request.body)
|
|
size = data['size']
|
|
extensionName = data['extensionName']
|
|
|
|
|
|
requestStatus = unicode(open(phpUtilities.installLogPath, "r").read())
|
|
requestStatusSize = len(requestStatus)
|
|
|
|
if requestStatus.find("PHP Extension Installed")>-1:
|
|
if subprocess.check_output(["yum", "list", "installed"]).find(extensionName) > -1:
|
|
ext = installedPackages.objects.get(extensionName=extensionName)
|
|
ext.status = 1
|
|
ext.save()
|
|
else:
|
|
ext = installedPackages.objects.get(extensionName=extensionName)
|
|
ext.status = 0
|
|
ext.save()
|
|
|
|
|
|
installUtilities.reStartLiteSpeed()
|
|
final_json = json.dumps({'finished': 1, 'extensionRequestStatus': 1,
|
|
'error_message': "None",
|
|
'requestStatus': requestStatus,
|
|
'size': requestStatusSize})
|
|
return HttpResponse(final_json)
|
|
elif requestStatus.find("Can not be installed") > -1:
|
|
|
|
if subprocess.check_output(["yum", "list", "installed"]).find(extensionName) > -1:
|
|
ext = installedPackages.objects.get(extensionName=extensionName)
|
|
ext.status = 1
|
|
ext.save()
|
|
else:
|
|
ext = installedPackages.objects.get(extensionName=extensionName)
|
|
ext.status = 0
|
|
ext.save()
|
|
|
|
installUtilities.reStartLiteSpeed()
|
|
final_json = json.dumps({'finished': 1, 'extensionRequestStatus': 1,
|
|
'error_message': "None",
|
|
'requestStatus': requestStatus,
|
|
'size': requestStatusSize})
|
|
return HttpResponse(final_json)
|
|
elif requestStatus.find("Can not un-install Extension") > -1:
|
|
|
|
if subprocess.check_output(["yum", "list", "installed"]).find(extensionName) > -1:
|
|
ext = installedPackages.objects.get(extensionName=extensionName)
|
|
ext.status = 1
|
|
ext.save()
|
|
else:
|
|
ext = installedPackages.objects.get(extensionName=extensionName)
|
|
ext.status = 0
|
|
ext.save()
|
|
|
|
installUtilities.reStartLiteSpeed()
|
|
final_json = json.dumps({'finished': 1, 'extensionRequestStatus': 1,
|
|
'error_message': "None",
|
|
'requestStatus': requestStatus,
|
|
'size': requestStatusSize})
|
|
return HttpResponse(final_json)
|
|
elif requestStatus.find("PHP Extension Removed") > -1:
|
|
|
|
if subprocess.check_output(["yum", "list", "installed"]).find(extensionName) > -1:
|
|
ext = installedPackages.objects.get(extensionName=extensionName)
|
|
ext.status = 1
|
|
ext.save()
|
|
else:
|
|
ext = installedPackages.objects.get(extensionName=extensionName)
|
|
ext.status = 0
|
|
ext.save()
|
|
|
|
installUtilities.reStartLiteSpeed()
|
|
final_json = json.dumps({'finished': 1, 'extensionRequestStatus': 1,
|
|
'error_message': "None",
|
|
'requestStatus': requestStatus,
|
|
'size': requestStatusSize})
|
|
return HttpResponse(final_json)
|
|
else:
|
|
final_json = json.dumps({'finished': 0, 'extensionRequestStatus': 1,
|
|
'error_message': "None",
|
|
'requestStatus': requestStatus,
|
|
'size': requestStatusSize})
|
|
return HttpResponse(final_json)
|
|
|
|
else:
|
|
final_json = json.dumps({'finished': 0, 'extensionRequestStatus': 0,
|
|
'error_message': "Not enough privileges."})
|
|
return HttpResponse(final_json)
|
|
|
|
|
|
|
|
except BaseException,msg:
|
|
final_dic = {'extensionRequestStatus': 0, 'error_message': str(msg)}
|
|
final_json = json.dumps(final_dic)
|
|
return HttpResponse(final_json)
|
|
except KeyError:
|
|
final_dic = {'extensionRequestStatus': 0, 'error_message': "Not Logged In, please refresh the page or login again."}
|
|
final_json = json.dumps(final_dic)
|
|
return HttpResponse(final_json)
|
|
|
|
|
|
|
|
def editPHPConfigs(request):
|
|
try:
|
|
val = request.session['userID']
|
|
|
|
admin = Administrator.objects.get(pk=val)
|
|
|
|
if admin.type == 3:
|
|
return HttpResponse("You don't have enough privileges to access this page.")
|
|
|
|
return render(request,'managePHP/editPHPConfig.html')
|
|
except KeyError:
|
|
return redirect(loadLoginPage)
|
|
|
|
|
|
def getCurrentPHPConfig(request):
|
|
try:
|
|
val = request.session['userID']
|
|
admin = Administrator.objects.get(pk=val)
|
|
try:
|
|
if admin.type == 1:
|
|
if request.method == 'POST':
|
|
|
|
data = json.loads(request.body)
|
|
phpVers = data['phpSelection']
|
|
|
|
if phpVers == "PHP 5.3":
|
|
phpVers = "php53"
|
|
elif phpVers == "PHP 5.4":
|
|
phpVers = "php54"
|
|
elif phpVers == "PHP 5.5":
|
|
phpVers = "php55"
|
|
elif phpVers == "PHP 5.6":
|
|
phpVers = "php56"
|
|
elif phpVers == "PHP 7.0":
|
|
phpVers = "php70"
|
|
elif phpVers == "PHP 7.1":
|
|
phpVers = "php71"
|
|
elif phpVers == "PHP 7.2":
|
|
phpVers = "php72"
|
|
|
|
path = "/usr/local/lsws/ls"+phpVers+"/etc/php.ini"
|
|
|
|
allow_url_fopen = "0"
|
|
display_errors = "0"
|
|
file_uploads = "0"
|
|
allow_url_include = "0"
|
|
memory_limit = ""
|
|
max_execution_time = ""
|
|
upload_max_filesize = ""
|
|
max_input_time = ""
|
|
|
|
data = open(path,'r').readlines()
|
|
|
|
for items in data:
|
|
if items.find("allow_url_fopen")>-1 and items.find("=")>-1:
|
|
if items.find("On") > -1:
|
|
allow_url_fopen = "1"
|
|
if items.find("display_errors")>-1 and items.find("=")>-1:
|
|
if items.find("On") > -1:
|
|
display_errors = "1"
|
|
if items.find("file_uploads")>-1 and items.find("=")>-1:
|
|
if items.find("On") > -1:
|
|
file_uploads = "1"
|
|
if items.find("allow_url_include")>-1 and items.find("=")>-1:
|
|
if items.find("On") > -1:
|
|
allow_url_include = "1"
|
|
if items.find("memory_limit")>-1 and items.find("=")>-1:
|
|
memory_limit = re.findall(r"[A-Za-z0-9_]+", items)[1]
|
|
if items.find("max_execution_time")>-1 and items.find("=")>-1:
|
|
max_execution_time = re.findall(r"[A-Za-z0-9_]+", items)[1]
|
|
if items.find("upload_max_filesize")>-1 and items.find("=")>-1:
|
|
upload_max_filesize = re.findall(r"[A-Za-z0-9_]+", items)[1]
|
|
if items.find("max_input_time")>-1 and items.find("=")>-1:
|
|
max_input_time = re.findall(r"[A-Za-z0-9_]+", items)[1]
|
|
if items.find("post_max_size") > -1 and items.find("=") > -1:
|
|
post_max_size = re.findall(r"[A-Za-z0-9_]+", items)[1]
|
|
|
|
|
|
|
|
final_dic = {'fetchStatus': 1,
|
|
'allow_url_fopen': allow_url_fopen,
|
|
'display_errors': display_errors,
|
|
'file_uploads': file_uploads,
|
|
'allow_url_include': allow_url_include,
|
|
'memory_limit': memory_limit,
|
|
'max_execution_time': max_execution_time,
|
|
'upload_max_filesize': upload_max_filesize,
|
|
'max_input_time': max_input_time,
|
|
'post_max_size':post_max_size}
|
|
|
|
final_json = json.dumps(final_dic)
|
|
|
|
return HttpResponse(final_json)
|
|
else:
|
|
final_dic = {'fetchStatus': 0,
|
|
'error_message': 'Not enough privileges.'
|
|
}
|
|
|
|
final_json = json.dumps(final_dic)
|
|
|
|
return HttpResponse(final_json)
|
|
|
|
except BaseException,msg:
|
|
final_dic = {'fetchStatus': 0, 'error_message': str(msg)}
|
|
final_json = json.dumps(final_dic)
|
|
|
|
return HttpResponse(final_json)
|
|
|
|
|
|
return render(request,'managePHP/editPHPConfig.html')
|
|
except KeyError:
|
|
return redirect(loadLoginPage)
|
|
|
|
|
|
def savePHPConfigBasic(request):
|
|
try:
|
|
val = request.session['userID']
|
|
admin = Administrator.objects.get(id=val)
|
|
try:
|
|
if admin.type == 1:
|
|
if request.method == 'POST':
|
|
|
|
data = json.loads(request.body)
|
|
phpVers = data['phpSelection']
|
|
allow_url_fopen = data['allow_url_fopen']
|
|
display_errors = data['display_errors']
|
|
file_uploads = data['file_uploads']
|
|
allow_url_include = data['allow_url_include']
|
|
memory_limit = data['memory_limit']
|
|
max_execution_time = data['max_execution_time']
|
|
upload_max_filesize = data['upload_max_filesize']
|
|
max_input_time = data['max_input_time']
|
|
post_max_size = data['post_max_size']
|
|
|
|
if allow_url_fopen == True:
|
|
allow_url_fopen = "allow_url_fopen = On"
|
|
else:
|
|
allow_url_fopen = "allow_url_fopen = Off"
|
|
|
|
if display_errors == True:
|
|
display_errors = "display_errors = On"
|
|
else:
|
|
display_errors = "display_errors = Off"
|
|
|
|
|
|
if file_uploads == True:
|
|
file_uploads = "file_uploads = On"
|
|
else:
|
|
file_uploads = "file_uploads = Off"
|
|
|
|
|
|
if allow_url_include == True:
|
|
allow_url_include = "allow_url_include = On"
|
|
else:
|
|
allow_url_include = "allow_url_include = Off"
|
|
|
|
if phpVers == "PHP 5.3":
|
|
phpVers = "php53"
|
|
elif phpVers == "PHP 5.4":
|
|
phpVers = "php54"
|
|
elif phpVers == "PHP 5.5":
|
|
phpVers = "php55"
|
|
elif phpVers == "PHP 5.6":
|
|
phpVers = "php56"
|
|
elif phpVers == "PHP 7.0":
|
|
phpVers = "php70"
|
|
elif phpVers == "PHP 7.1":
|
|
phpVers = "php71"
|
|
elif phpVers == "PHP 7.2":
|
|
phpVers = "php72"
|
|
|
|
##
|
|
|
|
execPath = "sudo python " + virtualHostUtilities.cyberPanel + "/plogical/phpUtilities.py"
|
|
|
|
execPath = execPath + " savePHPConfigBasic --phpVers " + phpVers + " --allow_url_fopen '" + allow_url_fopen + "' --display_errors '" + display_errors + "' --file_uploads '" + file_uploads + "' --allow_url_include '" + allow_url_include + "' --memory_limit " + memory_limit+ " --max_execution_time " + max_execution_time + " --upload_max_filesize " + upload_max_filesize + " --max_input_time " + max_input_time + " --post_max_size " + post_max_size
|
|
|
|
|
|
|
|
output = subprocess.check_output(shlex.split(execPath))
|
|
|
|
if output.find("1,None") > -1:
|
|
data_ret = {'saveStatus': 1}
|
|
final_json = json.dumps(data_ret)
|
|
return HttpResponse(final_json)
|
|
else:
|
|
final_dic = {'saveStatus': 0, 'error_message': output}
|
|
final_json = json.dumps(final_dic)
|
|
return HttpResponse(final_json)
|
|
|
|
else:
|
|
final_dic = {'saveStatus': 0, 'error_message': 'Not enough privileges.'}
|
|
final_json = json.dumps(final_dic)
|
|
return HttpResponse(final_json)
|
|
|
|
except BaseException,msg:
|
|
final_dic = {'saveStatus': 0, 'error_message': str(msg)}
|
|
final_json = json.dumps(final_dic)
|
|
return HttpResponse(final_json)
|
|
except KeyError:
|
|
return redirect(loadLoginPage)
|
|
|
|
|
|
|
|
#### Get Advance PHP Configs
|
|
|
|
|
|
|
|
def getCurrentAdvancedPHPConfig(request):
|
|
try:
|
|
val = request.session['userID']
|
|
admin = Administrator.objects.get(id=val)
|
|
try:
|
|
if admin.type == 1:
|
|
if request.method == 'POST':
|
|
|
|
data = json.loads(request.body)
|
|
phpVers = data['phpSelection']
|
|
|
|
if phpVers == "PHP 5.3":
|
|
phpVers = "php53"
|
|
elif phpVers == "PHP 5.4":
|
|
phpVers = "php54"
|
|
elif phpVers == "PHP 5.5":
|
|
phpVers = "php55"
|
|
elif phpVers == "PHP 5.6":
|
|
phpVers = "php56"
|
|
elif phpVers == "PHP 7.0":
|
|
phpVers = "php70"
|
|
elif phpVers == "PHP 7.1":
|
|
phpVers = "php71"
|
|
elif phpVers == "PHP 7.2":
|
|
phpVers = "php72"
|
|
|
|
path = "/usr/local/lsws/ls"+phpVers+"/etc/php.ini"
|
|
|
|
configData = open(path, "r").read()
|
|
|
|
status = {"fetchStatus": 1, "configData": configData}
|
|
final_json = json.dumps(status)
|
|
return HttpResponse(final_json)
|
|
|
|
else:
|
|
status = {"fetchStatus": 1, "error_message": 'Not enough privileges.'}
|
|
final_json = json.dumps(status)
|
|
return HttpResponse(final_json)
|
|
|
|
|
|
except BaseException,msg:
|
|
final_dic = {'fetchStatus': 0, 'error_message': str(msg)}
|
|
final_json = json.dumps(final_dic)
|
|
return HttpResponse(final_json)
|
|
except KeyError:
|
|
return redirect(loadLoginPage)
|
|
|
|
|
|
def savePHPConfigAdvance(request):
|
|
try:
|
|
val = request.session['userID']
|
|
admin = Administrator.objects.get(pk=val)
|
|
|
|
if admin.type == 1:
|
|
|
|
if request.method == 'POST':
|
|
try:
|
|
data = json.loads(request.body)
|
|
phpVers = data['phpSelection']
|
|
|
|
if phpVers == "PHP 5.3":
|
|
phpVers = "php53"
|
|
elif phpVers == "PHP 5.4":
|
|
phpVers = "php54"
|
|
elif phpVers == "PHP 5.5":
|
|
phpVers = "php55"
|
|
elif phpVers == "PHP 5.6":
|
|
phpVers = "php56"
|
|
elif phpVers == "PHP 7.0":
|
|
phpVers = "php70"
|
|
elif phpVers == "PHP 7.1":
|
|
phpVers = "php71"
|
|
elif phpVers == "PHP 7.2":
|
|
phpVers = "php72"
|
|
|
|
path = "/usr/local/lsws/ls" + phpVers + "/etc/php.ini"
|
|
|
|
tempPath = "/home/cyberpanel/" + str(randint(1000, 9999))
|
|
|
|
vhost = open(tempPath, "w")
|
|
|
|
vhost.write(data['configData'])
|
|
|
|
vhost.close()
|
|
|
|
execPath = "sudo python " + virtualHostUtilities.cyberPanel + "/plogical/phpUtilities.py"
|
|
|
|
execPath = execPath + " savePHPConfigAdvance --phpVers " + path + " --tempPath " + tempPath
|
|
|
|
|
|
|
|
output = subprocess.check_output(shlex.split(execPath))
|
|
|
|
if output.find("1,None") > -1:
|
|
status = {"saveStatus": 1, "configData": data['configData']}
|
|
final_json = json.dumps(status)
|
|
return HttpResponse(final_json)
|
|
else:
|
|
data_ret = {'saveStatus': 0, 'error_message': output}
|
|
json_data = json.dumps(data_ret)
|
|
return HttpResponse(json_data)
|
|
|
|
except BaseException, msg:
|
|
data_ret = {'saveStatus': 0, 'error_message': str(msg)}
|
|
json_data = json.dumps(data_ret)
|
|
return HttpResponse(json_data)
|
|
else:
|
|
data_ret = {'saveStatus': 0, 'error_message': 'Not enough privileges.'}
|
|
json_data = json.dumps(data_ret)
|
|
return HttpResponse(json_data)
|
|
|
|
except KeyError, msg:
|
|
logging.CyberCPLogFileWriter.writeToFile(str(msg) + "[saveConfigsToFile]")
|
|
return HttpResponse("Not Logged in as admin") |