我不确定其他人是否也遇到过这个问题,但我真的很努力解决这个错误,它说:
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 并且在我的计算机的 localhost 中一切正常,但是当我上传到服务器时它得到了那个错误,为什么会出现这个错误,任何人都可以告诉我如何摆脱它?它是否必须与服务器部分的 php 版本有关?