質問編集履歴
4
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -67,3 +67,13 @@
|
|
67
67
|
Warning: file_put_contents(/var/www/html/text/new.txt): failed to open stream: Permission denied in /var/www/html/index.php on line 3
|
68
68
|
|
69
69
|
```
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
### 追記
|
76
|
+
|
77
|
+
おそらく同じ現象の[質問](https://teratail.com/questions/13261)を見つけました。
|
78
|
+
|
79
|
+
セキュリティーの観点からSELinuxは有効にしたいので、質問の回答にあった `setsebool -P httpd_unified=on` にしたいのですが、これはどこで設定すればよいのですか?
|
3
訂正
test
CHANGED
File without changes
|
test
CHANGED
@@ -11,6 +11,8 @@
|
|
11
11
|
//index.php
|
12
12
|
|
13
13
|
<?php
|
14
|
+
|
15
|
+
ini_set('display_errors', "On");
|
14
16
|
|
15
17
|
$success = file_put_contents('text/new.txt', 'ファイルの書き込みテスト');
|
16
18
|
|
2
訂正
test
CHANGED
File without changes
|
test
CHANGED
@@ -62,6 +62,6 @@
|
|
62
62
|
|
63
63
|
```ここに言語を入力
|
64
64
|
|
65
|
-
Warning: file_put_contents(/var/www/html/text/new.txt): failed to open stream: Permission denied in /var/www/html/index.php on line
|
65
|
+
Warning: file_put_contents(/var/www/html/text/new.txt): failed to open stream: Permission denied in /var/www/html/index.php on line 3
|
66
66
|
|
67
67
|
```
|
1
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -51,3 +51,17 @@
|
|
51
51
|
プログラムとファイル構造です。
|
52
52
|
|
53
53
|
参考になる記事、方法を教えてください。
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
**エラー表示をOnにしたら・・・**
|
62
|
+
|
63
|
+
```ここに言語を入力
|
64
|
+
|
65
|
+
Warning: file_put_contents(/var/www/html/text/new.txt): failed to open stream: Permission denied in /var/www/html/index.php on line 23
|
66
|
+
|
67
|
+
```
|