remove items from export - too much memory consumed, will have to stream items,photos

This commit is contained in:
Friendika 2011-03-22 03:25:43 -07:00
parent 83a36cbd13
commit f20464112f
1 changed files with 1 additions and 13 deletions

View File

@ -36,19 +36,7 @@ function uexport_init(&$a) {
$profile[][$k] = $v; $profile[][$k] = $v;
} }
$item = array(); $output = array('user' => $user, 'contact' => $contact, 'profile' => $profile );
$r = q("SELECT * FROM `item` WHERE `uid` = %d ",
local_user()
);
if(count($r)) {
foreach($r as $rr)
foreach($rr as $k => $v)
$item[][$k] = $v;
}
$output = array('user' => $user, 'contact' => $contact, 'profile' => $profile, 'item' => $item );
header("Content-type: text/json"); header("Content-type: text/json");
echo str_replace('\\/','/',json_encode($output)); echo str_replace('\\/','/',json_encode($output));