我不知道以前太別人是否有這個問題,但我真的有這個錯誤掙扎,它說:的Joomla index.php文件越來越錯誤
mark('afterLoad') : null;
// Instantiate the application.
$app = JFactory::getApplication('site');
// Initialise the application.
$app->initialise();
// Mark afterIntialise in the profiler.
JDEBUG ? $_PROFILER->mark('afterInitialise') : null;
// Route the application. $app->route();
// Mark afterRoute in the profiler.
JDEBUG ? $_PROFILER->mark('afterRoute') : null;
// Dispatch the application.
$app->dispatch();
// Mark afterDispatch in the profiler.
JDEBUG ? $_PROFILER->mark('afterDispatch') : null;
// Render the application.
$app->render();
// Mark afterRender in the profiler.
JDEBUG ? $_PROFILER->mark('afterRender') : null;
// Return the response.
echo $app;
我的Joomla 1.7.3和在我的電腦本地主機它的工作一切正常,但是當我上傳到服務器它得到這個錯誤,怎麼來crate這個錯誤任何人都可以請告訴我任何方式如何擺脫它? 它必須做一些從服務器部分的PHP版本?
檢查的Joomla配置文件(config.php文件) ,檢查htaccess ..您正在使用的PHP版本?檢查這個鏈接的技術要求 - http://www.joomla.org/technical-requirements.html檢查服務器的PHP版本 – swapnesh
我使用PHP版本\t 5.3.8和我上傳joomla的服務器它有較少的版本5.1東西,你認爲這可能是PHP版本的錯誤,你在htaccess中的含義是什麼,我應該在這裏做什麼? – lulzim
是的,正好....這是joomla 1.7的最低最低版本5.2.4 +,如果你使用的是這個,那麼肯定是缺少了:) – swapnesh