diff --git a/workflow/engine/classes/class.Installer.php b/workflow/engine/classes/class.Installer.php index 3350aa6d3..92ae14840 100755 --- a/workflow/engine/classes/class.Installer.php +++ b/workflow/engine/classes/class.Installer.php @@ -199,7 +199,7 @@ class Installer if (defined('PARTNER_FLAG') || isset($_REQUEST['PARTNER_FLAG'])) { $dbText .= "define ('PARTNER_FLAG', " . ((defined('PARTNER_FLAG')) ? PARTNER_FLAG : ((isset($_REQUEST['PARTNER_FLAG'])) ? $_REQUEST['PARTNER_FLAG']:'false')) . ");\n"; if (defined('SYSTEM_NAME')) { - $dbText .= " define ('SYSTEM_NAME', " . SYSTEM_NAME . ");\n"; + $dbText .= " define ('SYSTEM_NAME', '" . SYSTEM_NAME . "');\n"; } } $fp = @fopen($db_file, "w"); diff --git a/workflow/engine/classes/model/Translation.php b/workflow/engine/classes/model/Translation.php index 5462c357c..6ffad210d 100755 --- a/workflow/engine/classes/model/Translation.php +++ b/workflow/engine/classes/model/Translation.php @@ -295,11 +295,11 @@ class Translation extends BaseTranslation fwrite( $f, '$translation' . $plugin . ' =' . 'unserialize(\'' . addcslashes( serialize( $translation ), '\\\'' ) . "');\n" ); fwrite( $f, "?>" ); fclose( $f ); - +/* $f = fopen( $cacheFileJS, 'w' ); fwrite( $f, "var G_STRINGS =" . Bootstrap::json_encode( $translationJS ) . ";\n" ); fclose( $f ); - +*/ $res['cacheFile'] = $cacheFile; $res['cacheFileJS'] = $cacheFileJS; $res['rows'] = count( $translation ); diff --git a/workflow/engine/controllers/installer.php b/workflow/engine/controllers/installer.php index ed9e9be0e..4818f9c03 100644 --- a/workflow/engine/controllers/installer.php +++ b/workflow/engine/controllers/installer.php @@ -695,7 +695,7 @@ class Installer extends Controller $dbText .= "\n"; $dbText .= " define ('PARTNER_FLAG', " . ((defined('PARTNER_FLAG')) ? PARTNER_FLAG : ((isset($_REQUEST['PARTNER_FLAG'])) ? $_REQUEST['PARTNER_FLAG']:'false')) . ");\n"; if ($this->systemName != '') { - $dbText .= " define ('SYSTEM_NAME', " . $this->systemName . ");\n"; + $dbText .= " define ('SYSTEM_NAME', '" . $this->systemName . "');\n"; } } @@ -985,7 +985,7 @@ class Installer extends Controller $dbText .= "\n"; $dbText .= " define ('PARTNER_FLAG', " . ((defined('PARTNER_FLAG')) ? PARTNER_FLAG : ((isset($_REQUEST['PARTNER_FLAG'])) ? $_REQUEST['PARTNER_FLAG']:'false')) . ");\n"; if ($this->systemName != '') { - $dbText .= " define ('SYSTEM_NAME', " . $this->systemName . ");\n"; + $dbText .= " define ('SYSTEM_NAME', '" . $this->systemName . "');\n"; } } @@ -1408,20 +1408,7 @@ EOL; $ch = curl_init(); $postData = array(); - error_log('** LENGUAJE **'); // File to upload/post - $parm1 = "@".PATH_CORE."content/translations/processmaker.$lang.po"; - - error_log('parm1 ------'); - error_log($parm1); - error_log('------'); - - $parm2 = "$serv/sys{$workspace}/{$lang}/{$skinName}/setup/languages_Import"; - - error_log('parm2 ------'); - error_log($parm2); - error_log('------'); - $postData['form[LANGUAGE_FILENAME]'] = "@".PATH_CORE."content/translations/processmaker.$lang.po"; curl_setopt($ch, CURLOPT_URL, "$serv/sys{$workspace}/{$lang}/{$skinName}/setup/languages_Import"); @@ -1436,9 +1423,6 @@ EOL; curl_setopt($ch, CURLOPT_TIMEOUT, 90); $output = curl_exec($ch); - error_log('respuesta ------'); - error_log($output); - error_log('------'); curl_close($ch); /** @@ -1459,9 +1443,6 @@ EOL; // File to upload/post $postData['uploadedFile'] = "@".$skin; - error_log('** SKIN **'); - error_log('archivo -> ' . $postData['uploadedFile']); - error_log('link -> ' . "$serv/sys{$workspace}/{$lang}/{$skinName}/setup/skin_Ajax"); curl_setopt($ch, CURLOPT_URL, "$serv/sys{$workspace}/{$lang}/{$skinName}/setup/skin_Ajax"); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_VERBOSE, 0); @@ -1474,8 +1455,6 @@ EOL; curl_setopt($ch, CURLOPT_TIMEOUT, 90); $output = curl_exec($ch); - error_log('respuesta ----'); - error_log($output); curl_close($ch); } @@ -1491,11 +1470,6 @@ EOL; if (count($plugins) > 0) { $pluginName = $plugins[0]; - error_log('** PLUGIN **'); - error_log('archivo -> ' . "@{$pluginName}"); - error_log('link -> ' . "$serv/sys{$workspace}/{$lang}/{$skinName}/setup/pluginsImportFile"); - - // File to upload/post $postData['form[PLUGIN_FILENAME]'] = "@{$pluginName}"; curl_setopt($ch, CURLOPT_URL, "$serv/sys{$workspace}/{$lang}/{$skinName}/setup/pluginsImportFile"); @@ -1510,8 +1484,6 @@ EOL; curl_setopt($ch, CURLOPT_TIMEOUT, 90); $output = curl_exec($ch); - error_log('respuesta ----'); - error_log($output); curl_close($ch); } }