Skip to content
Snippets Groups Projects
Commit 2a043490 authored by SNA's avatar SNA
Browse files

FEAT #2362 Adding new prerequisities

parent eb0aa553
No related branches found
No related tags found
No related merge requests found
......@@ -130,6 +130,12 @@ class Install extends functions
if (!$this->isPhpRequirements('gd')) {
return false;
}
if (!$this->isPhpRequirements('imagick')) {
return false;
}
/*if (!$this->isPhpRequirements('ghostscript')) {
return false;
}*/
if (!$this->isPearRequirements('System.php')) {
return false;
}
......@@ -295,6 +301,7 @@ class Install extends functions
$databasename
)
{
$connect = 'host='.$_SESSION['config']['databaseserver'] . ' ';
$connect .= 'port='.$_SESSION['config']['databaseserverport'] . ' ';
$connect .= 'user='.$_SESSION['config']['databaseuser'] . ' ';
......@@ -326,21 +333,21 @@ class Install extends functions
return false;
exit;
}
if (!$this->executeSQLScript('sql/structure.sql')) {
return false;
exit;
}
if (!$this->setConfigXml()) {
if (!$this->setConfigXml()) {
return false;
exit;
}
if (!$this->setDatasourcesXsd()) {
/*if (!$this->setDatasourcesXsd()) {
return false;
exit;
}
}*/
return true;
}
......@@ -348,6 +355,7 @@ class Install extends functions
private function setConfigXml()
{
$xmlconfig = simplexml_load_file('apps/maarch_entreprise/xml/config.xml.default');
//$xmlconfig = 'apps/maarch_entreprise/xml/config.xml.default';
$CONFIG = $xmlconfig->CONFIG;
$CONFIG->databaseserver = $_SESSION['config']['databaseserver'];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment