Fix bug 6136, shared should be relative to the installation
This commit is contained in:
@@ -258,7 +258,7 @@ var installer=function()
|
||||
|
||||
var tr = this.table.insertRow(-1);
|
||||
$(tr).append(
|
||||
new DOM('td',{innerHTML:"Workflow Data Directory: ",className:"inst_td0"},{width:"30%"}),
|
||||
new DOM('td',{innerHTML:"Workflow Data Directory (permissions: <b>writable</b>): ",className:"inst_td0"},{width:"30%"}),
|
||||
new DOM('td',{className:"inst_td1"},{width:"30%"}).append(
|
||||
this.workflowData = new input({label:this.options.path_data,properties:{onkeyup:this.submit},style:{width:"100%"},maxlength:200})
|
||||
),
|
||||
|
||||
@@ -84,8 +84,8 @@ echo '<?xml version="1.0" encoding="UTF-8" ?>';
|
||||
{
|
||||
classInstaller.make({
|
||||
server :"installServer.php",
|
||||
path_data:"<?php echo defined('PATH_DATA')?PATH_DATA:'/opt/processmaker/shared';?>",
|
||||
path_compiled:"<?php echo defined('PATH_C')?PATH_C:'/opt/processmaker/compiled';?>",
|
||||
path_data:"<?php echo defined('PATH_DATA')?PATH_DATA:PATH_TRUNK.'shared';?>",
|
||||
path_compiled:"<?php echo defined('PATH_C')?PATH_C:PATH_TRUNK.'compiled';?>",
|
||||
path_trunk:"<?php echo PATH_CORE;?>"
|
||||
});
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user