if i add this to htaccess.dist will it fix the problme of the error messgae logging in from a differet domain is not permitted. ?
found this too:
so how do we fix this problem? please be basic : )
were do i add the code the top the bottom the middle?
También tuve este problema que tenía que acceder dos veces al login por eso puse un simple contador con una session php en el index.php para que refresque la web.
<?php
/**
* Elgg index page for web-based applications
*
* @package Elgg
* @subpackage Core
*/
/**
* Start the Elgg engine
*/
//die(dirname(__FILE__) . "/engine/start.php");
require_once(dirname(__FILE__) . "/engine/start.php");
session_start();
if(!isset($_SESSION['VIEW_FIRST'])):
$_SESSION['VIEW_FIRST'] = TRUE;
header("Location: http://www.dominio.com/");
exit;
endif;
elgg_set_context('main');
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.