mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-06-07 18:04:26 +02:00
js_upload - provide a site tmp directory config in case your service provider has an unusually small /tmp partition
This commit is contained in:
parent
c1ca17e15f
commit
ed2a22ab16
12 changed files with 7 additions and 1 deletions
|
@ -196,7 +196,13 @@ class qqUploadedFileXhr {
|
|||
*/
|
||||
function save() {
|
||||
$input = fopen("php://input", "r");
|
||||
$this->pathnm = tempnam(sys_get_temp_dir(),'frn');
|
||||
|
||||
$upload_dir = get_config('system','tempdir');
|
||||
if(! $upload_dir)
|
||||
$upload_dir = sys_get_temp_dir();
|
||||
|
||||
$this->pathnm = tempnam($upload_dir,'frn');
|
||||
|
||||
$temp = fopen($this->pathnm,"w");
|
||||
$realSize = stream_copy_to_stream($input, $temp);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue