質問編集履歴
1
質問の修正と補足の追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -10,17 +10,49 @@
|
|
10
10
|
|
11
11
|
|
12
12
|
|
13
|
-
■エラー文
|
13
|
+
~~■エラー文
|
14
14
|
|
15
15
|
「致命的なエラー:<テーマのパス>wpでItemTable_can()(以前は<テーマのパス> \ include_files \ datatable.php:979で宣言されていました)を再宣言できません-content \ themes \ <テーマ名> \ include_files \ datatable.php(979行目)」
|
16
16
|
|
17
17
|
※ItemTable_canは関数名です。
|
18
18
|
|
19
|
-
datatable.phpの979行目にはTable_canという関数名が使用されていて、これが原因なのかと適当にリネームしたところ、エラー文は変わりませんでした。
|
19
|
+
datatable.phpの979行目にはTable_canという関数名が使用されていて、これが原因なのかと適当にリネームしたところ、エラー文は変わりませんでした。~~
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
[2020.10.15 - 修正]
|
24
|
+
|
25
|
+
私の確認ミスがありましたので修正いたします。
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
■エラー文(原文)
|
30
|
+
|
31
|
+
Fatal error: Cannot redeclare ItemTable_can() (previously declared in C:\xampp\htdocs[テーマ名]\wp-content\themes[サイト名]\include_files\datatable.php:979) in C:\xampp\htdocs[テーマ名]\wp-content\themes[サイト名]\include_files\datatable.php on line 979
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
サイトに重大なエラーがありました。 詳細については、サイト管理者のメール受信ボックスを確認してください。
|
20
36
|
|
21
37
|
|
22
38
|
|
23
39
|
![イメージ説明](6b8fd2ba71d2d04d61ca5b4055d70a8c.png)
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
※ItemTable_canは関数名です。
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
datatable.phpの979行目には上記のItemTable_canという関数名が定義されていて、これが原因なのかとtestという関数名にリネームしたところ、エラー文は以下のように変化しました。
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
■エラー文(リネーム後:原文)
|
52
|
+
|
53
|
+
Fatal error: Uncaught Error: Call to undefined function test() in C:\xampp\htdocs[テーマ名]\wp-content\themes[サイト名]\include_files\weapon.php:14 Stack trace: #0 C:\xampp\htdocs[テーマ名]\wp-content\themes[サイト名]\functions.php(40): include() #1 C:\xampp\htdocs[テーマ名]\wp-includes\shortcodes.php(343): Include_my_php(Array, '', 'myphp') #2 [internal function]: do_shortcode_tag(Array) #3 C:\xampp\htdocs[テーマ名]\wp-includes\shortcodes.php(218): preg_replace_callback('/\[(\[?)(myphp)...', 'do_shortcode_ta...', '\n[myphp file='w...') #4 C:\xampp\htdocs[テーマ名]\wp-includes\class-wp-hook.php(287): do_shortcode('\n[myphp file='w...') #5 C:\xampp\htdocs[テーマ名]\wp-includes\plugin.php(206): WP_Hook->apply_filters('\n[myphp file='w...', Array) #6 C:\xampp\htdocs[テーマ名]\wp-includes\rest-api\endpoints\class-wp-rest-posts-controller.php(1683): apply_filters('the_content', '<!-- wp:html --...') #7 C:\xampp\htdocs[テーマ名] in C:\xampp\htdocs[テーマ名]\wp-content\themes[サイト名]\include_files\weapon.php on line 14
|
54
|
+
|
55
|
+
※weapon.phpはエラーを出力しているファイルで、14行目ではTable_canという関数を呼び出しています。
|
24
56
|
|
25
57
|
|
26
58
|
|
@@ -39,3 +71,13 @@
|
|
39
71
|
Windows10
|
40
72
|
|
41
73
|
WordPress 5.5.1
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
|
78
|
+
|
79
|
+
**********補足**********
|
80
|
+
|
81
|
+
[2020.10.15]
|
82
|
+
|
83
|
+
・テーマは既存のものではなく、自作で作成したものになります。
|