1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
|
<?php
/*
Copyright (c) Ampache.org
All Rights Reserved
this program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
<html lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Ampache -- Debug Page</title>
<link rel="stylesheet" href="templates/install.css" type="text/css" media="screen" />
</head>
<body bgcolor="#f0f0f0">
<div id="header">
<h1><?php echo _('Ampache Debug'); ?></h1>
<p><?php echo _('You\'ve reached this page because a configuration error has occured. Debug Information below'); ?></p>
</div>
<div>
<table align="center" cellpadding="3" cellspacing="0">
<tr>
<td><font size="+1"><?php echo _('CHECK'); ?></font></td>
<td>
<font size="+1"><?php echo _('STATUS'); ?></font>
</td>
<td><font size="+1"><?php echo _('DESCRIPTION'); ?></font></td>
</tr>
<tr>
<td valign="top"><?php echo _('PHP Version'); ?></td>
<td valign="top">[
<?php
if (!check_php_ver()) {
echo debug_result('',false);
}
else {
echo debug_result('',true);
}
?>
]
</td>
<td>
<?php echo _('This tests to make sure that you are running a version of PHP that is known to work with Ampache.'); ?>
</td>
</tr>
<tr>
<td valign="top"><?php echo _('Mysql for PHP'); ?></td>
<td valign="top">[
<?php
if (!check_php_mysql()) {
echo debug_result('',false);
}
else {
echo debug_result('',true);
}
?>
]
</td>
<td>
<?php echo _('This test checks to see if you have the mysql extensions loaded for PHP. These are required for Ampache to work.'); ?>
</td>
</tr>
<tr>
<td valign="top"><?php echo _('PHP Session Support'); ?></td>
<td valign="top">[
<?php
if (!check_php_session()) {
echo debug_result('',false);
}
else {
echo debug_result('',true);
}
?>
]
</td>
<td>
<?php echo _('This test checks to make sure that you have PHP session support enabled. Sessions are required for Ampache to work.'); ?>
</td>
</tr>
<tr>
<td valign="top"><?php echo _('PHP ICONV Support'); ?></td>
<td valign="top">[
<?php
if (!check_php_iconv()) {
echo debug_result('',false);
}
else {
echo debug_result('',true);
}
?>]
</td>
<td>
<?php echo _('This test checks to make sure you have Iconv support installed. Iconv support is required for Ampache'); ?>
</td>
</tr>
<tr>
<td valign="top"><?php echo _('PHP PCRE Support'); ?></td>
<td valign="top">[
<?php
if (!check_php_pcre()) {
echo debug_result('',false);
}
else {
echo debug_result('',true);
}
?>]
</td>
<td>
<?php echo _('This test makes sure you have PCRE support compiled into your version of PHP, this is required for Ampache.'); ?>
</td>
</tr>
<tr>
<td valign="top"><?php echo _('PHP PutENV Support'); ?></td>
<td valign="top">[
<?php
if (!check_putenv()) {
echo debug_result('',false);
}
else {
echo debug_result('',true);
}
?>]
</td>
<td>
<?php echo _('This test makes sure that PHP isn\'t running in SafeMode and that we are able to modify the memory limits. While not required, without these abilities some features of ampache may not work correctly'); ?>
</td>
</tr>
<tr>
<td valign="top"><?php echo _('Ampache.cfg.php Exists'); ?></td>
<td valign="top">[
<?php
if (!is_readable($configfile)) {
echo debug_result('',false);
}
else {
echo debug_result('',true);
}
?>
]
</td>
<td width="350px">
<?php echo _('This attempts to read /config/ampache.cfg.php If this fails either the ampache.cfg.php is not in the correct locations or
it is not currently readable by your webserver.'); ?>
</td>
</tr>
<tr>
<td valign="top">
<?php echo _('Ampache.cfg.php Configured?'); ?>
</td>
<td valign="top">[
<?php
$results = @parse_ini_file($configfile);
Config::set_by_array($results);
if (!check_config_values($results)) {
echo debug_result('',false);
}
else {
echo debug_result('',true);
}
?>
]
</td>
<td>
<?php echo _("This test makes sure that you have set all of the required configuration variables and that we are able to completely parse your config file"); ?>
</td>
</tr>
<tr>
<td valign="top"><?php echo _("DB Connection"); ?></td>
<td valign="top">[
<?php
$db = check_database($results['database_hostname'], $results['database_username'], $results['database_password'],$results['database_name']);
if (!$db) {
echo debug_result('',false);
}
else {
echo debug_result('',true);
}
?>
]
</td>
<td>
<?php echo _("This attempts to connect to your database using the values from your ampache.cfg.php"); ?>
</td>
</tr>
<tr>
<td valign="top"><?php echo _('DB Inserted'); ?></td>
<td valign="top">[
<?php
$db_inserted = check_database_inserted($db,$results['local_db']);
if (!$db_inserted) {
echo debug_result('',false);
}
else {
echo debug_result('',true);
}
?>
]
</td>
<td>
<?php echo _('This checks a few key tables to make sure that you have successfully inserted the ampache database and that the user has access to the database'); ?>
</td>
</tr>
<tr>
<td valign="top"><?php echo _('Web Path'); ?></td>
<td valign="top">[
<?php
/*
Check to see if this is Http or https
*/
if ($_SERVER['HTTPS'] == 'on') {
$http_type = "https://";
}
else {
$http_type = "http://";
}
$results['web_path'] = $http_type . $_SERVER['SERVER_NAME'] . ":" . $_SERVER['SERVER_PORT'] . Config::get('web_path');
if ($status['parse_config']) {
echo " <img src=\"" . $results['web_path'] ."/images/icon_enable.png\" /> ";
}
else {
echo debug_result('',false);
}
?>
]
</td>
<td>
<?php echo _('This test makes sure that your web_path variable is set correctly and that we are able to get to the index page. If you do not see a check mark here then your web_path is not set correctly.'); ?>
</td>
</tr>
</table>
</div>
<div id="bottom">
<p><strong>Ampache Debug.</strong><br />
Pour l'Amour de la Musique.</p>
</div>
</body>
</html>
|