Please Log in or Create an account to join the conversation.
Error: No language file could be loaded. Is the DOCMAN component properly installed? /components/com_comprofiler/plugin/user/plug_docman/language/english.php
This message appears when I click on the DOCMAN tab in the CB User profile.
I've searched on the internet, but did not find the answer. I've tried several options and played around in the source, but I can't get it to work. Very annoying
Everything seems to be okay. There's nothing to edit in the plugin and all files are there.
????????
Please Log in or Create an account to join the conversation.
function getDisplayTab($tab,$user,$ui) {
global $database,$mosConfig_live_site, $mosConfig_absolute_path, $mosConfig_lang;
if (file_exists($mosConfig_absolute_path."/components/com_comprofiler/plugin/user/plug_docman/language/".$mosConfig_lang.".php")) {
include($mosConfig_absolute_path."/components/com_comprofiler/plugin/user/plug_docman/language/".$mosConfig_lang.".php");
} else {
if(file_exists($mosConfig_absolute_path."/components/com_comprofiler/plugin/user/plug_docman/language/english.php")) {
include($mosConfig_absolute_path."/components/com_comprofiler/plugin/user/plug_docman/language/english.php");
} else {
return "Error: No language file could be loaded. Is the DOCMAN component properly installed? \n".$mosConfig_absolute_path."/components/com_comprofiler/plugin/user/plug_docman/language/english.php";
}
}
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.