質問編集履歴

3

初期設定、エラー内容更新

2020/04/03 07:08

投稿

hana778
hana778

スコア10

test CHANGED
File without changes
test CHANGED
@@ -18,154 +18,44 @@
18
18
 
19
19
 
20
20
 
21
+ ###環境設定
22
+
23
+ - CakePHPをインストールした手順 (参考にしたURLでもよい)
24
+
25
+ CakePHP2をgithub(https://github.com/cakephp/cakephp/tree/2.x)からダウンロード
26
+
27
+
28
+
21
- CakePHP2.0はインストールし、初期設定はできました。
29
+ - CakePHPインストール先のディレクトリ
30
+
31
+ XAMPPのhtdocs配下に設置しました。
32
+
33
+
34
+
35
+ - ドキュメントルートのディレクトリ
36
+
37
+ cakephp/に展開
38
+
39
+ (app lib plugins vendorsなどはそのままにしています。)
40
+
41
+
42
+
43
+ - 初期設定の確認はどのようにしたか
44
+
45
+ http://localhost/cakephpにアクセスした際、エラーが起こらないように設定しました。
46
+
47
+ https://calculus-app.com/blog/develop_cakephp/cakephp_basic/274
48
+
49
+
22
50
 
23
51
 
24
52
 
25
53
  ###エラー内容
26
54
 
27
- phpファイルは
55
+ - 表示がおかしいと言われている画面のURL
28
56
 
29
- Fatal error: Uncaught Error: Class 'App' not found in C:\xampp\htdocs\
57
+ xampp/htdocs/cakephp/WEB//member/Controller/RecordsController.php
30
-
31
- のように、エラーが表示され、
32
-
33
- ctpファイルはソースだけ表示され、htmlに書いたものも文字化けしておりうまく表示されません。
34
58
 
35
59
 
36
60
 
37
- C:\xampp\htdocs\WEB\admin\View
38
-
39
- 内にございphpファイルやctpファイルがエラーになっている状況
61
+ こちら再度確認ししたところ500エラーになっているようございました
40
-
41
-
42
-
43
- error.ctp
44
-
45
- <div class="container">
46
-
47
- <div class="card">
48
-
49
- <div class="body">
50
-
51
- <h3><i class="fa fa-exclamation-triangle"></i>一時的にご利用できません</h3>
52
-
53
- <p><?= $message; ?></p>
54
-
55
- <p>お手数をお掛けしますが、はじめからやり直してください。</p>
56
-
57
- <hr>
58
-
59
- <a href="<?= $this->Html->url(['controller' => 'Login', 'action' => 'logout']); ?>" class="btn btn-default">ログインページへ</a>
60
-
61
- </div>
62
-
63
- </div>
64
-
65
- </div>
66
-
67
-
68
-
69
- このような記述が
70
-
71
- <div class="container">
72
-
73
- <div class="card">
74
-
75
- <div class="body">
76
-
77
- <h3><i class="fa fa-exclamation-triangle"></i>荳€譎ら噪縺ォ縺泌茜逕ィ縺ァ縺阪∪縺帙s</h3>
78
-
79
- <p><?= $message; ?></p>
80
-
81
- <p>縺頑焔謨ー繧偵♀謗帙¢縺励∪縺吶′縲√ 縺倥a縺九i繧 j逶エ縺励※縺上□縺輔>縲 </p>
82
-
83
- <hr>
84
-
85
- <a href="<?= $this->Html->url(['controller' => 'Login', 'action' => 'logout']); ?>" class="btn btn-default">繝ュ繧ー繧、繝ウ繝壹 繧ク縺ク</a>
86
-
87
- </div>
88
-
89
- </div>
90
-
91
- </div>
92
-
93
- このようになっております。
94
-
95
-
96
-
97
- phpでは
98
-
99
- AppHelper.php
100
-
101
-
102
-
103
- <?php
104
-
105
- /**
106
-
107
- * Application level View Helper
108
-
109
- *
110
-
111
- * This file is application-wide helper file. You can put all
112
-
113
- * application-wide helper-related methods here.
114
-
115
- *
116
-
117
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
118
-
119
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
120
-
121
- *
122
-
123
- * Licensed under The MIT License
124
-
125
- * For full copyright and license information, please see the LICENSE.txt
126
-
127
- * Redistributions of files must retain the above copyright notice.
128
-
129
- *
130
-
131
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
132
-
133
- * @link https://cakephp.org CakePHP(tm) Project
134
-
135
- * @package app.View.Helper
136
-
137
- * @since CakePHP(tm) v 0.2.9
138
-
139
- * @license https://opensource.org/licenses/mit-license.php MIT License
140
-
141
- */
142
-
143
-
144
-
145
- App::uses('Helper', 'View');
146
-
147
-
148
-
149
- /**
150
-
151
- * Application helper
152
-
153
- *
154
-
155
- * Add your application-wide methods in the class below, your helpers
156
-
157
- * will inherit them.
158
-
159
- *
160
-
161
- * @package app.View.Helper
162
-
163
- */
164
-
165
- class AppHelper extends Helper {
166
-
167
- }
168
-
169
-
170
-
171
- このような表記が表示されていない状況です。

2

CakePHPのバージョン統一

2020/04/03 07:08

投稿

hana778
hana778

スコア10

test CHANGED
File without changes
test CHANGED
@@ -4,13 +4,21 @@
4
4
 
5
5
 
6
6
 
7
- PHP(CakePHP)でアプリケーションを作っており、ローカルサーバーで確認する段階です。
7
+ PHP(CakePHP2.0)でアプリケーションを作っており、ローカルサーバーで確認する段階です。
8
8
 
9
- MAMPやXAMPPを使っておりますが、PHPファイルが表示されず、環境構築で手間取っております。
9
+ PHPファイルが表示されず、環境構築で手間取っております。
10
10
 
11
11
 
12
12
 
13
+ ###環境
14
+
15
+ windows
16
+
17
+ XAMPP バージョン5.6(php 5.6.40)
18
+
19
+
20
+
13
- CakePHPはComposer でインストールし、初期設定はできたつもりでおります
21
+ CakePHP2.0はインストールし、初期設定はできました。
14
22
 
15
23
 
16
24
 
@@ -23,18 +31,6 @@
23
31
  のように、エラーが表示され、
24
32
 
25
33
  ctpファイルはソースだけ表示され、htmlに書いたものも文字化けしておりうまく表示されません。
26
-
27
-
28
-
29
-
30
-
31
- 恐れ入りますがご教授いただだければ幸いです。
32
-
33
-
34
-
35
- ご連絡ありがとうございます。
36
-
37
- 失礼いたしました。
38
34
 
39
35
 
40
36
 
@@ -173,25 +169,3 @@
173
169
 
174
170
 
175
171
  このような表記が表示されていない状況です。
176
-
177
-
178
-
179
- >問題が落ちてるのはどちらですか?
180
-
181
- XAMPでございます。
182
-
183
-
184
-
185
- cake.phpにつきましては、こちらのサイトをもとに、ダウンロードいたしました。
186
-
187
- https://codeforfun.jp/how-to-install-cakephp3-on-mamp-with-composer-for-windows/
188
-
189
-
190
-
191
- composer create-project –prefer-dist cakephp/app cms
192
-
193
- をターミナルに入力し、サイトが表示されたことを確認しました。
194
-
195
-
196
-
197
- cd C:¥XAMP¥htdocsに配置しております。

1

質問内容の追加

2020/04/03 02:48

投稿

hana778
hana778

スコア10

test CHANGED
File without changes
test CHANGED
@@ -29,3 +29,169 @@
29
29
 
30
30
 
31
31
  恐れ入りますがご教授いただだければ幸いです。
32
+
33
+
34
+
35
+ ご連絡ありがとうございます。
36
+
37
+ 失礼いたしました。
38
+
39
+
40
+
41
+ C:\xampp\htdocs\WEB\admin\View
42
+
43
+ 内にございます、phpファイルやctpファイルがエラーになっている状況です。
44
+
45
+
46
+
47
+ error.ctp
48
+
49
+ <div class="container">
50
+
51
+ <div class="card">
52
+
53
+ <div class="body">
54
+
55
+ <h3><i class="fa fa-exclamation-triangle"></i>一時的にご利用できません</h3>
56
+
57
+ <p><?= $message; ?></p>
58
+
59
+ <p>お手数をお掛けしますが、はじめからやり直してください。</p>
60
+
61
+ <hr>
62
+
63
+ <a href="<?= $this->Html->url(['controller' => 'Login', 'action' => 'logout']); ?>" class="btn btn-default">ログインページへ</a>
64
+
65
+ </div>
66
+
67
+ </div>
68
+
69
+ </div>
70
+
71
+
72
+
73
+ このような記述が
74
+
75
+ <div class="container">
76
+
77
+ <div class="card">
78
+
79
+ <div class="body">
80
+
81
+ <h3><i class="fa fa-exclamation-triangle"></i>荳€譎ら噪縺ォ縺泌茜逕ィ縺ァ縺阪∪縺帙s</h3>
82
+
83
+ <p><?= $message; ?></p>
84
+
85
+ <p>縺頑焔謨ー繧偵♀謗帙¢縺励∪縺吶′縲√ 縺倥a縺九i繧 j逶エ縺励※縺上□縺輔>縲 </p>
86
+
87
+ <hr>
88
+
89
+ <a href="<?= $this->Html->url(['controller' => 'Login', 'action' => 'logout']); ?>" class="btn btn-default">繝ュ繧ー繧、繝ウ繝壹 繧ク縺ク</a>
90
+
91
+ </div>
92
+
93
+ </div>
94
+
95
+ </div>
96
+
97
+ このようになっております。
98
+
99
+
100
+
101
+ phpでは
102
+
103
+ AppHelper.php
104
+
105
+
106
+
107
+ <?php
108
+
109
+ /**
110
+
111
+ * Application level View Helper
112
+
113
+ *
114
+
115
+ * This file is application-wide helper file. You can put all
116
+
117
+ * application-wide helper-related methods here.
118
+
119
+ *
120
+
121
+ * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
122
+
123
+ * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
124
+
125
+ *
126
+
127
+ * Licensed under The MIT License
128
+
129
+ * For full copyright and license information, please see the LICENSE.txt
130
+
131
+ * Redistributions of files must retain the above copyright notice.
132
+
133
+ *
134
+
135
+ * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
136
+
137
+ * @link https://cakephp.org CakePHP(tm) Project
138
+
139
+ * @package app.View.Helper
140
+
141
+ * @since CakePHP(tm) v 0.2.9
142
+
143
+ * @license https://opensource.org/licenses/mit-license.php MIT License
144
+
145
+ */
146
+
147
+
148
+
149
+ App::uses('Helper', 'View');
150
+
151
+
152
+
153
+ /**
154
+
155
+ * Application helper
156
+
157
+ *
158
+
159
+ * Add your application-wide methods in the class below, your helpers
160
+
161
+ * will inherit them.
162
+
163
+ *
164
+
165
+ * @package app.View.Helper
166
+
167
+ */
168
+
169
+ class AppHelper extends Helper {
170
+
171
+ }
172
+
173
+
174
+
175
+ このような表記が表示されていない状況です。
176
+
177
+
178
+
179
+ >問題が落ちてるのはどちらですか?
180
+
181
+ XAMPでございます。
182
+
183
+
184
+
185
+ cake.phpにつきましては、こちらのサイトをもとに、ダウンロードいたしました。
186
+
187
+ https://codeforfun.jp/how-to-install-cakephp3-on-mamp-with-composer-for-windows/
188
+
189
+
190
+
191
+ composer create-project –prefer-dist cakephp/app cms
192
+
193
+ をターミナルに入力し、サイトが表示されたことを確認しました。
194
+
195
+
196
+
197
+ cd C:¥XAMP¥htdocsに配置しております。