Merge pull request #4443 from ghermans/webinstall
Webinstall improvements
This commit is contained in:
commit
9ca3cd93e7
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
ini_set('max_execution_time', 300);
|
||||
ini_set('max_execution_time', 900);
|
||||
$phpbin = PHP_BINDIR . '/php';
|
||||
|
||||
// array to pass back data
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
<?php
|
||||
|
||||
ini_set('max_execution_time', 900);
|
||||
|
||||
// array to pass back data
|
||||
$data = array();
|
||||
$phpbin = PHP_BINDIR . '/php';
|
||||
|
|
@ -16,4 +18,4 @@ $publish = exec($publish, $data['publish'], $data['publish_results']);
|
|||
// return a response
|
||||
//return all our data to an AJAX call
|
||||
|
||||
echo json_encode($data);
|
||||
echo json_encode($data);
|
||||
|
|
|
|||
Loading…
Reference in New Issue