質問編集履歴
2
詳細
title
CHANGED
File without changes
|
body
CHANGED
@@ -2,12 +2,18 @@
|
|
2
2
|
コード
|
3
3
|
```### 前提・実現したいこと
|
4
4
|
|
5
|
-
wordpressで、Allowed memory size of 2147483648 bytes exhausted (tried to allocate 32768 bytes)というエラーが
|
5
|
+
wordpressで、Allowed memory size of 2147483648 bytes exhausted (tried to allocate 32768 bytes)というエラーが,
|
6
|
+
ただ画面にアクセスしただけで、出現します。特定の固定ページのみが読み込めるようにしたい。
|
6
7
|
|
7
8
|
### 発生している問題・エラーメッセージ
|
8
9
|
その他の固定ページは読み込めますが、conact.phpだけこのようなエラーが出ます。
|
9
10
|
wp-config.php php.ini
|
10
11
|
でのメモリ上限は変更しましたが、エラーメッセージのメモリ数のみが変わるだけで正常に表示されないので正常に表示できるようにしたい
|
12
|
+
|
13
|
+
エラーが出るようになった過程
|
14
|
+
ファイル作成->冒頭にTemplate Nameのコメントを作成->Wordpressで固定ページを作成->表示をすると上記のエラーが出ます。
|
15
|
+
同様の手順で他の固定ページは読み込めています。
|
16
|
+
|
11
17
|
```
|
12
18
|
エラーメッセージ
|
13
19
|
```Fatal error: Allowed memory size of 2147483648 bytes exhausted (tried to allocate 32768 bytes) in /Applications/MAMP/htdocs/wordpress/wp-content/themes/wordperss_output/contact.php on line 1
|
1
修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -1,4 +1,6 @@
|
|
1
|
+
```ここに言語を入力
|
2
|
+
コード
|
1
|
-
### 前提・実現したいこと
|
3
|
+
```### 前提・実現したいこと
|
2
4
|
|
3
5
|
wordpressで、Allowed memory size of 2147483648 bytes exhausted (tried to allocate 32768 bytes)というエラーが出現します。特定の固定ページのみが読み込めるようにしたい。
|
4
6
|
|
@@ -18,12 +20,13 @@
|
|
18
20
|
*/
|
19
21
|
?>
|
20
22
|
|
21
|
-
|
23
|
+
```
|
22
24
|
<?php get_header(); ?>
|
23
25
|
|
26
|
+
|
24
27
|
<?php get_template_part('contact', 'menu'); ?>
|
25
28
|
|
26
|
-
|
29
|
+
<main>
|
27
30
|
<section class=" hero container-fluid">
|
28
31
|
<div class="hero-title">
|
29
32
|
<h2>Wordpress Template</h2>
|
@@ -60,7 +63,8 @@
|
|
60
63
|
</main>
|
61
64
|
|
62
65
|
|
63
|
-
<?php get_footer(); ?>
|
66
|
+
<?php get_footer(); ?>
|
67
|
+
```
|
64
68
|
|
65
69
|
### 試したこと
|
66
70
|
https://ja.wordpress.org/support/topic/woocommerce%E3%81%AEwp-%E3%83%A1%E3%83%A2%E3%83%AA%E3%83%BC%E5%88%B6%E9%99%90%E3%81%AB%E3%81%A4%E3%81%84%E3%81%A6/
|
@@ -85,4 +89,5 @@
|
|
85
89
|
PHP 7.2.10
|
86
90
|
WordPress 5.1.1
|
87
91
|
MAMP 5.2
|
92
|
+
MacOS
|
88
93
|
です。
|