他の誰かが以前にこの問題を抱えているかどうかはわかりませんが、このエラーに本当に苦労しています。
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バージョンで何かをする必要がありますか???