hi
i not problem, and good working , when login to jomsocial, show (frontpage,or profile,or video ,... ) , config with admin
but
after update joomla to 3.4.6 , if config admin jomsocial = (forntpage,video,profile, or ....) show edit profile joomla
when loging with (form jomsocial) ---> redirect to edit profile joomla : /component/users/profile
jomsocial : 4.1.3
joomla : 3.4.6
how to fix?
Hi Davood,
Would you mind provide me htaccess account please? because I cant access your backend restricted with htaccess dialog.
thank you
Hi Davood,
I able to login now, but your site very slowww.. its like I am trying access the CIA web system, your security really secure (just kidding :P)
Well, please you update your jomsocial to version 4.1.4, i tested on our development site with 4.1.4 and dont get this issue everything is working fine.
thank you
i update to 4.1.4 , and again problem :(
i found problem
public static function isInternal($url)
{
$uri = static::getInstance($url);
$base = $uri->toString(array('scheme', 'host', 'port', 'path'));
$host = $uri->toString(array('scheme', 'host', 'port'));
// @see JURITest
if (empty($host) && strpos($uri->path, 'index.php') === 0
|| !empty($host) && preg_match('#' . preg_quote(static::base(), '#') . '#', $base)
|| !empty($host) && $host === static::getInstance(static::base())->host && strpos($uri->path, 'index.php') !== false
|| !empty($host) && $base === $host && preg_match('#' . preg_quote($base, '#') . '#', static::base()))
{
return true;
}
return false;
}
Hi,
here the fix:
/components/com_community/views/frontpage/view.html.php line 64
changing it from
$uri = CRoute::_('index.php?option=com_community&view=' . $config->get('redirect_login'), false);
$uri = preg_replace("/^\//", "", CRoute::_('index.php?option=com_community&view=' . $config->get('redirect_login'), false));
thank ypu
but i changed cod and tested but not working, and redirect again to ----> ......./commponent/usesr/profile.html
Hi,
That code from Albert should work, please you modify it carefully and right..
another explanation
www.jomsocial.com/forum/installation/310...-this-problem#150565
thank you!