質問編集履歴
4
ソースの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -23,3 +23,325 @@
|
|
23
23
|
phpのモジュールはこのようになっています。
|
24
24
|
|
25
25
|
[![イメージ説明](b2c6ee1324e2c294c44d63b47edc9540.png)]
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
ログイン処理の時にこのエラーが表示されました。
|
32
|
+
|
33
|
+
phpをバージョンアップする前は、ちゃんと動いていました。バージョンアップさせた途端、上記のエラーが表示されるようになりました。
|
34
|
+
|
35
|
+
---
|
36
|
+
|
37
|
+
login.php
|
38
|
+
|
39
|
+
```
|
40
|
+
|
41
|
+
<?php
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
require_once(__DIR__ . '/../../config/config.php');
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
$app = new MyApp\Controller\Login();
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
$app->run();
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
?>
|
58
|
+
|
59
|
+
<!DOCTYPE html>
|
60
|
+
|
61
|
+
<html lang="ja">
|
62
|
+
|
63
|
+
<head>
|
64
|
+
|
65
|
+
<meta charset="utf-8">
|
66
|
+
|
67
|
+
<title>LogIn</title>
|
68
|
+
|
69
|
+
<link rel="stylesheet" href="../styles.css">
|
70
|
+
|
71
|
+
</head>
|
72
|
+
|
73
|
+
<body>
|
74
|
+
|
75
|
+
<div class="container">
|
76
|
+
|
77
|
+
<form action="" method="post" id="login">
|
78
|
+
|
79
|
+
<p><input type="text" name="email" placeholder="email" value="<?= isset($app->getValues()->email) ? h($app->getValues()->email) : ''; ?>"></p>
|
80
|
+
|
81
|
+
<p><input type="password" name="password" placeholder="password"></p>
|
82
|
+
|
83
|
+
<p class="err"><?= ($app->getErrors('login') !== '') ? h($app->getErrors('login')) : ''; ?></p>
|
84
|
+
|
85
|
+
<div class="btn" onclick="document.getElementById('login').submit();">ログイン</div>
|
86
|
+
|
87
|
+
<input type="hidden" name="token" value="<?= h($_SESSION['token']); ?>">
|
88
|
+
|
89
|
+
</form>
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
</div>
|
94
|
+
|
95
|
+
</body>
|
96
|
+
|
97
|
+
</html>
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
```
|
102
|
+
|
103
|
+
---
|
104
|
+
|
105
|
+
Login.php
|
106
|
+
|
107
|
+
```
|
108
|
+
|
109
|
+
<?php
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
namespace MyApp\Controller;
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
class Login extends \MyApp\Controller{
|
118
|
+
|
119
|
+
|
120
|
+
|
121
|
+
public function run(){
|
122
|
+
|
123
|
+
if ($this->isLoggedIn()) {
|
124
|
+
|
125
|
+
header('Location: '. SITE_URL);
|
126
|
+
|
127
|
+
exit();
|
128
|
+
|
129
|
+
}
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
if($_SERVER['REQUEST_METHOD'] === 'POST'){
|
134
|
+
|
135
|
+
$this->postProcess();
|
136
|
+
|
137
|
+
}
|
138
|
+
|
139
|
+
}
|
140
|
+
|
141
|
+
|
142
|
+
|
143
|
+
protected function postProcess(){
|
144
|
+
|
145
|
+
try{
|
146
|
+
|
147
|
+
$this->_validate();
|
148
|
+
|
149
|
+
} catch(\MyApp\Exception\EmptyPost $e){
|
150
|
+
|
151
|
+
|
152
|
+
|
153
|
+
$this->setErrors('login', $e->getMessage());
|
154
|
+
|
155
|
+
}
|
156
|
+
|
157
|
+
|
158
|
+
|
159
|
+
$this->setValues('email', $_POST['email']);
|
160
|
+
|
161
|
+
|
162
|
+
|
163
|
+
|
164
|
+
|
165
|
+
if($this->hasError()){
|
166
|
+
|
167
|
+
return;
|
168
|
+
|
169
|
+
}else{
|
170
|
+
|
171
|
+
|
172
|
+
|
173
|
+
try{
|
174
|
+
|
175
|
+
$userModel = new \MyApp\Model\User();
|
176
|
+
|
177
|
+
$user = $userModel->login([
|
178
|
+
|
179
|
+
'email' => $_POST['email'],
|
180
|
+
|
181
|
+
'password' => $_POST['password']
|
182
|
+
|
183
|
+
]);
|
184
|
+
|
185
|
+
}catch(\MyApp\Exception\UnmatchEmailOrPassword $e){
|
186
|
+
|
187
|
+
$this->setErrors('login', $e->getMessage());
|
188
|
+
|
189
|
+
return;
|
190
|
+
|
191
|
+
}
|
192
|
+
|
193
|
+
|
194
|
+
|
195
|
+
// login処理
|
196
|
+
|
197
|
+
// sessionハイジャック対策
|
198
|
+
|
199
|
+
session_regenerate_id(true);
|
200
|
+
|
201
|
+
$_SESSION['me'] = $user;
|
202
|
+
|
203
|
+
|
204
|
+
|
205
|
+
// redirect to home
|
206
|
+
|
207
|
+
header('Location: '. SITE_URL);
|
208
|
+
|
209
|
+
exit;
|
210
|
+
|
211
|
+
}
|
212
|
+
|
213
|
+
|
214
|
+
|
215
|
+
}
|
216
|
+
|
217
|
+
|
218
|
+
|
219
|
+
private function _validate(){
|
220
|
+
|
221
|
+
if(!isset($_POST['token']) || $_POST['token'] !== $_SESSION['token']){
|
222
|
+
|
223
|
+
echo "Invalid Token!";
|
224
|
+
|
225
|
+
exit;
|
226
|
+
|
227
|
+
}
|
228
|
+
|
229
|
+
|
230
|
+
|
231
|
+
if(!isset($_POST['email']) || !isset($_POST['password'])){
|
232
|
+
|
233
|
+
echo "Invalid Form!";
|
234
|
+
|
235
|
+
exit;
|
236
|
+
|
237
|
+
}
|
238
|
+
|
239
|
+
|
240
|
+
|
241
|
+
if($_POST['email'] === '' || $_POST['password'] === ''){
|
242
|
+
|
243
|
+
throw new \MyApp\Exception\EmptyPost();
|
244
|
+
|
245
|
+
}
|
246
|
+
|
247
|
+
}
|
248
|
+
|
249
|
+
}
|
250
|
+
|
251
|
+
```
|
252
|
+
|
253
|
+
---
|
254
|
+
|
255
|
+
User.php
|
256
|
+
|
257
|
+
```
|
258
|
+
|
259
|
+
namespace MyApp\Model;
|
260
|
+
|
261
|
+
|
262
|
+
|
263
|
+
class User extends \MyApp\Model {
|
264
|
+
|
265
|
+
|
266
|
+
|
267
|
+
public function login($values) {
|
268
|
+
|
269
|
+
$stmt = $this->db->prepare("select * from admin where email = :email");
|
270
|
+
|
271
|
+
$stmt->execute([
|
272
|
+
|
273
|
+
':email' => $values['email']
|
274
|
+
|
275
|
+
]);
|
276
|
+
|
277
|
+
$stmt->setFetchMode(\PDO::FETCH_CLASS, 'stdClass');
|
278
|
+
|
279
|
+
$user = $stmt->fetch();
|
280
|
+
|
281
|
+
|
282
|
+
|
283
|
+
if (empty($user)) {
|
284
|
+
|
285
|
+
throw new \MyApp\Exception\UnmatchEmailOrPassword();
|
286
|
+
|
287
|
+
}
|
288
|
+
|
289
|
+
|
290
|
+
|
291
|
+
if (!password_verify($values['password'], $user->password)) {
|
292
|
+
|
293
|
+
throw new \MyApp\Exception\UnmatchEmailOrPassword();
|
294
|
+
|
295
|
+
}
|
296
|
+
|
297
|
+
|
298
|
+
|
299
|
+
return $user;
|
300
|
+
|
301
|
+
}
|
302
|
+
|
303
|
+
}
|
304
|
+
|
305
|
+
```
|
306
|
+
|
307
|
+
---
|
308
|
+
|
309
|
+
Model.php
|
310
|
+
|
311
|
+
```
|
312
|
+
|
313
|
+
<?php
|
314
|
+
|
315
|
+
|
316
|
+
|
317
|
+
namespace MyApp;
|
318
|
+
|
319
|
+
|
320
|
+
|
321
|
+
class Model{
|
322
|
+
|
323
|
+
protected $db;
|
324
|
+
|
325
|
+
|
326
|
+
|
327
|
+
public function __construct(){
|
328
|
+
|
329
|
+
try{
|
330
|
+
|
331
|
+
$this->db = new \PDO(DSN, DB_USERNAME, DB_PASSWORD);
|
332
|
+
|
333
|
+
}catch(\PDOException $e){
|
334
|
+
|
335
|
+
echo $e->getMessage();
|
336
|
+
|
337
|
+
exit;
|
338
|
+
|
339
|
+
}
|
340
|
+
|
341
|
+
}
|
342
|
+
|
343
|
+
}
|
344
|
+
|
345
|
+
コード
|
346
|
+
|
347
|
+
```
|
3
phpモジュール画像変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -22,4 +22,4 @@
|
|
22
22
|
|
23
23
|
phpのモジュールはこのようになっています。
|
24
24
|
|
25
|
-
|
25
|
+
[![イメージ説明](b2c6ee1324e2c294c44d63b47edc9540.png)]
|
2
phpモジュールの情報追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -17,3 +17,9 @@
|
|
17
17
|
phpinfo()のPDOはこのようになっています。
|
18
18
|
|
19
19
|
![イメージ説明](fde4c9e00fa560a14fd73005b02ff63c.png)
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
phpのモジュールはこのようになっています。
|
24
|
+
|
25
|
+
![![イメージ説明](b2c6ee1324e2c294c44d63b47edc9540.png)](d04eb9f62be1d11fd5e7ff39abc9c71c.png)
|
1
エラー全文、phpinfo()の追加など
test
CHANGED
File without changes
|
test
CHANGED
@@ -5,3 +5,15 @@
|
|
5
5
|
ドライバーがないのか、ただ繋がってないのか、よくわかりません。
|
6
6
|
|
7
7
|
どこを見ればわかるのか教えてください。よろしくお願いします。
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
エラーは次のように表示されます。
|
12
|
+
|
13
|
+
![イメージ説明](849bef4d16ad0f02ba9857ffe55baa4b.png)
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
phpinfo()のPDOはこのようになっています。
|
18
|
+
|
19
|
+
![イメージ説明](fde4c9e00fa560a14fd73005b02ff63c.png)
|