Tag: haik

about_haik_debug

index.phpでのエラー等の表示レベルの変更

画面が白くなってしまう場合の問題箇所の追求

<?php
// PukiWiki - Yet another WikiWikiWeb clone.
// $Id: index.php,v 1.9 2006/05/13 07:39:49 henoheno Exp $
// Copyright (C) 2001-2006 PukiWiki Developers Team
// License: GPL v2 or (at your option) any later version
 
// Error reporting
//error_reporting(0); // Nothing
error_reporting(E_ERROR | E_PARSE); // Avoid E_WARNING, E_NOTICE, etc
//error_reporting(E_ALL); // Debug purpose
 
// Special
//define('PKWK_READONLY',  1);
//define('PKWK_SAFE_MODE', 1);
//define('PKWK_OPTIMISE',  1);
//define('TDIARY_THEME',   'digital_gadgets');
 
// Directory definition
// (Ended with a slash like '../path/to/pkwk/', or '')
define('DATA_HOME',	'');
define('LIB_DIR',	'lib/');
 
require(LIB_DIR . 'pukiwiki.php');
?>

ここの以下の部分を

error_reporting(E_ERROR | E_PARSE); // Avoid E_WARNING, E_NOTICE, etc
//error_reporting(E_ALL); // Debug purpose
error_reporting(E_ERROR | E_PARSE); // Avoid E_WARNING, E_NOTICE, etc
//error_reporting(E_ALL); // Debug purpose
ini_set( 'display_errors', 1 );

画面が白くなってしまうような致命的なエラーの時にエラーとそれが発生しているソースコードの行番号などが表示される場合がある。

より多くの情報の表示

また、さらにデバッグ用に警告などをすべて表示するようにすると、今後問題になりそうな部分も含めて要チェックポイントなどのヒントになる情報が表示されます。

error_reporting(E_ERROR | E_PARSE); // Avoid E_WARNING, E_NOTICE, etc
error_reporting(E_ALL); // Debug purpose
ini_set( 'display_errors', 1 );

index.php でやってしまうと、要チェックポイントが多すぎて使い物に成らないので、問題のあるソースコードでのみ行頭に以下の様に記述するのが良いと思います。

error_reporting(E_ALL); // Debug purpose
ini_set( 'display_errors', 1 );

index.phpの実行時に表示される警告等のサンプル

Deprecated: Assigning the return value of new by reference is deprecated in /home/hogehoge/lib/func.php on line 650
 
Deprecated: Assigning the return value of new by reference is deprecated in /home/hogehoge/lib/convert_html.php on line 101
 
Deprecated: Assigning the return value of new by reference is deprecated in /home/hogehoge/lib/convert_html.php on line 105
 
Deprecated: Assigning the return value of new by reference is deprecated in /home/hogehoge/lib/convert_html.php on line 117
 
Deprecated: Assigning the return value of new by reference is deprecated in /home/hogehoge/lib/convert_html.php on line 129
 
Deprecated: Assigning the return value of new by reference is deprecated in /home/hogehoge/lib/convert_html.php on line 158
 
Deprecated: Assigning the return value of new by reference is deprecated in /home/hogehoge/lib/convert_html.php on line 169
 
Deprecated: Assigning the return value of new by reference is deprecated in /home/hogehoge/lib/convert_html.php on line 174
 
Deprecated: Assigning the return value of new by reference is deprecated in /home/hogehoge/lib/convert_html.php on line 181
 
Deprecated: Assigning the return value of new by reference is deprecated in /home/hogehoge/lib/convert_html.php on line 215
 
Strict Standards: Declaration of Heading::canContain() should be compatible with Element::canContain($obj) in /home/hogehoge/lib/convert_html.php on line 297
 
Strict Standards: Declaration of HRule::canContain() should be compatible with Element::canContain($obj) in /home/hogehoge/lib/convert_html.php on line 318
 
Strict Standards: Declaration of ListContainer::canContain() should be compatible with Element::canContain($obj) in /home/hogehoge/lib/convert_html.php on line 401
 
Strict Standards: Declaration of ListElement::canContain() should be compatible with Element::canContain($obj) in /home/hogehoge/lib/convert_html.php on line 421
 
Strict Standards: Declaration of BQuote::canContain() should be compatible with Element::canContain($obj) in /home/hogehoge/lib/convert_html.php on line 519
 
Deprecated: Assigning the return value of new by reference is deprecated in /home/hogehoge/lib/convert_html.php on line 717
 
Strict Standards: Declaration of Table::canContain() should be compatible with Element::canContain($obj) in /home/hogehoge/lib/convert_html.php on line 808
 
Strict Standards: Declaration of YTable::canContain() should be compatible with Element::canContain($obj) in /home/hogehoge/lib/convert_html.php on line 871
 
Strict Standards: Declaration of Pre::canContain() should be compatible with Element::canContain($obj) in /home/hogehoge/lib/convert_html.php on line 901
 
Strict Standards: Declaration of Div::canContain() should be compatible with Element::canContain($obj) in /home/hogehoge/lib/convert_html.php on line 925
 
Strict Standards: Declaration of Align::canContain() should be compatible with Element::canContain($obj) in /home/hogehoge/lib/convert_html.php on line 950
 
Deprecated: Assigning the return value of new by reference is deprecated in /home/hogehoge/lib/convert_html.php on line 974
 
Deprecated: Assigning the return value of new by reference is deprecated in /home/hogehoge/lib/config.php on line 42
 
Deprecated: Assigning the return value of new by reference is deprecated in /home/hogehoge/lib/config.php on line 60
 
Deprecated: Assigning the return value of new by reference is deprecated in /home/hogehoge/lib/config.php on line 63
 
Deprecated: Assigning the return value of new by reference is deprecated in /home/hogehoge/lib/config.php on line 69
 
Deprecated: Assigning the return value of new by reference is deprecated in /home/hogehoge/lib/config.php on line 75
 
Deprecated: Assigning the return value of new by reference is deprecated in /home/hogehoge/lib/config.php on line 112
 
Deprecated: Assigning the return value of new by reference is deprecated in /home/hogehoge/lib/link.php on line 243
 
Deprecated: ini_set(): Use of mbstring.http_input is deprecated in /home/hogehoge/lib/init.php on line 97
 
Deprecated: Function ereg() is deprecated in /home/hogehoge/lib/func.php on line 904
 
Deprecated: Function ereg() is deprecated in /home/hogehoge/lib/func.php on line 904
 
Deprecated: Function ereg() is deprecated in /home/hogehoge/lib/func.php on line 904
 
Deprecated: Function ereg() is deprecated in /home/hogehoge/lib/func.php on line 904
 
Deprecated: Function ereg() is deprecated in /home/hogehoge/lib/func.php on line 904
 
Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /home/hogehoge/lib/func.php:650) in /home/hogehoge/lib/ss_authform.php on line 427
 
Deprecated: Assigning the return value of new by reference is deprecated in /home/users/0/chicappa.jp-isao/web/haik/plugin/secedit.inc.php on line 48
 
Deprecated: Assigning the return value of new by reference is deprecated in /home/users/0/chicappa.jp-isao/web/haik/plugin/secedit.inc.php on line 251
 
Deprecated: Assigning the return value of new by reference is deprecated in /home/users/0/chicappa.jp-isao/web/haik/plugin/secedit.inc.php on line 281
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in /home/hogehoge/lib/html.php on line 1072
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 384
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 278
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in /home/hogehoge/lib/html.php on line 1072
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 384
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 278
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in /home/hogehoge/lib/html.php on line 1072
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 384
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 278
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in /home/hogehoge/lib/html.php on line 1072
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 384
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 278
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in /home/hogehoge/lib/html.php on line 1072
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 384
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 278
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in /home/hogehoge/lib/html.php on line 1072
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 384
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 278
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in /home/hogehoge/lib/html.php on line 1072
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 384
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 278
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in /home/hogehoge/lib/html.php on line 1072
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 384
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 278
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in /home/hogehoge/lib/html.php on line 1072
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 384
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 278
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in /home/hogehoge/lib/html.php on line 1072
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 384
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 278
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in /home/hogehoge/lib/html.php on line 1072
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 384
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 278
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in /home/hogehoge/lib/html.php on line 1072
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 384
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 278
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in /home/hogehoge/lib/html.php on line 1072
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 384
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 278
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in /home/hogehoge/lib/html.php on line 1072
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 384
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 278
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in /home/hogehoge/lib/html.php on line 1072
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 384
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 278
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Only variable references should be returned by reference in /home/hogehoge/lib/convert_html.php on line 61
 
Notice: Undefined variable: noskin in /home/users/0/chicappa.jp-isao/web/haik/plugin/html.inc.php on line 105
 
Notice: Undefined variable: iframe in /home/users/0/chicappa.jp-isao/web/haik/plugin/html.inc.php on line 110
 
Notice: Undefined variable: blog_date in /home/users/0/chicappa.jp-isao/web/haik/plugin/qblog_recent.inc.php on line 79
 
Notice: Undefined variable: blog_date in /home/users/0/chicappa.jp-isao/web/haik/plugin/qblog_recent.inc.php on line 79
 
Notice: Undefined variable: blog_date in /home/users/0/chicappa.jp-isao/web/haik/plugin/qblog_recent.inc.php on line 79
 
Notice: Undefined variable: blog_date in /home/users/0/chicappa.jp-isao/web/haik/plugin/qblog_recent.inc.php on line 79
 
Notice: Undefined variable: blog_date in /home/users/0/chicappa.jp-isao/web/haik/plugin/qblog_recent.inc.php on line 79
 
Notice: Undefined variable: blog_date in /home/users/0/chicappa.jp-isao/web/haik/plugin/qblog_recent.inc.php on line 79
 
Notice: Undefined variable: blog_date in /home/users/0/chicappa.jp-isao/web/haik/plugin/qblog_recent.inc.php on line 79
 
Strict Standards: Only variables should be passed by reference in /home/users/0/chicappa.jp-isao/web/haik/plugin/qblog_list.inc.php on line 212
Headers already sent at /home/hogehoge/lib/func.php line 650.