aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjeroenpraat <jeroenpraat@xs4all.nl>2015-12-12 17:02:01 +0100
committerjeroenpraat <jeroenpraat@xs4all.nl>2015-12-12 17:02:01 +0100
commitf0a588547dd3c4fb1d3e8fb65d379f7b63bc963f (patch)
tree03d42e77d5cca6a03bdd818ed42caa70b6f4a661
parent04d3ac9aaf76943137d1fb59c9b0e91ef967b287 (diff)
parent395268da22bf5ec773de7fdc42a338a9cbe87d40 (diff)
downloadvolse-hubzilla-f0a588547dd3c4fb1d3e8fb65d379f7b63bc963f.tar.gz
volse-hubzilla-f0a588547dd3c4fb1d3e8fb65d379f7b63bc963f.tar.bz2
volse-hubzilla-f0a588547dd3c4fb1d3e8fb65d379f7b63bc963f.zip
Merge branch 'master' of https://github.com/redmatrix/hubzilla
-rw-r--r--include/api.php12
-rw-r--r--include/api_auth.php2
-rw-r--r--install/INSTALL.txt16
3 files changed, 28 insertions, 2 deletions
diff --git a/include/api.php b/include/api.php
index 4ad915c03..fd6883f44 100644
--- a/include/api.php
+++ b/include/api.php
@@ -112,8 +112,11 @@ require_once('include/api_auth.php');
break;
case "json":
header ("Content-Type: application/json");
- foreach($r as $rr)
+ foreach($r as $rr) {
+ if(! $rr)
+ $rr = array();
$json = json_encode($rr);
+ }
if ($_GET['callback'])
$json = $_GET['callback']."(".$json.")";
return $json;
@@ -870,6 +873,7 @@ require_once('include/api_auth.php');
// this should output the last post (the one we just posted).
return api_status_show($a,$type);
}
+ api_register_func('api/statuses/update_with_media','api_statuses_update', true);
api_register_func('api/statuses/update','api_statuses_update', true);
@@ -1078,6 +1082,8 @@ require_once('include/api_auth.php');
'contributors' => ''
);
$status_info['user'] = $user_info;
+ if(array_key_exists('status',$status_info['user']))
+ unset($status_info['user']['status']);
}
return api_apply_template("status", $type, array('$status' => $status_info));
@@ -1319,6 +1325,8 @@ require_once('include/api_auth.php');
// params
$id = intval(argv(3));
+ if(! $id)
+ $id = $_REQUEST['id'];
logger('API: api_statuses_show: '.$id);
@@ -1335,10 +1343,12 @@ require_once('include/api_auth.php');
$r = q("select * from item where true $item_normal $sql_extra",
intval($id)
);
+
xchan_query($r,true);
$ret = api_format_items($r,$user_info);
+
if ($conversation) {
$data = array('$statuses' => $ret);
return api_apply_template("timeline", $type, $data);
diff --git a/include/api_auth.php b/include/api_auth.php
index c9978c99d..e3697adb0 100644
--- a/include/api_auth.php
+++ b/include/api_auth.php
@@ -28,7 +28,7 @@ function api_login(&$a){
killme();
}
catch(Exception $e) {
- logger(__file__.__line__.__function__."\n".$e);
+ logger($e->getMessage());
}
// workarounds for HTTP-auth in CGI mode
diff --git a/install/INSTALL.txt b/install/INSTALL.txt
index 25852497b..361153e59 100644
--- a/install/INSTALL.txt
+++ b/install/INSTALL.txt
@@ -382,3 +382,19 @@ stuff on your server that might access MySQL, and Hubzilla's poller which
needs MySQL access, too. A good setting for a medium-sized hub might be to
keep MySQL's max_connections at 100 and set mpm_prefork's
MaxRequestWorkers to 70.
+------------------------------------------------------------------------
+For Calculate Automatic according to your server resources and configure
+mod_prefork you can Install and Execute ApacheTune
+
+Home Page: https://github.com/royalterra/apache2tune
+
+git clone https://github.com/royalterra/apache2tune.git
+
+cd apache2tune
+
+chmod +x Apache2tune.sh
+
+Please Read the Documentation of Apache2tune
+./Apache2tune.sh
+
+