質問編集履歴

6

add

2018/03/10 07:41

投稿

aiueoaiueoaiue
aiueoaiueoaiue

スコア94

test CHANGED
File without changes
test CHANGED
@@ -78,6 +78,20 @@
78
78
 
79
79
  #Apacheリスタート時のメッセージ
80
80
 
81
+ Performing sanity check on apache24 configuration:
82
+
83
+ Syntax OK
84
+
85
+ Stopping apache24.
86
+
87
+ Waiting for PIDS: 873.
88
+
89
+ Performing sanity check on apache24 configuration:
90
+
91
+ Syntax OK
92
+
93
+ Starting apache24.
94
+
81
95
 
82
96
 
83
97
  #info.phpの内容

5

2018/03/10 07:41

投稿

aiueoaiueoaiue
aiueoaiueoaiue

スコア94

test CHANGED
File without changes
test CHANGED
@@ -76,6 +76,10 @@
76
76
 
77
77
  Your cache administrator is webmaster.
78
78
 
79
+ #Apacheリスタート時のメッセージ
80
+
81
+
82
+
79
83
  #info.phpの内容
80
84
 
81
85
  ```

4

2018/03/10 07:41

投稿

aiueoaiueoaiue
aiueoaiueoaiue

スコア94

test CHANGED
File without changes
test CHANGED
@@ -56,13 +56,13 @@
56
56
 
57
57
  ```
58
58
 
59
- #Apache
59
+ #http://<サーバのIPアドレス>アクセスした時のエラー
60
60
 
61
- The following error was encountered while trying to retrieve the URL: http://192.168.2.204/
61
+ The following error was encountered while trying to retrieve the URL: http://<サーバのIPアドレス>
62
62
 
63
63
 
64
64
 
65
- 192.168.2.204 への接続に失敗しました。
65
+ http://<サーバのIPアドレス>への接続に失敗しました。
66
66
 
67
67
 
68
68
 

3

fix

2018/03/10 07:34

投稿

aiueoaiueoaiue
aiueoaiueoaiue

スコア94

test CHANGED
File without changes
test CHANGED
@@ -56,7 +56,25 @@
56
56
 
57
57
  ```
58
58
 
59
+ #Apache
59
60
 
61
+ The following error was encountered while trying to retrieve the URL: http://192.168.2.204/
62
+
63
+
64
+
65
+ 192.168.2.204 への接続に失敗しました。
66
+
67
+
68
+
69
+ システムが以下のエラーを返しました: (110) Connection timed out
70
+
71
+
72
+
73
+ The remote host or network may be down. Please try the request again.
74
+
75
+
76
+
77
+ Your cache administrator is webmaster.
60
78
 
61
79
  #info.phpの内容
62
80
 

2

修正

2018/03/10 07:32

投稿

aiueoaiueoaiue
aiueoaiueoaiue

スコア94

test CHANGED
File without changes
test CHANGED
@@ -10,11 +10,11 @@
10
10
 
11
11
 
12
12
 
13
- The following error was encountered while trying to retrieve the URL: http://192.168.2.204/info.php
13
+ The following error was encountered while trying to retrieve the URL: http://<サーバのIPアドレス>/info.php
14
14
 
15
15
 
16
16
 
17
- Connection to 192.168.2.204 failed.
17
+ Connection to <サーバのIPアドレス> failed.
18
18
 
19
19
 
20
20
 

1

fix

2018/03/09 20:41

投稿

aiueoaiueoaiue
aiueoaiueoaiue

スコア94

test CHANGED
File without changes
test CHANGED
@@ -4,11 +4,67 @@
4
4
 
5
5
  #エラーの内容
6
6
 
7
+ ERROR
8
+
9
+ The requested URL could not be retrieved
10
+
11
+
12
+
13
+ The following error was encountered while trying to retrieve the URL: http://192.168.2.204/info.php
14
+
15
+
16
+
7
- #PHPの設定ファイルの内容
17
+ Connection to 192.168.2.204 failed.
18
+
19
+
20
+
21
+ The system returned: (110) Connection timed out
22
+
23
+
24
+
25
+ The remote host or network may be down. Please try the request again.
26
+
27
+
28
+
29
+ Your cache administrator is webmaster.
8
30
 
9
31
  #Apacheのconfファイルの内容
10
32
 
33
+ ```
34
+
35
+ AddType application/x-httpd-php .php
36
+
37
+ AddType application/x-httpd-php-source .phps
38
+
39
+ AddType text/html .php
40
+
41
+ DirectoryIndex index.html index.htm index.php
42
+
43
+ <FilesMatch ".php$">
44
+
45
+ SetHandler application/x-httpd-php
46
+
47
+ </FilesMatch>
48
+
49
+ <FilesMatch ".php$">
50
+
51
+ SetHandler application/x-httpd-php-source
52
+
53
+ </FilesMatch>
54
+
55
+ php.conf (END)
56
+
57
+ ```
58
+
59
+
60
+
11
61
  #info.phpの内容
62
+
63
+ ```
64
+
65
+ <?php phpinfo();?>
66
+
67
+ ```
12
68
 
13
69
  #補足
14
70