|
作者 株式会社アミックス
|
|
2010/01/21 木曜日 15:03:43 JST |
|
Apacheのエラー
[Thu Jan 21 14:54:35 2010] [error] [client 118.8.0.215] PHP Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 4096 bytes) in ・・・
などのようにJoomlaやコンポーネントの設定ファイルが開かないなど
解決方法:
/etc/php.ini の memory_limit = 8M → 16M
に変更しApacheの再起動 |
|
|
作者 株式会社アミックス
|
|
2010/01/04 月曜日 14:04:23 JST |
|
/html/includes/joomla.phpの変更
function setPageTitle( $title=null ) {
if (@$GLOBALS['mosConfig_pagetitles']) {
$title = trim( htmlspecialchars( $title ) );
$title = stripslashes($title);
//$this->_head['title'] = $title ? $GLOBALS['mosConfig_sitename'] . ' - '. $title : $GLOBALS['mosConfig_sitename'];
//タイトルのスイッチ
switch($_SERVER['REQUEST_URI']){
case '/index.php?option=com_contact&task=view&contact_id=2&Itemid=124': $title = 'ご意見箱'; break;
case '/index.php?option=com_contact&task=view&contact_id=1&Itemid=125': $title = '技術的なお問い合せ'; break;
}
$this->_head['title'] = $title ? $GLOBALS['mosConfig_sitename'] . ' - '. $title : $GLOBALS['mosConfig_sitename'];
}
} |
|
|
|
<< 最初 < 戻る 1 2 3 4 次へ > 最後 >>
|
| 結果 1 - 7 of 23 |