ファイルで使用する Joomla ルート ディレクトリを見つけるにはどうすればよいですか? 運が悪かったので、次のことを試しました:
$path = JPATH_COMPONENT;
//Gives component root
$path = JURI::root();
//Gives absolute path, can't be used for some reason (http://www.site.com)
$path = $_SERVER['DOCUMENT_ROOT'];
//Gives public_html folder, but if someone installs joomla in a directory and not in root, it wrecks the whole thing
サイトのみの joomla ルートを見つける方法はありますか? ありがとう。