Notice

The forum is in read only mode.

Support Forum

Welcome! Support Forums have been reactivated
Welcome the Technical Support section. Help us in assisting you by providing us with a concise and descriptive elaboration of your issues. Be specific and if possible, provide us with a step-by-step instruction in replicating your problem.

Just upgraded from J3.5.1 to Joomla3.6 : JS backend not showing anymore

7 years 9 months ago
  • Patrice's Avatar
    Topic Author
  • Patrice
  • Offline
  • Fresh Boarder
  • Posts: 1
  • Thank you received: 5
Licenses:
JomSocial Expired

ISSUE SUMMARY:
Hello again,

Could you please provide the core.php for JS4.1.6 please ?

Thank you in advance

Regards

7 years 9 months ago
Licenses:

Hi,

please check it, I put the fix at your site already. for 4.1.6, edit:
/components/com_community/libraries/core.php and around line 655

if (array_key_exists($classname, $classes)) {
            require_once(JPATH_ROOT . '/components/com_community' . $classes[$classname]);
        }
changing it to
$app = JFactory::getApplication();
if ($app->isAdmin() && array_key_exists($classname, $classes) && file_exists(JPATH_ROOT . '/administrator/components/com_community' . $classes[$classname])) {
    require_once(JPATH_ROOT . '/administrator/components/com_community' . $classes[$classname]);
}elseif(array_key_exists($classname, $classes) && file_exists(JPATH_ROOT . '/components/com_community' . $classes[$classname])) {
    require_once(JPATH_ROOT . '/components/com_community' . $classes[$classname]);
}

Regards

The following user(s) said Thank You: Stephen
7 years 9 months ago
  • Patrice's Avatar
    Topic Author
  • Patrice
  • Offline
  • Fresh Boarder
  • Posts: 1
  • Thank you received: 5
Licenses:
JomSocial Expired

Many thanks Albertus,

you're really impressive.

Cheers

Moderators: Piotr Garasiński
Powered by Kunena Forum

Join 180,000 websites creating Amazing communities

JomSocial is the most complete, easy-to-use addon that turns Joomla CMS into a
full -fledged, social networking site

TRY NOW BUY NOW