Unfortunately the plugin is not working. (Token missing etc.) Does it use the newer PHP SDK? Or the deprecated Rest,...
i installed it on elgg 1.6 but in admin tools page, in fbconnect section i not have setting button, so i can't insert api and secret.
Please help me.
thanks
hello can i use this for elgg 1.8 version .....??
i've a question: why i can see the images (uploaded automatically in /data/a/d/m/i/n/admin) only if admin is logged but a visitator don't see any images (don't have previliges)... how I can change permissions?
thanks!!!!
I think the problem of permission denied is in the file image_viewer.php, but i don't know where....
<?php
include_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
$file_guid = (int) get_input('file_guid');
$file = get_entity($file_guid);
$readfile = new ElggFile();
$readfile->owner_guid = $file->owner_guid;
$readfile->setFilename($file->originalfilename);
$filename = $readfile->getFilenameOnFilestore();
$handle = fopen($filename, "r");
$contents = fread($handle, filesize($filename));
fclose($handle);
$mime = $file->getMimeType();
$expires = 14 * 60*60*24;
header("Content-Type: $mime");
header("Content-Length: " . strlen($contents));
header("Cache-Control: public", true);
header("Pragma: public", true);
header('Expires: ' . gmdate('D, d M Y H:i:s', time() + $expires) . ' GMT', true);
echo $contents;
exit;
?>
Hi, it suposed to works with elgg 1.7??? I have installed it in 1.6 and with some changes everything was fine but now It doesn`t work when i update my elgg version...
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by Raül Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.