6 |
kaklik |
1 |
<?php
|
|
|
2 |
/*************************
|
|
|
3 |
Coppermine Photo Gallery
|
|
|
4 |
************************
|
|
|
5 |
Copyright (c) 2003-2005 Coppermine Dev Team
|
|
|
6 |
v1.1 originaly written by Gregory DEMAR
|
|
|
7 |
|
|
|
8 |
This program is free software; you can redistribute it and/or modify
|
|
|
9 |
it under the terms of the GNU General Public License as published by
|
|
|
10 |
the Free Software Foundation; either version 2 of the License, or
|
|
|
11 |
(at your option) any later version.
|
|
|
12 |
********************************************
|
|
|
13 |
Coppermine version: 1.4.1
|
|
|
14 |
$Source: /cvsroot/coppermine/stable/versioncheck.php,v $
|
|
|
15 |
$Revision: 1.8 $
|
|
|
16 |
$Author: gaugau $
|
|
|
17 |
$Date: 2005/04/20 06:16:24 $
|
|
|
18 |
**********************************************/
|
|
|
19 |
|
|
|
20 |
define('IN_COPPERMINE', true);
|
|
|
21 |
define('VERSIONCHECK_PHP', true);
|
|
|
22 |
|
|
|
23 |
require('include/init.inc.php');
|
|
|
24 |
|
|
|
25 |
if (!GALLERY_ADMIN_MODE) { cpg_die(ERROR, $lang_errors['access_denied'], __FILE__, __LINE__); }
|
|
|
26 |
|
|
|
27 |
// define some vars
|
|
|
28 |
$optional_files = $_REQUEST['optional_files'];
|
|
|
29 |
$mandatory_files = $_REQUEST['mandatory_files'];
|
|
|
30 |
$file_versions = $_REQUEST['file_versions'];
|
|
|
31 |
$webcvs = $_REQUEST['webcvs'];
|
|
|
32 |
$errors_only = $_REQUEST['errors_only'];
|
|
|
33 |
$webroot = $_REQUEST['webroot'];
|
|
|
34 |
$online = $_REQUEST['online'];
|
|
|
35 |
$additional_info = $_REQUEST['additional_info'];
|
|
|
36 |
$permissions = $_REQUEST['permissions'];
|
|
|
37 |
$condensed_output = $_REQUEST['condensed_output'];
|
|
|
38 |
if (!$_REQUEST['changes']) { // set default settings for options
|
|
|
39 |
$optional_files = 1;
|
|
|
40 |
$mandatory_files = 1;
|
|
|
41 |
$file_versions = 1;
|
|
|
42 |
$webcvs = '0';
|
|
|
43 |
$errors_only = 0;
|
|
|
44 |
$webroot = 0;
|
|
|
45 |
$online = 1;
|
|
|
46 |
$additional_info = 1;
|
|
|
47 |
$permissions = 1;
|
|
|
48 |
$condensed_output = 0;
|
|
|
49 |
}
|
|
|
50 |
$counter_total_files = 0;
|
|
|
51 |
$counter_file_mandatory_not_exist = 0;
|
|
|
52 |
$counter_file_optional_not_exist = 0;
|
|
|
53 |
$counter_cpg_version_older = 0;
|
|
|
54 |
$counter_cpg_version_younger = 0;
|
|
|
55 |
$counter_cvs_version_older = 0;
|
|
|
56 |
$counter_cvs_version_younger = 0;
|
|
|
57 |
$number_of_columns = 7;
|
|
|
58 |
$line_counter = 0;
|
|
|
59 |
$online_repository_connection = 0;
|
|
|
60 |
$online_repository_url = 'http://coppermine.sourceforge.net/repository.txt';
|
|
|
61 |
if ($webcvs == 0) {$number_of_columns = $number_of_columns-1;}
|
|
|
62 |
if ($file_versions == 0) {$number_of_columns = $number_of_columns-2;}
|
|
|
63 |
|
|
|
64 |
|
|
|
65 |
// check if the file is being included as a pop-up; return the stuff from showdoc if true
|
|
|
66 |
if (isset($_REQUEST['pop'])) { // pop-up start
|
|
|
67 |
$header = $_REQUEST['h'];
|
|
|
68 |
$text = $_REQUEST['t'];
|
|
|
69 |
$add_stylesheet = $_REQUEST['css'];
|
|
|
70 |
$style = $_REQUEST['style'];
|
|
|
71 |
$close = $_REQUEST['close'];
|
|
|
72 |
$base = $_REQUEST['base'];
|
|
|
73 |
|
|
|
74 |
if ($base != '') {
|
|
|
75 |
// content of header and text have been base64-encoded - decode it now
|
|
|
76 |
$header = @unserialize(@base64_decode($header));
|
|
|
77 |
$text = @unserialize(@base64_decode($text));
|
|
|
78 |
}
|
|
|
79 |
if ($close != 1) {
|
|
|
80 |
$close_link = '<br /> <br /><div align="center"><a href="#" class="admin_menu" onclick="window.close();">close</a><br /> </div>';
|
|
|
81 |
}
|
|
|
82 |
if ($header) {
|
|
|
83 |
$string = "<html>\n<head>\n<title>".$header."</title>\n" . '<link rel="stylesheet" href="themes/'.$add_stylesheet.'/style.css" />' . "\n</head>\n<body>\n<h2>" . $header . "</h2>\n" . $text . "\n".$close_link."\n</body>\n</html>";
|
|
|
84 |
}
|
|
|
85 |
print $string;
|
|
|
86 |
die;
|
|
|
87 |
} // pop-up end
|
|
|
88 |
|
|
|
89 |
// check if we're using a version older than cpg1.4.0, if yes use hard-coded language (english)
|
|
|
90 |
if (is_array($lang_versioncheck_php) == false) {
|
|
|
91 |
$older_version = true;
|
|
|
92 |
}
|
|
|
93 |
$local_lang_versioncheck_php = array(
|
|
|
94 |
'title' => 'Versioncheck',
|
|
|
95 |
'what_it_does' => 'This page is meant for users who have updated their coppermine install. This script goes through the files on your webserver and tries to determine if your local file versions on the webserver are the same as the ones from the repository at http://coppermine.sourceforge.net, this way displaying the files you were meant to update as well.<br />It will show everything in red that needs to be fixed. Entries in yellow need looking into. Entries in green (or your default font color) are OK.<br />Click on the help icons to find out more.',
|
|
|
96 |
'online_repository_unable' => 'Unable to connect to online repository',
|
|
|
97 |
'online_repository_noconnect' => 'Coppermine was unable to connect to the online repository. This can have two reasons:',
|
|
|
98 |
'online_repository_reason1' => 'the coppermine online repository is currently down - check if you can browse this page: %s - if you can\'t access this page, try again later.',
|
|
|
99 |
'online_repository_reason2' => 'PHP on your webserver is configured with %s turned off (by default, it\'s turned on). If the server is yours to administer, turn this option on in <i>php.ini</i> (at least allow it to be overridden with %s). If you\'re webhosted, you will probably have to live with the fact that you can\'t compare your files to the online repository. This page will then only display the file versions that came with your distribution - updates will not be displayed.',
|
|
|
100 |
'online_repository_skipped' => 'Connection to online repository skipped',
|
|
|
101 |
'online_repository_to_local' => 'The script is defaulting to the local copy of the version-files now. The data may be inacurate if you have upgraded Coppermine and you haven\'t uploaded all files. Changes to the files after the release won\'t be taken into account as well.',
|
|
|
102 |
'local_repository_unable' => 'Unable to connect to the repository on your server',
|
|
|
103 |
'local_repository_explanation' => 'Coppermine was unable to connect to the repository file %s on your webserver. This probably means that you haven\'t uploaded the repository file to your webserver. Do so now and then try to run this page once more (hit refresh).<br />If the script still fails, your webhost might have disabled parts of <a href="http://www.php.net/manual/en/ref.filesystem.php">PHP\'s filesystem functions</a> completely. In this case, you simply won\'t be able to use this tool at all, sorry.',
|
|
|
104 |
'coppermine_version_header' => 'Installed Coppermine version',
|
|
|
105 |
'coppermine_version_info' => 'You have currently installed: %s',
|
|
|
106 |
'coppermine_version_explanation' => 'If you think this is entirely wrong and you\'re supposed to be running a higher version of Coppermine, you probably haven\'t uploaded the most recent version of the file <i>include/init.inc.php</i>',
|
|
|
107 |
'version_comparison' => 'Version comparison',
|
|
|
108 |
'folder_file' => 'folder/file',
|
|
|
109 |
'coppermine_version' => 'cpg version',
|
|
|
110 |
'file_version' => 'file version',
|
|
|
111 |
'webcvs' => 'web cvs',
|
|
|
112 |
'writable' => 'writable',
|
|
|
113 |
'not_writable' => 'not writable',
|
|
|
114 |
'help' => 'Help',
|
|
|
115 |
'help_file_not_exist_optional1' => 'file/folder does not exist',
|
|
|
116 |
'help_file_not_exist_optional2' => 'The file/folder %s has not been found on your server. Although it is optional you should upload it (using your FTP client) to your webserver if you are experiencing problems.',
|
|
|
117 |
'help_file_not_exist_mandatory1' => 'file/folder does not exist',
|
|
|
118 |
'help_file_not_exist_mandatory2' => 'The file/folder %s has not been found on your server, although it is mandatory. Upload the file to your webserver (using your FTP client).',
|
|
|
119 |
'help_no_local_version1' => 'No local file version',
|
|
|
120 |
'help_no_local_version2' => 'The script was unable to extract a local file version - your file is either outdated or you have modified it, removing the header information on the way. Updating the file is recommended.',
|
|
|
121 |
'help_local_version_outdated1' => 'Local version outdated',
|
|
|
122 |
'help_local_version_outdated2' => 'Your version of this file seems to be from an older version of Coppermine (you probably upgraded). Make sure to update this file as well. There might have been changes to this file after the release of the package - check the web cvs as well to look for an update.',
|
|
|
123 |
'help_local_version_na1' => 'Unable to extract cvs version info',
|
|
|
124 |
'help_local_version_na2' => 'The script could not determine what cvs version the file on your webserver is. You should upload the file from your package.',
|
|
|
125 |
'help_local_version_dev1' => 'Development version',
|
|
|
126 |
'help_local_version_dev2' => 'The file on your webserver seems to be newer than your Coppermine version. You are either using a development file (you should only do so if you know what you are doing), or you have upgraded your Coppermine install and not uploaded include/init.inc.php',
|
|
|
127 |
'help_not_writable1' => 'Folder not writable',
|
|
|
128 |
'help_not_writable2' => 'Change file permissions (CHMOD) to grant the script write access to the folder %s and everything within it.',
|
|
|
129 |
'help_writable1' => 'Folder writable',
|
|
|
130 |
'help_writable2' => 'The folder %s is writable. This is an unnecessary risk, coppermine only needs read/execute access.',
|
|
|
131 |
'help_writable_undetermined' => 'Coppermine was not able to determine wether the folder is writable.',
|
|
|
132 |
'your_file' => 'your file',
|
|
|
133 |
'reference_file' => 'reference file',
|
|
|
134 |
'summary' => 'Summary',
|
|
|
135 |
'total' => 'Total files/folders checked',
|
|
|
136 |
'mandatory_files_missing' => 'Mandatory files missing',
|
|
|
137 |
'optional_files_missing' => 'Optional files missing',
|
|
|
138 |
'files_from_older_version' => 'Files left over from outdated Coppermine version',
|
|
|
139 |
'file_version_outdated' => 'Outdated file versions',
|
|
|
140 |
'error_no_data' => 'The script made a boo, it was not able to retrieve any information. Sorry for the inconvenience.',
|
|
|
141 |
'go_to_webcvs' => 'go to %s',
|
|
|
142 |
'options' => 'Options',
|
|
|
143 |
'show_optional_files' => 'show optional folders/files',
|
|
|
144 |
'show_mandatory_files' => 'show mandatory files',
|
|
|
145 |
'show_file_versions' => 'show file versions',
|
|
|
146 |
'show_errors_only' => 'show folders/files with errors only',
|
|
|
147 |
'show_permissions' => 'show folder permissions',
|
|
|
148 |
'show_condensed_output' => 'show condensed ouput (for easier screenshots)',
|
|
|
149 |
'coppermine_in_webroot' => 'coppermine is installed in the webroot',
|
|
|
150 |
'connect_online_repository' => 'try connecting to the online repository',
|
|
|
151 |
'show_additional_information' => 'show additional information',
|
|
|
152 |
'no_webcvs_link' => 'don\'t display web cvs link',
|
|
|
153 |
'stable_webcvs_link' => 'display web cvs link to stable branch',
|
|
|
154 |
'devel_webcvs_link' => 'display web cvs link to devel branch',
|
|
|
155 |
'submit' => 'apply changes',
|
|
|
156 |
'reset_to_defaults' => 'reset to default values',
|
|
|
157 |
);
|
|
|
158 |
foreach($local_lang_versioncheck_php as $key => $value) {
|
|
|
159 |
if ($lang_versioncheck_php[$key] == '') { $lang_versioncheck_php[$key] = $value;}
|
|
|
160 |
//print $key.'|'.$value.'<br />';
|
|
|
161 |
}
|
|
|
162 |
|
|
|
163 |
if (function_exists('cpg_display_help') == false ) {
|
|
|
164 |
function cpg_display_help($reference = '', $width = '600', $height = '350') {
|
|
|
165 |
global $CONFIG, $USER;
|
|
|
166 |
if ($reference == '' || $CONFIG['enable_help'] == '0') {return; }
|
|
|
167 |
if ($CONFIG['enable_help'] == '2' && GALLERY_ADMIN_MODE == false) {return; }
|
|
|
168 |
$help_theme = $CONFIG['theme'];
|
|
|
169 |
if ($USER['theme']) {
|
|
|
170 |
$help_theme = $USER['theme'];
|
|
|
171 |
}
|
|
|
172 |
// check if the help icon is there. If it isn't, display a plain question mark
|
|
|
173 |
if (file_exists('images/help.gif') == true) { $help_icon = '<img src="images/help.gif" width="13" height="11" border="0" alt="" title="'.$lang_versioncheck_php['help'].'" />';
|
|
|
174 |
} else { $help_icon = '<span style="background-color:#FFFAD3;color:#000000;font-weight:bold;border:1px solid black;font-size:8pt;margin:0px;padding:0px" title="'.$lang_versioncheck_php['help'].'"> ? </span>';
|
|
|
175 |
}
|
|
|
176 |
$help_html = "<a href=\"javascript:;\" onclick=\"MM_openBrWindow('".$_SERVER['PHP_SELF']."?pop=1&css=" . $help_theme . "&" . $reference . "','" . uniqid(rand()) . "','scrollbars=yes,toolbar=no,status=no,resizable=yes,width=" . $width . ",height=" . $height . "')\" style=\"cursor:help;text-decoration:none\">".$help_icon."</a>";
|
|
|
177 |
return $help_html;
|
|
|
178 |
}
|
|
|
179 |
}
|
|
|
180 |
|
|
|
181 |
if ($condensed_output == 1) {$table_width = '-1';} else {$table_width = '100%';}
|
|
|
182 |
|
|
|
183 |
pageheader($lang_versioncheck_php['title']);
|
|
|
184 |
starttable($table_width, $lang_versioncheck_php['title'], $number_of_columns);
|
|
|
185 |
if ($additional_info != 0) { //display explanation what this file does: start
|
|
|
186 |
echo <<< EOT
|
|
|
187 |
<tr>
|
|
|
188 |
<td colspan="$number_of_columns" class="tableb">{$lang_versioncheck_php['what_it_does']}</td>
|
|
|
189 |
</tr>
|
|
|
190 |
EOT;
|
|
|
191 |
} //display explanation what this file does: start
|
|
|
192 |
echo <<< EOT
|
|
|
193 |
<style type="text/css">
|
|
|
194 |
.green {
|
|
|
195 |
font-weight: bold;
|
|
|
196 |
color: green;
|
|
|
197 |
}
|
|
|
198 |
|
|
|
199 |
.red {
|
|
|
200 |
font-weight: bold;
|
|
|
201 |
color: red;
|
|
|
202 |
}
|
|
|
203 |
.yellow {
|
|
|
204 |
font-weight: bold;
|
|
|
205 |
color:#FFBE00;
|
|
|
206 |
}
|
|
|
207 |
.tablegreen {
|
|
|
208 |
color: #CFCFCF;
|
|
|
209 |
border: 1px solid #CFCFCF;
|
|
|
210 |
background-color:green;
|
|
|
211 |
margin: 0px;
|
|
|
212 |
padding-top: 0px;
|
|
|
213 |
padding-bottom: 0px;
|
|
|
214 |
padding-left: 10px;
|
|
|
215 |
padding-right: 10px;
|
|
|
216 |
}
|
|
|
217 |
.tableyellow {
|
|
|
218 |
color: black;
|
|
|
219 |
border: 1px solid #CFCFCF;
|
|
|
220 |
background-color:#FFBE00;
|
|
|
221 |
margin: 0px;
|
|
|
222 |
padding-top: 0px;
|
|
|
223 |
padding-bottom: 0px;
|
|
|
224 |
padding-left: 10px;
|
|
|
225 |
padding-right: 10px;
|
|
|
226 |
}
|
|
|
227 |
.tablered {
|
|
|
228 |
color: white;
|
|
|
229 |
border: 1px solid #CFCFCF;
|
|
|
230 |
background-color:red;
|
|
|
231 |
margin: 0px;
|
|
|
232 |
padding-top: 0px;
|
|
|
233 |
padding-bottom: 0px;
|
|
|
234 |
padding-left: 10px;
|
|
|
235 |
padding-right: 10px;
|
|
|
236 |
}
|
|
|
237 |
</style>
|
|
|
238 |
EOT;
|
|
|
239 |
|
|
|
240 |
if (isset($older_version) && $additional_info != 0) {
|
|
|
241 |
echo <<<EOT
|
|
|
242 |
<tr>
|
|
|
243 |
<td colspan="$number_of_columns" class="tableb">
|
|
|
244 |
As this file didn't come with your original version of Coppermine or was added to the package after translation was already done, there's no internationalisation - it is available in English only.
|
|
|
245 |
</td>
|
|
|
246 |
</tr>
|
|
|
247 |
EOT;
|
|
|
248 |
}
|
|
|
249 |
|
|
|
250 |
// step x: display the options
|
|
|
251 |
$form_output = '<form name="versioncheck_options" action="'.$_SERVER['PHP_SELF'].'" method="get">';
|
|
|
252 |
$form_output .= '<tr>';
|
|
|
253 |
$form_output .= '<td colspan="'.$number_of_columns.'" class="tableh2"><h2>'.$lang_versioncheck_php['options'].'</h2></td>';
|
|
|
254 |
$form_output .= '</tr>';
|
|
|
255 |
$form_output .= '<tr>';
|
|
|
256 |
$form_output .= '<td colspan="'.$number_of_columns.'" class="tableb">';
|
|
|
257 |
|
|
|
258 |
$form_output .= '<table border="0" cellspacing="0" cellpadding="0" width="100%">';
|
|
|
259 |
$form_output .= '<tr>';
|
|
|
260 |
$form_output .= '<td class="tableb">';
|
|
|
261 |
if($optional_files == 1) {$option_checked = 'checked="checked"';}else{$option_checked = '';}
|
|
|
262 |
$option_checked = $optional_files ? 'checked="checked"' : '';
|
|
|
263 |
$form_output .= '<input type="Checkbox" name="optional_files" id="optional_files" value="1" '.$option_checked.' class="checkbox" /><label for="optional_files" class="clickable_option">'.$lang_versioncheck_php['show_optional_files'].'</label>';
|
|
|
264 |
$form_output .= '</td>';
|
|
|
265 |
$form_output .= '<td class="tableb">';
|
|
|
266 |
if($errors_only == 1) {$option_checked = 'checked="checked"';}else{$option_checked = '';}
|
|
|
267 |
$form_output .= '<input type="Checkbox" name="errors_only" id="errors_only" value="1" '.$option_checked.' class="checkbox" /><label for="errors_only" class="clickable_option">'.$lang_versioncheck_php['show_errors_only'].'</label>';
|
|
|
268 |
$form_output .= '</td>';
|
|
|
269 |
$form_output .= '<td class="tableb">';
|
|
|
270 |
if($webcvs == 0) {$option_checked = 'checked="checked"';}else{$option_checked = '';}
|
|
|
271 |
$form_output .= '<input type="Radio" name="webcvs" id="webcvs1" value="0" '.$option_checked.' class="radio" /><label for="webcvs1" class="clickable_option">'.$lang_versioncheck_php['no_webcvs_link'].'</label>';
|
|
|
272 |
$form_output .= '</td>';
|
|
|
273 |
$form_output .= '</tr>';
|
|
|
274 |
$form_output .= '<tr>';
|
|
|
275 |
$form_output .= '<td class="tableb">';
|
|
|
276 |
if($mandatory_files == 1) {$option_checked = 'checked="checked"';}else{$option_checked = '';}
|
|
|
277 |
$form_output .= '<input type="Checkbox" name="mandatory_files" id="mandatory_files" value="1" '.$option_checked.' class="checkbox" /><label for="mandatory_files" class="clickable_option">'.$lang_versioncheck_php['show_mandatory_files'].'</label>';
|
|
|
278 |
$form_output .= '</td>';
|
|
|
279 |
$form_output .= '<td class="tableb">';
|
|
|
280 |
if($webroot == 1) {$option_checked = 'checked="checked"';}else{$option_checked = '';}
|
|
|
281 |
$form_output .= '<input type="Checkbox" name="webroot" id="webroot" value="1" '.$option_checked.' class="checkbox" /><label for="webroot" class="clickable_option">'.$lang_versioncheck_php['coppermine_in_webroot'].'</label>';
|
|
|
282 |
$form_output .= '</td>';
|
|
|
283 |
$form_output .= '<td class="tableb">';
|
|
|
284 |
if($webcvs == 'stable') {$option_checked = 'checked="checked"';}else{$option_checked = '';}
|
|
|
285 |
$form_output .= '<input type="Radio" name="webcvs" id="webcvs2" value="stable" '.$option_checked.' class="radio" /><label for="webcvs2" class="clickable_option">'.$lang_versioncheck_php['stable_webcvs_link'].'</label>';
|
|
|
286 |
$form_output .= '</td>';
|
|
|
287 |
$form_output .= '</tr>';
|
|
|
288 |
$form_output .= '<tr>';
|
|
|
289 |
$form_output .= '<td class="tableb">';
|
|
|
290 |
if($additional_info == 1) {$option_checked = 'checked="checked"';}else{$option_checked = '';}
|
|
|
291 |
$form_output .= '<input type="Checkbox" name="additional_info" id="additional_info" value="1" '.$option_checked.' class="checkbox" /><label for="additional_info" class="clickable_option">'.$lang_versioncheck_php['show_additional_information'].'</label>';
|
|
|
292 |
$form_output .= '</td>';
|
|
|
293 |
$form_output .= '<td class="tableb">';
|
|
|
294 |
if($online == 1) {$option_checked = 'checked="checked"';}else{$option_checked = '';}
|
|
|
295 |
$form_output .= '<input type="Checkbox" name="online" id="online" value="1" '.$option_checked.' class="checkbox" /><label for="online" class="clickable_option">'.$lang_versioncheck_php['connect_online_repository'].'</label>';
|
|
|
296 |
$form_output .= '</td>';
|
|
|
297 |
$form_output .= '<td class="tableb">';
|
|
|
298 |
if($webcvs == 'devel') {$option_checked = 'checked="checked"';}else{$option_checked = '';}
|
|
|
299 |
$form_output .= '<input type="Radio" name="webcvs" id="webcvs3" value="devel" '.$option_checked.' class="radio" /><label for="webcvs3" class="clickable_option">'.$lang_versioncheck_php['devel_webcvs_link'].'</label>';
|
|
|
300 |
$form_output .= '</td>';
|
|
|
301 |
$form_output .= '</tr>';
|
|
|
302 |
$form_output .= '<tr>';
|
|
|
303 |
$form_output .= '<td class="tableb">';
|
|
|
304 |
if($file_versions == 1) {$option_checked = 'checked="checked"';}else{$option_checked = '';}
|
|
|
305 |
$form_output .= '<input type="Checkbox" name="file_versions" id="file_versions" value="1" '.$option_checked.' class="checkbox" /><label for="file_versions" class="clickable_option">'.$lang_versioncheck_php['show_file_versions'].'</label>';
|
|
|
306 |
$form_output .= '</td>';
|
|
|
307 |
$form_output .= '<td class="tableb">';
|
|
|
308 |
if($permissions == 1) {$option_checked = 'checked="checked"';}else{$option_checked = '';}
|
|
|
309 |
$form_output .= '<input type="Checkbox" name="permissions" id="permissions" value="1" '.$option_checked.' class="checkbox" /><label for="permissions" class="clickable_option">'.$lang_versioncheck_php['show_permissions'].'</label>';
|
|
|
310 |
$form_output .= '</td>';
|
|
|
311 |
$form_output .= '<td class="tableb">';
|
|
|
312 |
if($condensed_output == 1) {$option_checked = 'checked="checked"';}else{$option_checked = '';}
|
|
|
313 |
$form_output .= '<input type="Checkbox" name="condensed_output" id="condensed_output" value="1" '.$option_checked.' class="checkbox" /><label for="condensed_output" class="clickable_option">'.$lang_versioncheck_php['show_condensed_output'].'</label>';
|
|
|
314 |
$form_output .= '</td>';
|
|
|
315 |
$form_output .= '</tr>';
|
|
|
316 |
$form_output .= '<tr>';
|
|
|
317 |
$form_output .= '<td class="tablef">';
|
|
|
318 |
|
|
|
319 |
$form_output .= '</td>';
|
|
|
320 |
$form_output .= '<td class="tablef" align="center">';
|
|
|
321 |
$form_output .= '<input type="hidden" name="changes" value="1" />';
|
|
|
322 |
$form_output .= '<input type="submit" name="submit" value="'.$lang_versioncheck_php['submit'].'" class="button" />';
|
|
|
323 |
$form_output .= '</td>';
|
|
|
324 |
$form_output .= '<td class="tablef" align="center">';
|
|
|
325 |
$form_output .= ' <input type="button" name="reset" value="'.$lang_versioncheck_php['reset_to_defaults'].'" class="button" onclick="location.href=\''.$_SERVER['PHP_SELF'].'\'" />';
|
|
|
326 |
$form_output .= '</td>';
|
|
|
327 |
$form_output .= '</tr>';
|
|
|
328 |
$form_output .= '</table>';
|
|
|
329 |
|
|
|
330 |
$form_output .= '</td>';
|
|
|
331 |
$form_output .= '</tr>';
|
|
|
332 |
$form_output .= '</form>';
|
|
|
333 |
print $form_output;
|
|
|
334 |
|
|
|
335 |
|
|
|
336 |
// step one: get the data from the online repository
|
|
|
337 |
// connect to the online repository at sourceforge.net
|
|
|
338 |
if ($online != 0) { // try to connect to the online repository: start
|
|
|
339 |
@ini_set("allow_url_fopen","1");
|
|
|
340 |
$file = @fopen ($online_repository_url, 'r');
|
|
|
341 |
if ($file) {
|
|
|
342 |
while (!feof ($file)) {
|
|
|
343 |
$line = fgets ($file, 1024);
|
|
|
344 |
//if (trim($line) != '') {$line_counter++;}
|
|
|
345 |
//print 'line '.$line_counter.':'.trim($line).'|<br />';
|
|
|
346 |
$repository_info = explode ( '|', $line);
|
|
|
347 |
if ($repository_info[0] == COPPERMINE_VERSION) {
|
|
|
348 |
$line_counter++;
|
|
|
349 |
$repository_filename[] = $repository_info[1];
|
|
|
350 |
$repository_version[$repository_info[1]] = $repository_info[2];
|
|
|
351 |
$repository_cvs[$repository_info[1]] = $repository_info[3];
|
|
|
352 |
$repository_needed[$repository_info[1]] = $repository_info[4];
|
|
|
353 |
$repository_readwrite[$repository_info[1]] = trim(str_replace('@', '', $repository_info[5]));
|
|
|
354 |
}
|
|
|
355 |
}
|
|
|
356 |
if ($line_counter > 0) {$online_repository_connection = 1;}
|
|
|
357 |
fclose($file);
|
|
|
358 |
@ini_set("allow_url_fopen","0");
|
|
|
359 |
} // if ($file): end
|
|
|
360 |
} // try to connect to the online repository: end
|
|
|
361 |
|
|
|
362 |
|
|
|
363 |
if ($online_repository_connection != 1) { // connecting to the online repository didn't work or didn't return any data
|
|
|
364 |
$err_reason1 = sprintf($lang_versioncheck_php['online_repository_reason1'],'<a href="'.$online_repository_url.'" target="_blank">'.$online_repository_url.'</a>');
|
|
|
365 |
$err_reason2 = sprintf($lang_versioncheck_php['online_repository_reason2'],'<a href="http://www.php.net/manual/en/ref.filesystem.php#ini.allow-url-fopen"><i>allow_url_fopen</i></a>','<a href="http://www.php.net/manual/en/function.ini-set.php"><i>ini_set</i></a>');
|
|
|
366 |
if ($additional_info != 0 && $online == 1) { //display warning that repository connection was not possible: start
|
|
|
367 |
echo <<<EOT
|
|
|
368 |
<tr>
|
|
|
369 |
<td colspan="$number_of_columns" class="tableh2">
|
|
|
370 |
<h2>{$lang_versioncheck_php['online_repository_unable']}</h2>
|
|
|
371 |
</td>
|
|
|
372 |
</tr>
|
|
|
373 |
<tr><td colspan="$number_of_columns" class="tableb">
|
|
|
374 |
{$lang_versioncheck_php['online_repository_noconnect']}
|
|
|
375 |
<ul><li>
|
|
|
376 |
$err_reason1
|
|
|
377 |
</li><li>
|
|
|
378 |
$err_reason2
|
|
|
379 |
</li></ul>
|
|
|
380 |
{$lang_versioncheck_php['online_repository_to_local']}
|
|
|
381 |
</td></tr>
|
|
|
382 |
EOT;
|
|
|
383 |
//display warning that repository connection was not possible: end
|
|
|
384 |
} elseif ($additional_info != 0 && $online != 1)
|
|
|
385 |
{
|
|
|
386 |
echo <<<EOT
|
|
|
387 |
<tr>
|
|
|
388 |
<td colspan="$number_of_columns" class="tableh2">
|
|
|
389 |
<h2>{$lang_versioncheck_php['online_repository_skipped']}</h2>
|
|
|
390 |
</td>
|
|
|
391 |
</tr>
|
|
|
392 |
<tr><td colspan="$number_of_columns" class="tableb">
|
|
|
393 |
{$lang_versioncheck_php['online_repository_to_local']}
|
|
|
394 |
</td></tr>
|
|
|
395 |
EOT;
|
|
|
396 |
}
|
|
|
397 |
|
|
|
398 |
$online_repository_connection = 0;
|
|
|
399 |
// use the data that comes with the distribution
|
|
|
400 |
$local_file_name = 'repository.txt';
|
|
|
401 |
$file = cpg_offline_repository();
|
|
|
402 |
$line = explode ( '@', $file);
|
|
|
403 |
foreach ($line as $value) {
|
|
|
404 |
$repository_info = explode ( '|', $value);
|
|
|
405 |
$repository_info[0] = trim($repository_info[0]);
|
|
|
406 |
if ($repository_info[0] == COPPERMINE_VERSION) {
|
|
|
407 |
$repository_filename[] = cpg_replace_albums_name($repository_info[1]);
|
|
|
408 |
$repository_version[$repository_info[1]] = $repository_info[2];
|
|
|
409 |
$repository_cvs[$repository_info[1]] = $repository_info[3];
|
|
|
410 |
$repository_needed[$repository_info[1]] = $repository_info[4];
|
|
|
411 |
$repository_readwrite[$repository_info[1]] = trim($repository_info[5]);
|
|
|
412 |
}
|
|
|
413 |
}
|
|
|
414 |
}
|
|
|
415 |
|
|
|
416 |
$currently_installed = sprintf($lang_versioncheck_php['coppermine_version_info'],'<b>' . COPPERMINE_VERSION . '</b>');
|
|
|
417 |
if ($additional_info != 0) { //display information about current version in use: start
|
|
|
418 |
echo <<<EOT
|
|
|
419 |
<tr>
|
|
|
420 |
<td colspan="$number_of_columns" class="tableh2">
|
|
|
421 |
<h2>{$lang_versioncheck_php['coppermine_version_header']}</h2>
|
|
|
422 |
</td>
|
|
|
423 |
</tr>
|
|
|
424 |
<tr><td colspan="$number_of_columns" class="tableb">
|
|
|
425 |
$currently_installed
|
|
|
426 |
<br />
|
|
|
427 |
{$lang_versioncheck_php['coppermine_version_explanation']}
|
|
|
428 |
</td></tr>
|
|
|
429 |
EOT;
|
|
|
430 |
} //display information about current version in use: end
|
|
|
431 |
|
|
|
432 |
// step two: draw the table header
|
|
|
433 |
echo <<< EOT
|
|
|
434 |
<tr>
|
|
|
435 |
<td colspan="$number_of_columns" class="tableh2">
|
|
|
436 |
<h2>{$lang_versioncheck_php['version_comparison']}</h2>
|
|
|
437 |
</td>
|
|
|
438 |
</tr>
|
|
|
439 |
<tr>
|
|
|
440 |
<td class="tablef"><b>{$lang_versioncheck_php['folder_file']}</b></td>
|
|
|
441 |
<td class="tablef" colspan="2"><b>{$lang_versioncheck_php['coppermine_version']}</b></td>
|
|
|
442 |
EOT;
|
|
|
443 |
|
|
|
444 |
if ($file_versions != 0) {print ' <td class="tablef" colspan="2"><b>'.$lang_versioncheck_php['file_version'].'</b></td>';}
|
|
|
445 |
if ($webcvs != '0') {print ' <td class="tablef"><b>'.$lang_versioncheck_php['webcvs'].'</b></td>';}
|
|
|
446 |
print '</tr>';
|
|
|
447 |
|
|
|
448 |
|
|
|
449 |
|
|
|
450 |
|
|
|
451 |
// step three: go through all files that exist in the repository and check if they're on the webserver as well
|
|
|
452 |
if ($webroot == 1) {
|
|
|
453 |
$dir = ''; // this is the place to start browsing for root folders
|
|
|
454 |
} else {
|
|
|
455 |
$dir = '../'.cpg_get_coppermine_path().'/'; // this is the place to start browsing
|
|
|
456 |
}
|
|
|
457 |
if (is_array($repository_filename)) {
|
|
|
458 |
foreach ($repository_filename as $rep_file) { //foreach start
|
|
|
459 |
$counter_total_files++;
|
|
|
460 |
$file_info = cpg_get_path_and_file($rep_file);
|
|
|
461 |
cpg_output_version_row(cpg_get_fileversion($dir.$file_info['path'], $file_info['file']), $file_info, $file_info['file']);
|
|
|
462 |
} //foreach end
|
|
|
463 |
} else {
|
|
|
464 |
echo <<<EOT
|
|
|
465 |
<tr>
|
|
|
466 |
<td colspan="$number_of_columns" class="tableb"><b>{$lang_versioncheck_php['error_no_data']}</b></td>
|
|
|
467 |
</tr>
|
|
|
468 |
EOT;
|
|
|
469 |
}
|
|
|
470 |
|
|
|
471 |
// show summary
|
|
|
472 |
$number_of_columns_minus_one = $number_of_columns - 1;
|
|
|
473 |
if ($counter_file_mandatory_not_exist == 0){$style_mandatory_files='';}else{$style_mandatory_files='red';}
|
|
|
474 |
if ($counter_file_optional_not_exist == 0){$style_optional_files='';}else{$style_optional_files='yellow';}
|
|
|
475 |
if ($counter_cpg_version_older == 0){$style_cpg_version_older='tableb';}else{$style_cpg_version_older='tablered';}
|
|
|
476 |
if ($counter_cvs_version_older == 0){$style_cvs_version_older='tableb';}else{$style_cvs_version_older='tablered';}
|
|
|
477 |
|
|
|
478 |
echo <<<EOT
|
|
|
479 |
<tr>
|
|
|
480 |
<td colspan="$number_of_columns" class="tableh2">
|
|
|
481 |
<h2>{$lang_versioncheck_php['summary']}</h2>
|
|
|
482 |
</td>
|
|
|
483 |
</tr>
|
|
|
484 |
<tr>
|
|
|
485 |
<td class="tableb">
|
|
|
486 |
{$lang_versioncheck_php['total']}:
|
|
|
487 |
</td>
|
|
|
488 |
<td colspan="$number_of_columns_minus_one" class="tableb">
|
|
|
489 |
$counter_total_files
|
|
|
490 |
</td>
|
|
|
491 |
</tr>
|
|
|
492 |
<tr>
|
|
|
493 |
<td class="tableb">
|
|
|
494 |
{$lang_versioncheck_php['mandatory_files_missing']}:
|
|
|
495 |
</td>
|
|
|
496 |
<td colspan="$number_of_columns_minus_one" class="tableb">
|
|
|
497 |
<span class="$style_mandatory_files">
|
|
|
498 |
$counter_file_mandatory_not_exist
|
|
|
499 |
</span>
|
|
|
500 |
</td>
|
|
|
501 |
</tr>
|
|
|
502 |
<tr>
|
|
|
503 |
<td class="tableb">
|
|
|
504 |
{$lang_versioncheck_php['optional_files_missing']}:
|
|
|
505 |
</td>
|
|
|
506 |
<td colspan="$number_of_columns_minus_one" class="tableb">
|
|
|
507 |
<span class="$style_optional_files">
|
|
|
508 |
$counter_file_optional_not_exist
|
|
|
509 |
</span>
|
|
|
510 |
</td>
|
|
|
511 |
</tr>
|
|
|
512 |
<tr>
|
|
|
513 |
<td class="tableb">
|
|
|
514 |
{$lang_versioncheck_php['files_from_older_version']}:
|
|
|
515 |
</td>
|
|
|
516 |
<td colspan="$number_of_columns_minus_one" class="$style_cpg_version_older">
|
|
|
517 |
$counter_cpg_version_older
|
|
|
518 |
</td>
|
|
|
519 |
</tr>
|
|
|
520 |
<tr>
|
|
|
521 |
<td class="tableb">
|
|
|
522 |
{$lang_versioncheck_php['file_version_outdated']}:
|
|
|
523 |
</td>
|
|
|
524 |
<td colspan="$number_of_columns_minus_one" class="$style_cvs_version_older">
|
|
|
525 |
$counter_cvs_version_older
|
|
|
526 |
</td>
|
|
|
527 |
</tr>
|
|
|
528 |
EOT;
|
|
|
529 |
|
|
|
530 |
|
|
|
531 |
endtable();
|
|
|
532 |
print '<br />';
|
|
|
533 |
pagefooter();
|
|
|
534 |
|
|
|
535 |
|
|
|
536 |
////////////////////////////////// functions ///////////////////////////////
|
|
|
537 |
|
|
|
538 |
function cpg_get_coppermine_path() {
|
|
|
539 |
//global $PHP_SELF;
|
|
|
540 |
$return = str_replace('/', '',strrchr(str_replace('/'.str_replace('/', '',strrchr($_SERVER['PHP_SELF'], '/')), '', $_SERVER['PHP_SELF']),'/'));
|
|
|
541 |
return $return;
|
|
|
542 |
}
|
|
|
543 |
|
|
|
544 |
function cpg_get_path_and_file($string) {
|
|
|
545 |
// check if $string contains delimiter that triggers replacement
|
|
|
546 |
$delimiter = '**';
|
|
|
547 |
while (strstr($string, $delimiter) == TRUE) {
|
|
|
548 |
$string = cpg_replace_vars_from_config($string, $delimiter);
|
|
|
549 |
}
|
|
|
550 |
$return['path'] = str_replace(str_replace('/', '', strrchr($string, '/')), '', $string);
|
|
|
551 |
$return['file'] = str_replace('/', '', strrchr($string, '/'));
|
|
|
552 |
if (strstr($return['path'], '.') != FALSE && $return['file'] == '') {
|
|
|
553 |
$return['file'] = $return['path'];
|
|
|
554 |
$return['path'] = '';
|
|
|
555 |
}
|
|
|
556 |
if (strstr($return['file'], '.') == FALSE) {
|
|
|
557 |
$return['path'] = $return['path'].$return['file'];
|
|
|
558 |
$return['file'] = '';
|
|
|
559 |
}
|
|
|
560 |
return $return;
|
|
|
561 |
}
|
|
|
562 |
|
|
|
563 |
function cpg_replace_vars_from_config($string, $delimiter = '**') {
|
|
|
564 |
global $CONFIG;
|
|
|
565 |
// check the string for $delimiter and replace the stuff within $delimiter with the config values
|
|
|
566 |
$asterisk = '';
|
|
|
567 |
$asterisk = strstr($string, $delimiter); // now the full string starting from the first $delimiter is in $asterrisk
|
|
|
568 |
$asterisk = ltrim($asterisk, $delimiter); // trim the first to $delimiter
|
|
|
569 |
$asterisk = str_replace(strstr($asterisk, $delimiter), '', $asterisk); // trim the bits after and including the remaining $delimiter. Now $asterisk contains only the keyword
|
|
|
570 |
// replace the keyword and $delimiter in $string with the actual $CONFIG value
|
|
|
571 |
$string = str_replace($delimiter.$asterisk.$delimiter, rtrim($CONFIG[$asterisk],'/'), $string);
|
|
|
572 |
return $string;
|
|
|
573 |
}
|
|
|
574 |
|
|
|
575 |
function cpg_get_fileversion($folder = '',$file = '') {
|
|
|
576 |
$handle = @fopen($folder.$file, 'r');
|
|
|
577 |
$blob = @fread($handle, filesize($folder.$file));
|
|
|
578 |
@fclose($handle);
|
|
|
579 |
$cvs_string1 = '$'.'I'.'d'.':';
|
|
|
580 |
$cvs_string2 = '$'.'Revision'.':';
|
|
|
581 |
$cpg_version_determination = 'Coppermine' . ' ' . 'version:';
|
|
|
582 |
|
|
|
583 |
$blob = str_replace('<?php','',$blob);
|
|
|
584 |
|
|
|
585 |
// Determine the cpg version
|
|
|
586 |
$return['cpg_version'] = substr($blob,strpos($blob, $cpg_version_determination)); // chop off the first bit up to the string $cpg_version_determination
|
|
|
587 |
$double_slash_position = strpos($return['cpg_version'], '//');
|
|
|
588 |
if ($double_slash_position) {
|
|
|
589 |
$return['cpg_version'] = substr($return['cpg_version'],0,$double_slash_position);
|
|
|
590 |
}
|
|
|
591 |
$return['cpg_version'] = trim(str_replace($cpg_version_determination, '', $return['cpg_version']));
|
|
|
592 |
$return['cpg_version'] = trim(str_replace('#', '', $return['cpg_version']));
|
|
|
593 |
$return['cpg_version'] = trim(substr($return['cpg_version'], 0, strpos($return['cpg_version'], '$')));
|
|
|
594 |
/*
|
|
|
595 |
print $file;
|
|
|
596 |
print ':<font color="red">';
|
|
|
597 |
print $return['cpg_version'];
|
|
|
598 |
print "</font>";
|
|
|
599 |
print $double_slash_position;
|
|
|
600 |
print "<br />\n";
|
|
|
601 |
*/
|
|
|
602 |
if (strlen($return['cpg_version']) > 5) {$return['cpg_version']='n/a';}
|
|
|
603 |
|
|
|
604 |
// Fallback to the "old" cpg version determination method if no result (for compatibility with older versions)
|
|
|
605 |
if ($return['cpg_version'] == '') {
|
|
|
606 |
$return['cpg_version'] = substr($blob,strpos($blob, 'Coppermine Photo Gallery'));
|
|
|
607 |
$return['cpg_version'] = substr($return['cpg_version'],0,strpos($return['cpg_version'], '//'));
|
|
|
608 |
$return['cpg_version'] = trim(str_replace('Coppermine Photo Gallery', '', $return['cpg_version']));
|
|
|
609 |
if (strlen($return['cpg_version']) > 5) {$return['cpg_version']='n/a';}
|
|
|
610 |
}
|
|
|
611 |
|
|
|
612 |
// Determine file (cvs) revision
|
|
|
613 |
$return['cvs_version'] = str_replace($cvs_string2, '', substr($blob,strpos($blob, $cvs_string2),25));
|
|
|
614 |
$return['cvs_version'] = trim(substr($return['cvs_version'], 0, strpos($return['cvs_version'], '$')));
|
|
|
615 |
|
|
|
616 |
// Fallback to the "old" revision determination method if no result (for compatibility with older versions)
|
|
|
617 |
if ($return['cvs_version'] == '' || !is_numeric($return['cvs_version'])) {
|
|
|
618 |
$return['cvs_version'] = substr($blob,strpos($blob, $cvs_string1));
|
|
|
619 |
$return['cvs_version'] = substr($return['cvs_version'],0,strpos($return['cvs_version'], 'Exp'));
|
|
|
620 |
$return['cvs_version'] = str_replace($cvs_string1, '', $return['cvs_version']);
|
|
|
621 |
// get rid of the filename inside the string
|
|
|
622 |
$return['cvs_version'] = trim(str_replace($file.',v ', '',$return['cvs_version']));
|
|
|
623 |
$return['cvs_version'] = str_replace('v ', '', $return['cvs_version']);
|
|
|
624 |
//if ($file=='picmgmt.inc.php' || $file=='index.php') {print $folder.$file.':'.$return['cvs_version'].'<br />';}
|
|
|
625 |
$return['cvs_version'] = trim(str_replace(strstr($return['cvs_version'], ' '), '', $return['cvs_version']));
|
|
|
626 |
}
|
|
|
627 |
if (strlen($return['cvs_version']) > 5) {$return['cvs_version']='n/a';}
|
|
|
628 |
|
|
|
629 |
if (file_exists($folder.$file)) {
|
|
|
630 |
$return['exists'] = 1;
|
|
|
631 |
} else {
|
|
|
632 |
$return['exists'] = 0;
|
|
|
633 |
}
|
|
|
634 |
|
|
|
635 |
if($file == '') { //we have a folder here. Check if it's writable
|
|
|
636 |
$return['writable'] = cpg_is_writable($folder);
|
|
|
637 |
}
|
|
|
638 |
// check for the existance of a folder
|
|
|
639 |
$return['is_dir'] = 0;
|
|
|
640 |
if ($file == '') {
|
|
|
641 |
if ($handle = @opendir($folder.$file)) {
|
|
|
642 |
$return['is_dir'] = 1;
|
|
|
643 |
@closedir($handle);
|
|
|
644 |
}
|
|
|
645 |
}
|
|
|
646 |
return $return;
|
|
|
647 |
}
|
|
|
648 |
|
|
|
649 |
function cpg_is_writable($folder)
|
|
|
650 |
{
|
|
|
651 |
$return = 0;
|
|
|
652 |
$file_content = "this is just a test file that hasn't been deleted properly.\nIt's safe to delete it now";
|
|
|
653 |
@unlink($folder.'/cpgvc_tf.txt');
|
|
|
654 |
if ($fd = @fopen($folder.'/cpgvc_tf.txt', 'w')) {
|
|
|
655 |
@fwrite($fd, $file_content);
|
|
|
656 |
@fclose($fd);
|
|
|
657 |
@unlink($folder.'/cpgvc_tf.txt');
|
|
|
658 |
$return = 1;
|
|
|
659 |
} else {
|
|
|
660 |
$return = -1;
|
|
|
661 |
}
|
|
|
662 |
return $return;
|
|
|
663 |
}
|
|
|
664 |
|
|
|
665 |
function cpg_output_version_row($file_version_info = '', $file_path = '', $cpg_is_file='') {
|
|
|
666 |
global $repository_filename, $repository_version, $repository_cvs, $repository_needed, $repository_readwrite, $lang_versioncheck_php, $counter_file_mandatory_not_exist, $counter_file_optional_not_exist, $counter_cpg_version_older, $counter_cpg_version_younger, $counter_cvs_version_older, $counter_cvs_version_younger, $optional_files, $webcvs, $file_versions, $errors_only,$permissions, $mandatory_files;
|
|
|
667 |
$file_complete_path = $file_path['path'].$file_path['file'];
|
|
|
668 |
// don't return anything if the options are set to filter optional files the actual file IS optional
|
|
|
669 |
if ($optional_files != 1 && $repository_needed[$file_complete_path] == 'optional') {return;}
|
|
|
670 |
if ($mandatory_files != 1 && $repository_needed[$file_complete_path] == 'mandatory') {return;}
|
|
|
671 |
$error_counter = 0;
|
|
|
672 |
ob_start(); // stop output temporarily
|
|
|
673 |
print '<tr>';
|
|
|
674 |
print '<td class="tableb">';
|
|
|
675 |
print '<a href="'.$file_path['path'].$file_path['file'].'">';
|
|
|
676 |
if ($cpg_is_file == '') {
|
|
|
677 |
print '<img src="images/folder.gif" width="16" height="16" border="0" alt="" title="" align="left" style="margin-left:0px;margin-right:10px" />';
|
|
|
678 |
} else {
|
|
|
679 |
print '<img src="images/spacer.gif" width="10" height="15" border="0" alt="" title="" style="border:1px solid black;margin-left:2px;margin-right:12px;background-color:#FFFFFF" align="left">';
|
|
|
680 |
}
|
|
|
681 |
print '</a>';
|
|
|
682 |
$help_ouput = '';
|
|
|
683 |
if ($file_version_info['exists'] == 1) {
|
|
|
684 |
$stylecolor = '';
|
|
|
685 |
$helptitle = '';
|
|
|
686 |
} else {
|
|
|
687 |
if ($repository_needed[$file_complete_path] == 'optional') {
|
|
|
688 |
$stylecolor = 'yellow';
|
|
|
689 |
$helptitle = $lang_versioncheck_php['help_file_not_exist_optional1'];
|
|
|
690 |
$helpoutput = sprintf($lang_versioncheck_php['help_file_not_exist_optional2'], '"<i>'.$file_complete_path.'</i>"');
|
|
|
691 |
$counter_file_optional_not_exist++;
|
|
|
692 |
$error_counter++;
|
|
|
693 |
} else {
|
|
|
694 |
$stylecolor = 'red';
|
|
|
695 |
$helptitle = $lang_versioncheck_php['help_file_not_exist_mandatory1'];
|
|
|
696 |
$helpoutput = sprintf($lang_versioncheck_php['help_file_not_exist_mandatory2'], '"<i>'.$file_complete_path.'</i>"');
|
|
|
697 |
$counter_file_mandatory_not_exist++;
|
|
|
698 |
$error_counter++;
|
|
|
699 |
}
|
|
|
700 |
}
|
|
|
701 |
print '<span class="'.$stylecolor.'" title="'.$helptitle.'">';
|
|
|
702 |
print $file_path['path'];
|
|
|
703 |
print $file_path['file'];
|
|
|
704 |
print '</span>';
|
|
|
705 |
if ($stylecolor != '') {
|
|
|
706 |
print ' ';
|
|
|
707 |
print cpg_display_help('f=index.html&base=64&h='.urlencode(base64_encode(serialize($helptitle))).'&t='.urlencode(base64_encode(serialize($helpoutput))),400,150);
|
|
|
708 |
}
|
|
|
709 |
|
|
|
710 |
|
|
|
711 |
// writable ? start
|
|
|
712 |
if (!$cpg_is_file && $permissions == 1) { // we have a folder: start
|
|
|
713 |
$stylecolor = '';
|
|
|
714 |
$writable_output = '';
|
|
|
715 |
$helptitle = '';
|
|
|
716 |
$helpoutput = '';
|
|
|
717 |
// check if the writable icon is there. If it isn't, display a plain text
|
|
|
718 |
if (file_exists('images/writable_true_wrong.gif') == true && file_exists('images/writable_true_right.gif') == true && file_exists('images/writable_false_wrong.gif') == true && file_exists('images/writable_false_right.gif') == true) { // image files exist: start
|
|
|
719 |
$writable_true_wrong = '<img src="images/writable_true_wrong.gif" width="13" height="15" border="0" alt="" style="" title="'.$lang_versioncheck_php['writable'].'" />';
|
|
|
720 |
$writable_true_right = '<img src="images/writable_true_right.gif" width="13" height="15" border="0" alt="" style="" title="'.$lang_versioncheck_php['writable'].'" />';
|
|
|
721 |
$writable_false_wrong = '<img src="images/writable_false_wrong.gif" width="13" height="15" border="0" alt="" style="" title="'.$lang_versioncheck_php['not_writable'].'" />';
|
|
|
722 |
$writable_false_right = '<img src="images/writable_false_right.gif" width="13" height="15" border="0" alt="" style="" title="'.$lang_versioncheck_php['not_writable'].'" />';
|
|
|
723 |
$writable_false_undetermined = '<img src="images/writable_false_wrong.gif" width="13" height="15" border="0" alt="" style="border-width:1px;border-style:solid;border-color:yellow;" title="?" />';
|
|
|
724 |
} else { // image files exist: end
|
|
|
725 |
$writable_true_wrong = '(<span class="yellow">'.$lang_versioncheck_php['writable'].'</span>)';
|
|
|
726 |
$writable_true_right = '(<span class="green">'.$lang_versioncheck_php['writable'].'</span>)';
|
|
|
727 |
$writable_false_wrong = '(<span class="red">'.$lang_versioncheck_php['not_writable'].'</span>)';
|
|
|
728 |
$writable_false_right = '(<span class="green">'.$lang_versioncheck_php['not_writable'].'</span>)';
|
|
|
729 |
$writable_false_undetermined = '(<span class="yellow">?</span>';
|
|
|
730 |
}
|
|
|
731 |
if ($repository_readwrite[$file_complete_path] == 'w') {
|
|
|
732 |
if ($file_version_info['writable'] == '-1') {
|
|
|
733 |
$stylecolor = 'red';
|
|
|
734 |
$writable_output = $writable_false_wrong;
|
|
|
735 |
$helptitle = $lang_versioncheck_php['help_not_writable1'];
|
|
|
736 |
$helpoutput = sprintf($lang_versioncheck_php['help_not_writable2'], '"<i>'.$file_complete_path.'</i>"');
|
|
|
737 |
$error_counter++;
|
|
|
738 |
} elseif ($file_version_info['writable'] == 1) {
|
|
|
739 |
$stylecolor = 'green';
|
|
|
740 |
$writable_output = $writable_true_right;
|
|
|
741 |
} elseif ($file_version_info['writable'] == 0) {
|
|
|
742 |
$stylecolor = 'yellow';
|
|
|
743 |
$writable_output = $writable_false_undetermined;
|
|
|
744 |
$helptitle = $helptitle = $lang_versioncheck_php['help_not_writable1'];
|
|
|
745 |
$helpoutput = sprintf($lang_versioncheck_php['help_writable_undetermined'], '"<i>'.$file_complete_path.'</i>"');
|
|
|
746 |
$error_counter++;
|
|
|
747 |
}
|
|
|
748 |
} elseif ($repository_readwrite[$file_complete_path] == 'r') {
|
|
|
749 |
if ($file_version_info['writable'] == '-1') {
|
|
|
750 |
$stylecolor = 'green';
|
|
|
751 |
$writable_output = $writable_false_right;
|
|
|
752 |
} elseif ($file_version_info['writable'] == 1) {
|
|
|
753 |
$stylecolor = 'yellow';
|
|
|
754 |
$writable_output = $writable_true_wrong;
|
|
|
755 |
$helptitle = $lang_versioncheck_php['help_writable1'];
|
|
|
756 |
$helpoutput = sprintf($lang_versioncheck_php['help_writable2'], '"<i>'.$file_complete_path.'</i>"');
|
|
|
757 |
$error_counter++;
|
|
|
758 |
} elseif ($file_version_info['writable'] == 0) {
|
|
|
759 |
$stylecolor = 'yellow';
|
|
|
760 |
$writable_output = $writable_false_undetermined;
|
|
|
761 |
$helptitle = $lang_versioncheck_php['help_not_writable1'];
|
|
|
762 |
$helpoutput = sprintf($lang_versioncheck_php['help_writable_undetermined'], '"<i>'.$file_complete_path.'</i>"');
|
|
|
763 |
$error_counter++;
|
|
|
764 |
}
|
|
|
765 |
}
|
|
|
766 |
print ' ';
|
|
|
767 |
print $writable_output;
|
|
|
768 |
if ($helptitle != '') {
|
|
|
769 |
print ' ';
|
|
|
770 |
print cpg_display_help('f=index.html&base=64&h='.urlencode(base64_encode(serialize($helptitle))).'&t='.urlencode(base64_encode(serialize($helpoutput)).'&css=1'),400,150);
|
|
|
771 |
$helptitle = '';
|
|
|
772 |
$helpoutput = '';
|
|
|
773 |
}
|
|
|
774 |
} // we have a folder: end
|
|
|
775 |
// writable ? end
|
|
|
776 |
|
|
|
777 |
|
|
|
778 |
print '</td>';
|
|
|
779 |
// cpg version start
|
|
|
780 |
$cvs_version_check = 'enable';
|
|
|
781 |
if (!$repository_version[$file_complete_path]) {
|
|
|
782 |
$repository_version[$file_complete_path] = '?';
|
|
|
783 |
}
|
|
|
784 |
if ($file_version_info['exists'] != 1)
|
|
|
785 |
{
|
|
|
786 |
print '<td class="tableb" colspan="2" align="center">-</td><td class="tableb">';
|
|
|
787 |
$helptitle = '';
|
|
|
788 |
} elseif (!$file_version_info['cpg_version'] && $repository_version[$file_complete_path] == '?') {
|
|
|
789 |
print '<td class="tableb" colspan="2" align="center">';
|
|
|
790 |
print 'n/a';
|
|
|
791 |
} elseif ((!$file_version_info['cpg_version'] || $file_version_info['cpg_version'] == 'n/a') && $repository_version[$file_complete_path] != '?') {
|
|
|
792 |
$cvs_version_check = 'disable';
|
|
|
793 |
print '<td class="tableb" align="right" title="'.$lang_versioncheck_php['your_file'].'">';
|
|
|
794 |
print '?';
|
|
|
795 |
print cpg_vc_help($lang_versioncheck_php['help_no_local_version1'],$lang_versioncheck_php['help_no_local_version2']);
|
|
|
796 |
print '</td><td class="tableb" title="'.$lang_versioncheck_php['reference_file'].'">';
|
|
|
797 |
print $repository_version[$file_complete_path];
|
|
|
798 |
$counter_cpg_version_older++;
|
|
|
799 |
$error_counter++;
|
|
|
800 |
} elseif ((!$file_version_info['cpg_version'] || $file_version_info['cpg_version'] == 'n/a') && $repository_version[$file_complete_path] == '?') {
|
|
|
801 |
$cvs_version_check = 'disable';
|
|
|
802 |
print '<td class="tableb" colspan="2" align="center">';
|
|
|
803 |
print '-';
|
|
|
804 |
} elseif ($file_version_info['cpg_version'] == $repository_version[$file_complete_path]) {
|
|
|
805 |
print '<td class="tablegreen" align="right" class="green" title="'.$lang_versioncheck_php['your_file'].'">';
|
|
|
806 |
print $file_version_info['cpg_version'];
|
|
|
807 |
print '</td><td class="tablegreen" title="'.$lang_versioncheck_php['reference_file'].'">';
|
|
|
808 |
print $file_version_info['cpg_version'];
|
|
|
809 |
} elseif ($file_version_info['cpg_version'] < $repository_version[$file_complete_path]) {
|
|
|
810 |
$cvs_version_check = 'disable';
|
|
|
811 |
print '<td class="tablered" align="right" title="'.$lang_versioncheck_php['your_file'].'">';
|
|
|
812 |
print $file_version_info['cpg_version'];
|
|
|
813 |
print cpg_vc_help($lang_versioncheck_php['help_local_version_outdated1'],$lang_versioncheck_php['help_local_version_outdated2']);
|
|
|
814 |
print '</td><td class="tableb" title="'.$lang_versioncheck_php['reference_file'].'">';
|
|
|
815 |
print $repository_version[$file_complete_path];
|
|
|
816 |
$counter_cpg_version_older++;
|
|
|
817 |
$error_counter++;
|
|
|
818 |
} elseif ($file_version_info['cpg_version'] > $repository_version[$file_complete_path]) {
|
|
|
819 |
$cvs_version_check = 'disable';
|
|
|
820 |
print '<td class="tableb" align="right" title="'.$lang_versioncheck_php['your_file'].'">';
|
|
|
821 |
print $file_version_info['cpg_version'];
|
|
|
822 |
print '</td><td class="tableyellow" title="'.$lang_versioncheck_php['reference_file'].'">';
|
|
|
823 |
print $repository_version[$file_complete_path];
|
|
|
824 |
print cpg_vc_help($lang_versioncheck_php['help_local_version_dev1'],$lang_versioncheck_php['help_local_version_dev2']);
|
|
|
825 |
$counter_cpg_version_younger++;
|
|
|
826 |
$error_counter++;
|
|
|
827 |
} else {
|
|
|
828 |
$cvs_version_check = 'disable';
|
|
|
829 |
print '<td class="tablered" align="right" title="'.$lang_versioncheck_php['your_file'].'">';
|
|
|
830 |
print $file_version_info['cpg_version'];
|
|
|
831 |
print '</td><td class="tablered" title="'.$lang_versioncheck_php['reference_file'].'">';
|
|
|
832 |
print $repository_version[$file_complete_path];
|
|
|
833 |
$counter_cpg_version_older++;
|
|
|
834 |
$error_counter++;
|
|
|
835 |
}
|
|
|
836 |
// cpg version end
|
|
|
837 |
print '</td>';
|
|
|
838 |
if ($file_versions == 1) { //display file versions: start
|
|
|
839 |
//print '<td class="tableb">';
|
|
|
840 |
// cvs version start
|
|
|
841 |
$helptitle = '';
|
|
|
842 |
if($file_version_info['cvs_version'] == '//') {$file_version_info['cvs_version'] = '';}
|
|
|
843 |
if ($cvs_version_check != 'disable') {
|
|
|
844 |
if (!$repository_cvs[$file_complete_path]) {
|
|
|
845 |
$repository_cvs[$file_complete_path] = '?';
|
|
|
846 |
}
|
|
|
847 |
if ($file_version_info['exists'] != 1)
|
|
|
848 |
{
|
|
|
849 |
print '<td class="tableb" colspan="2" align="center">-';
|
|
|
850 |
} elseif (!$file_version_info['cvs_version'] && $repository_cvs[$file_complete_path] == '?') {
|
|
|
851 |
print '<td class="tableb" colspan="2" align="center">n/a';
|
|
|
852 |
} elseif ($file_version_info['cvs_version'] == 'n/a' && $file_version_info['cvs_version'] == 'n/a') {
|
|
|
853 |
print '<td class="tableb" colspan="2" align="center" title="'.$lang_versioncheck_php['your_file'].'">n/a';
|
|
|
854 |
} elseif (!$file_version_info['cvs_version'] || $file_version_info['cvs_version'] == 'n/a') {
|
|
|
855 |
print '<td class="tablered" align="right" title="'.$lang_versioncheck_php['your_file'].'">';
|
|
|
856 |
print $file_version_info['cvs_version'];
|
|
|
857 |
print cpg_vc_help($lang_versioncheck_php['help_local_version_na1'],$lang_versioncheck_php['help_local_version_na2']);
|
|
|
858 |
print '</td>';
|
|
|
859 |
print '<td class="tableb" title="'.$lang_versioncheck_php['reference_file'].'">';
|
|
|
860 |
print $repository_cvs[$file_complete_path];
|
|
|
861 |
$counter_cvs_version_older++;
|
|
|
862 |
$error_counter++;
|
|
|
863 |
} elseif (cpg_version_compare($file_version_info['cvs_version']) == cpg_version_compare($repository_cvs[$file_complete_path])) {
|
|
|
864 |
print '<td class="tablegreen" align="right" title="'.$lang_versioncheck_php['your_file'].'">';
|
|
|
865 |
print $file_version_info['cvs_version'];
|
|
|
866 |
print '</td>';
|
|
|
867 |
print '<td class="tablegreen" align="left" title="'.$lang_versioncheck_php['reference_file'].'">';
|
|
|
868 |
print $repository_cvs[$file_complete_path];
|
|
|
869 |
} elseif (cpg_version_compare($file_version_info['cvs_version']) < cpg_version_compare($repository_cvs[$file_complete_path])) {
|
|
|
870 |
print '<td class="tablered" align="right" title="'.$lang_versioncheck_php['your_file'].'">';
|
|
|
871 |
print $file_version_info['cvs_version'];
|
|
|
872 |
print cpg_vc_help($lang_versioncheck_php['help_local_version_outdated1'],$lang_versioncheck_php['help_local_version_outdated2']);
|
|
|
873 |
print '</td>';
|
|
|
874 |
print '<td class="tableb" title="'.$lang_versioncheck_php['reference_file'].'">';
|
|
|
875 |
print $repository_cvs[$file_complete_path];
|
|
|
876 |
$counter_cvs_version_older++;
|
|
|
877 |
$error_counter++;
|
|
|
878 |
} elseif (cpg_version_compare($file_version_info['cvs_version']) > cpg_version_compare($repository_cvs[$file_complete_path])) {
|
|
|
879 |
print '<td class="tableb" align="right" title="'.$lang_versioncheck_php['your_file'].'">';
|
|
|
880 |
print $file_version_info['cvs_version'];
|
|
|
881 |
print '</td>';
|
|
|
882 |
print '<td class="tableyellow" title="'.$lang_versioncheck_php['reference_file'].'">';
|
|
|
883 |
print $repository_cvs[$file_complete_path];
|
|
|
884 |
print cpg_vc_help($lang_versioncheck_php['help_local_version_dev1'],$lang_versioncheck_php['help_local_version_dev2']);
|
|
|
885 |
$counter_cvs_version_younger++;
|
|
|
886 |
$error_counter++;
|
|
|
887 |
} else {
|
|
|
888 |
print '<td class="tablered" align="right" title="'.$lang_versioncheck_php['your_file'].'">';
|
|
|
889 |
print $file_version_info['cvs_version'];
|
|
|
890 |
print cpg_vc_help($lang_versioncheck_php['help_local_version_outdated1'],$lang_versioncheck_php['help_local_version_outdated2']);
|
|
|
891 |
print '</td>';
|
|
|
892 |
print '<td class="tablered" title="'.$lang_versioncheck_php['reference_file'].'">';
|
|
|
893 |
print $repository_cvs[$file_complete_path];
|
|
|
894 |
$counter_cvs_version_older++;
|
|
|
895 |
$error_counter++;
|
|
|
896 |
}
|
|
|
897 |
} else {
|
|
|
898 |
print '<td class="tableb" colspan="2" align="center">-</td>';
|
|
|
899 |
}
|
|
|
900 |
// cvs version end
|
|
|
901 |
print '</td>';
|
|
|
902 |
} //display file versions: end
|
|
|
903 |
if ($webcvs != '0') {
|
|
|
904 |
print '<td class="tableb">';
|
|
|
905 |
// web cvs start
|
|
|
906 |
$webcvslink = 'http://cvs.sourceforge.net/viewcvs.py/coppermine/';
|
|
|
907 |
if ($webcvs == "devel") {$webcvslink .= 'devel/';} else {$webcvslink .= 'stable/';}
|
|
|
908 |
$webcvslink .= $file_complete_path;
|
|
|
909 |
print sprintf($lang_versioncheck_php['go_to_webcvs'],'<a href="'.$webcvslink.'">'.$lang_versioncheck_php['webcvs'].'</a>');
|
|
|
910 |
// web cvs end
|
|
|
911 |
print "</td>";
|
|
|
912 |
}
|
|
|
913 |
print "</tr>\n";
|
|
|
914 |
$string = ob_get_contents();
|
|
|
915 |
ob_end_clean();
|
|
|
916 |
// don't return anything if the options are set to filter stuff and the conditions match
|
|
|
917 |
if ($errors_only == '1' && $error_counter == 0) {return;}
|
|
|
918 |
print $string;
|
|
|
919 |
} //end of function
|
|
|
920 |
|
|
|
921 |
function cpg_replace_albums_name($path) {
|
|
|
922 |
global $CONFIG;
|
|
|
923 |
//split the $path var
|
|
|
924 |
$second_part = ltrim(strstr($path, '/'),'/');
|
|
|
925 |
$first_part = str_replace($second_part, '', $path);
|
|
|
926 |
$third_part = ltrim(strstr($second_part, '/'),'/');
|
|
|
927 |
$second_part = str_replace($third_part, '', $second_part);
|
|
|
928 |
if ($first_part == 'albums/') {$first_part = $CONFIG['fullpath'];}
|
|
|
929 |
if ($second_part == 'userpics/') {$second_part = $CONFIG['userpics'];}
|
|
|
930 |
if ($second_part == 'userpics' && $third_part == '') {$second_part = rtrim($CONFIG['userpics'], '/');}
|
|
|
931 |
$return = $first_part.$second_part.$third_part;
|
|
|
932 |
if ($return == 'albums'){$return = rtrim($CONFIG['fullpath'], '/');}
|
|
|
933 |
return $return;
|
|
|
934 |
}
|
|
|
935 |
|
|
|
936 |
function cpg_version_compare($version)
|
|
|
937 |
{
|
|
|
938 |
$return = '';
|
|
|
939 |
$version_info = explode ( '.', $version);
|
|
|
940 |
for ($i=0;$i<count($version_info);$i++) {
|
|
|
941 |
$power = @pow('100',count($version_info)-$i)*$version_info[$i];
|
|
|
942 |
$return = $return + $power;
|
|
|
943 |
}
|
|
|
944 |
return $return;
|
|
|
945 |
}
|
|
|
946 |
|
|
|
947 |
function cpg_vc_help($helptitle='',$helpoutput='') {
|
|
|
948 |
$return= '';
|
|
|
949 |
if ($helptitle != '') {
|
|
|
950 |
$return = ' ';
|
|
|
951 |
$return .= cpg_display_help('f=index.html&base=64&h='.urlencode(base64_encode(serialize($helptitle))).'&t='.urlencode(base64_encode(serialize($helpoutput))),400,150);
|
|
|
952 |
|
|
|
953 |
}
|
|
|
954 |
return $return;
|
|
|
955 |
}
|
|
|
956 |
|
|
|
957 |
function cpg_offline_repository() {
|
|
|
958 |
$return = '
|
|
|
959 |
1.2.1|addfav.php|1.2.1||mandatory|r@
|
|
|
960 |
1.2.1|addpic.php|1.2.1||optional|r@
|
|
|
961 |
1.2.1|admin.php|1.2.1||mandatory|r@
|
|
|
962 |
1.2.1|albmgr.php|1.2.1||mandatory|r@
|
|
|
963 |
1.2.1|anycontent.php|1.2.1||mandatory|r@
|
|
|
964 |
1.2.1|banning.php|1.2.1||mandatory|r@
|
|
|
965 |
1.2.1|catmgr.php|1.2.1||mandatory|r@
|
|
|
966 |
1.2.1|config.php|1.2.1||mandatory|r@
|
|
|
967 |
1.2.1|db_input.php|1.2.1||mandatory|r@
|
|
|
968 |
1.2.1|delete.php|1.2.1||mandatory|r@
|
|
|
969 |
1.2.1|displayecard.php|1.2.1||mandatory|r@
|
|
|
970 |
1.2.1|displayimage.php|1.2.1||mandatory|r@
|
|
|
971 |
1.2.1|ecard.php|1.2.1||mandatory|r@
|
|
|
972 |
1.2.1|editpics.php|1.2.1||mandatory|r@
|
|
|
973 |
1.2.1|getlang.php|1.2.1||mandatory|r@
|
|
|
974 |
1.2.1|groupmgr.php|1.2.1||mandatory|r@
|
|
|
975 |
1.2.1|index.php|1.2.1||mandatory|r@
|
|
|
976 |
1.2.1|install.php|1.2.1||mandatory|r@
|
|
|
977 |
1.2.1|installer.css|||mandatory|r@
|
|
|
978 |
1.2.1|login.php|1.2.1||mandatory|r@
|
|
|
979 |
1.2.1|logout.php|1.2.1||mandatory|r@
|
|
|
980 |
1.2.1|modifyalb.php|1.2.1||mandatory|r@
|
|
|
981 |
1.2.1|phpinfo.php|1.2.1||mandatory|r@
|
|
|
982 |
1.2.1|profile.php|1.2.1||mandatory|r@
|
|
|
983 |
1.2.1|ratepic.php|1.2.1||mandatory|r@
|
|
|
984 |
1.2.1|register.php|1.2.1||mandatory|r@
|
|
|
985 |
1.2.1|reviewcom.php|1.2.1||mandatory|r@
|
|
|
986 |
1.2.1|scripts.js|||mandatory|r@
|
|
|
987 |
1.2.1|search.php|1.2.1||mandatory|r@
|
|
|
988 |
1.2.1|searchnew.php|1.2.1||mandatory|r@
|
|
|
989 |
1.2.1|showthumb.php|1.2.1||mandatory|r@
|
|
|
990 |
1.2.1|thumbnails.php|1.2.1||mandatory|r@
|
|
|
991 |
1.2.1|update.php|1.2.1||mandatory|r@
|
|
|
992 |
1.2.1|upgrade-1.0-to-1.2.php|1.2.1||mandatory|r@
|
|
|
993 |
1.2.1|upload.php|1.2.1||mandatory|r@
|
|
|
994 |
1.2.1|usermgr.php|1.2.1||mandatory|r@
|
|
|
995 |
1.2.1|util.php|1.2.1||mandatory|r@
|
|
|
996 |
1.2.1|xp_publish.php|1.2.1||mandatory|r@
|
|
|
997 |
1.2.1|albums|||mandatory|w@
|
|
|
998 |
1.2.1|albums/index.html|||optional|r@
|
|
|
999 |
1.2.1|albums/userpics|||mandatory|w@
|
|
|
1000 |
1.2.1|albums/userpics/index.html|||optional|w@
|
|
|
1001 |
1.2.1|bridge|||optional|r@
|
|
|
1002 |
1.2.1|bridge/invisionboard.inc.php|1.2.1||optional|r@
|
|
|
1003 |
1.2.1|bridge/phpbb.inc.php|1.2.1||optional|r@
|
|
|
1004 |
1.2.1|bridge/vbulletin.inc.php|1.2.1||optional|r@
|
|
|
1005 |
1.2.1|bridge/yabbse.inc.php|1.2.1||optional|r@
|
|
|
1006 |
1.2.1|docs|||optional|r@
|
|
|
1007 |
1.2.1|docs/credits.html|||optional|r@
|
|
|
1008 |
1.2.1|docs/faq.htm|||optional|r@
|
|
|
1009 |
1.2.1|docs/index.htm|||optional|r@
|
|
|
1010 |
1.2.1|docs/README.html|||optional|r@
|
|
|
1011 |
1.2.1|docs/pics|||optional|r@
|
|
|
1012 |
1.2.1|images|||mandatory|r@
|
|
|
1013 |
1.2.1|images/flags|||optional|r@
|
|
|
1014 |
1.2.1|images/smiles|||mandatory|r@
|
|
|
1015 |
1.2.1|include|||mandatory|w@
|
|
|
1016 |
1.2.1|include/config.inc.php|||mandatory|r@
|
|
|
1017 |
1.2.1|include/exif_php.inc.php|||mandatory|r@
|
|
|
1018 |
1.2.1|include/functions.inc.php|||mandatory|r@
|
|
|
1019 |
1.2.1|include/index.html|||mandatory|r@
|
|
|
1020 |
1.2.1|include/init.inc.php|1.2.1||mandatory|r@
|
|
|
1021 |
1.2.1|include/mailer.inc.php|1.2.1|1.1|mandatory|r@
|
|
|
1022 |
1.2.1|include/picmgmt.inc.php|1.2.1||mandatory|r@
|
|
|
1023 |
1.2.1|include/search.inc.php|1.2.1|1.1|mandatory|r@
|
|
|
1024 |
1.2.1|include/select_lang.inc.php|1.2.1||mandatory|r@
|
|
|
1025 |
1.2.1|include/slideshow.inc.php|||mandatory|r@
|
|
|
1026 |
1.2.1|include/smilies.inc.php|1.2.1||mandatory|r@
|
|
|
1027 |
1.2.1|include/sql_parse.php|1.2.1|1.1|mandatory|r@
|
|
|
1028 |
1.2.1|lang|||mandatory|r@
|
|
|
1029 |
1.2.1|lang/arabic.php|1.2.1||optional|r@
|
|
|
1030 |
1.2.1|lang/arabic-utf-8.php|1.2.1||optional|r@
|
|
|
1031 |
1.2.1|lang/bosnian.php|1.2.1||optional|r@
|
|
|
1032 |
1.2.1|lang/bosnian-utf-8.php|1.2.1||optional|r@
|
|
|
1033 |
1.2.1|lang/brazilian_portuguese.php|1.2.1||optional|r@
|
|
|
1034 |
1.2.1|lang/brazilian_portuguese-utf-8.php|1.2.1||optional|r@
|
|
|
1035 |
1.2.1|lang/chinese_big5.php|1.2.1||optional|r@
|
|
|
1036 |
1.2.1|lang/chinese_big5-utf-8.php|1.2.1||optional|r@
|
|
|
1037 |
1.2.1|lang/chinese_gb.php|1.2.1||optional|r@
|
|
|
1038 |
1.2.1|lang/chinese_gb-utf-8.php|1.2.1||optional|r@
|
|
|
1039 |
1.2.1|lang/croatian.php|1.2.1||optional|r@
|
|
|
1040 |
1.2.1|lang/croatian-utf-8.php|1.2.1||optional|r@
|
|
|
1041 |
1.2.1|lang/czech.php|1.2.1||optional|r@
|
|
|
1042 |
1.2.1|lang/czech-utf-8.php|1.2.1||optional|r@
|
|
|
1043 |
1.2.1|lang/danish.php|1.2.1||optional|r@
|
|
|
1044 |
1.2.1|lang/danish-utf-8.php|1.2.1||optional|r@
|
|
|
1045 |
1.2.1|lang/dutch.php|1.2.1||optional|r@
|
|
|
1046 |
1.2.1|lang/dutch-utf-8.php|1.2.1||optional|r@
|
|
|
1047 |
1.2.1|lang/english.php|1.2.1||mandatory|r@
|
|
|
1048 |
1.2.1|lang/english-utf-8.php|1.2.1||optional|r@
|
|
|
1049 |
1.2.1|lang/estonian.php|1.2.1||optional|r@
|
|
|
1050 |
1.2.1|lang/estonian-utf-8.php|1.2.1||optional|r@
|
|
|
1051 |
1.2.1|lang/finnish.php|1.2.1||optional|r@
|
|
|
1052 |
1.2.1|lang/finnish-utf-8.php|1.2.1||optional|r@
|
|
|
1053 |
1.2.1|lang/french.php|1.2.1||optional|r@
|
|
|
1054 |
1.2.1|lang/french-utf-8.php|1.2.1||optional|r@
|
|
|
1055 |
1.2.1|lang/german.php|1.2.1||optional|r@
|
|
|
1056 |
1.2.1|lang/german-utf-8.php|1.2.1||optional|r@
|
|
|
1057 |
1.2.1|lang/greek.php|1.2.1||optional|r@
|
|
|
1058 |
1.2.1|lang/greek-utf-8.php|1.2.1||optional|r@
|
|
|
1059 |
1.2.1|lang/hebrew.php|1.2.1||optional|r@
|
|
|
1060 |
1.2.1|lang/hebrew-utf-8.php|1.2.1||optional|r@
|
|
|
1061 |
1.2.1|lang/hungarian.php|1.2.1||optional|r@
|
|
|
1062 |
1.2.1|lang/hungarian-utf-8.php|1.2.1||optional|r@
|
|
|
1063 |
1.2.1|lang/indonesian.php|1.2.1||optional|r@
|
|
|
1064 |
1.2.1|lang/indonesian-utf-8.php|1.2.1||optional|r@
|
|
|
1065 |
1.2.1|lang/italian.php|1.2.1||optional|r@
|
|
|
1066 |
1.2.1|lang/italian-utf-8.php|1.2.1||optional|r@
|
|
|
1067 |
1.2.1|lang/japanese.php|1.2.1||optional|r@
|
|
|
1068 |
1.2.1|lang/japanese-utf-8.php|1.2.1||optional|r@
|
|
|
1069 |
1.2.1|lang/korean.php|1.2.1||optional|r@
|
|
|
1070 |
1.2.1|lang/korean-utf-8.php|1.2.1||optional|r@
|
|
|
1071 |
1.2.1|lang/latvian.php|1.2.1||optional|r@
|
|
|
1072 |
1.2.1|lang/latvian-utf-8.php|1.2.1||optional|r@
|
|
|
1073 |
1.2.1|lang/norwegian.php|1.2.1||optional|r@
|
|
|
1074 |
1.2.1|lang/norwegian-utf-8.php|1.2.1||optional|r@
|
|
|
1075 |
1.2.1|lang/portuguese.php|1.2.1||optional|r@
|
|
|
1076 |
1.2.1|lang/portuguese-utf-8.php|1.2.1||optional|r@
|
|
|
1077 |
1.2.1|lang/romanian.php|1.2.1||optional|r@
|
|
|
1078 |
1.2.1|lang/romanian-utf-8.php|1.2.1||optional|r@
|
|
|
1079 |
1.2.1|lang/slovak.php|1.2.1||optional|r@
|
|
|
1080 |
1.2.1|lang/slovak-utf-8.php|1.2.1||optional|r@
|
|
|
1081 |
1.2.1|lang/slovenian.php|1.2.1||optional|r@
|
|
|
1082 |
1.2.1|lang/slovenian-utf-8.php|1.2.1||optional|r@
|
|
|
1083 |
1.2.1|lang/spanish.php|1.2.1||optional|r@
|
|
|
1084 |
1.2.1|lang/spanish-utf-8.php|1.2.1||optional|r@
|
|
|
1085 |
1.2.1|lang/swedish.php|1.2.1||optional|r@
|
|
|
1086 |
1.2.1|lang/swedish-utf-8.php|1.2.1||optional|r@
|
|
|
1087 |
1.2.1|lang/turkish.php|1.2.1||optional|r@
|
|
|
1088 |
1.2.1|lang/turkish-utf-8.php|1.2.1||optional|r@
|
|
|
1089 |
1.2.1|lang/vietnamese.php|1.2.1||optional|r@
|
|
|
1090 |
1.2.1|lang/vietnamese-utf-8.php|1.2.1||optional|r@
|
|
|
1091 |
1.2.1|sql/basic.sql|||mandatory|r@
|
|
|
1092 |
1.2.1|sql/restore_config.sql|||mandatory|r@
|
|
|
1093 |
1.2.1|sql/schema.sql|||mandatory|r@
|
|
|
1094 |
1.2.1|sql/update.sql|||mandatory|r@
|
|
|
1095 |
1.2.1|themes|||mandatory|r@
|
|
|
1096 |
1.2.1|themes/default|||optional|r@
|
|
|
1097 |
1.2.1|themes/default/style.css|||optional|r@
|
|
|
1098 |
1.2.1|themes/default/template.html|||optional|r@
|
|
|
1099 |
1.2.1|themes/default/theme.php|1.2.0||optional|r@
|
|
|
1100 |
1.2.1|themes/default/images|||optional|r@
|
|
|
1101 |
1.2.1|themes/eyeball|||optional|r@
|
|
|
1102 |
1.2.1|themes/eyeball/style.css|||optional|r@
|
|
|
1103 |
1.2.1|themes/eyeball/template.html|||optional|r@
|
|
|
1104 |
1.2.1|themes/eyeball/theme.php|1.2.0||optional|r@
|
|
|
1105 |
1.2.1|themes/eyeball/images|||optional|r@
|
|
|
1106 |
1.2.1|themes/fruity|||optional|r@
|
|
|
1107 |
1.2.1|themes/fruity/style.css|||optional|r@
|
|
|
1108 |
1.2.1|themes/fruity/template.html|||optional|r@
|
|
|
1109 |
1.2.1|themes/fruity/theme.php|1.2.0||optional|r@
|
|
|
1110 |
1.2.1|themes/fruity/images|||optional|r@
|
|
|
1111 |
1.2.1|themes/hardwired|||optional|r@
|
|
|
1112 |
1.2.1|themes/hardwired/style.css|||optional|r@
|
|
|
1113 |
1.2.1|themes/hardwired/template.html|||optional|r@
|
|
|
1114 |
1.2.1|themes/hardwired/theme.php|1.2.0||optional|r@
|
|
|
1115 |
1.2.1|themes/hardwired/images|||optional|r@
|
|
|
1116 |
1.2.1|themes/igames|||optional|r@
|
|
|
1117 |
1.2.1|themes/igames/style.css|||optional|r@
|
|
|
1118 |
1.2.1|themes/igames/template.html|||optional|r@
|
|
|
1119 |
1.2.1|themes/igames/theme.php|1.2.0||optional|r@
|
|
|
1120 |
1.2.1|themes/igames/images|||optional|r@
|
|
|
1121 |
1.2.1|themes/mac_ox_x|||optional|r@
|
|
|
1122 |
1.2.1|themes/mac_ox_x/style.css|||optional|r@
|
|
|
1123 |
1.2.1|themes/mac_ox_x/template.html|||optional|r@
|
|
|
1124 |
1.2.1|themes/mac_ox_x/theme.php|||optional|r@
|
|
|
1125 |
1.2.1|themes/mac_ox_x/images|||optional|r@
|
|
|
1126 |
1.2.1|themes/project_vii/style.css|||optional|r@
|
|
|
1127 |
1.2.1|themes/project_vii/template.html|||optional|r@
|
|
|
1128 |
1.2.1|themes/project_vii/theme.php|||optional|r@
|
|
|
1129 |
1.2.1|themes/project_vii/images|||optional|r@
|
|
|
1130 |
1.2.1|themes/rainy_day|||optional|r@
|
|
|
1131 |
1.2.1|themes/rainy_day/style.css|||optional|r@
|
|
|
1132 |
1.2.1|themes/rainy_day/template.html|||optional|r@
|
|
|
1133 |
1.2.1|themes/rainy_day/theme.php|||optional|r@
|
|
|
1134 |
1.2.1|themes/rainy_day/images|||optional|r@
|
|
|
1135 |
1.2.1|themes/water_drop|||optional|r@
|
|
|
1136 |
1.2.1|themes/water_drop/style.css|||optional|r@
|
|
|
1137 |
1.2.1|themes/water_drop/template.html|||optional|r@
|
|
|
1138 |
1.2.1|themes/water_drop/theme.php|||optional|r@
|
|
|
1139 |
1.2.1|themes/water_drop/images|||optional|r@
|
|
|
1140 |
1.3.0|addfav.php|1.3.0|1.6|mandatory|r@
|
|
|
1141 |
1.3.0|addpic.php|1.3.0|1.4|optional|r@
|
|
|
1142 |
1.3.0|admin.php|1.3.0|1.4|mandatory|r@
|
|
|
1143 |
1.3.0|albmgr.php|1.3.0|1.4|mandatory|r@
|
|
|
1144 |
1.3.0|anycontent.php|1.3.0|1.7|mandatory|r@
|
|
|
1145 |
1.3.0|banning.php|1.3.0|1.11|mandatory|r@
|
|
|
1146 |
1.3.0|catmgr.php|1.3.0|1.9|mandatory|r@
|
|
|
1147 |
1.3.0|config.php|1.3.0|1.15|mandatory|r@
|
|
|
1148 |
1.3.0|db_ecard.php|1.3.0|1.5|mandatory|r@
|
|
|
1149 |
1.3.0|db_input.php|1.3.0|1.23|mandatory|r@
|
|
|
1150 |
1.3.0|delete.php|1.3.0|1.5|mandatory|r@
|
|
|
1151 |
1.3.0|displayecard.php|1.3.0|1.4|mandatory|r@
|
|
|
1152 |
1.3.0|displayimage.php|1.3.0|1.46|mandatory|r@
|
|
|
1153 |
1.3.0|ecard.php|1.3.0|1.12|mandatory|r@
|
|
|
1154 |
1.3.0|editOnePic.php|1.3.0|1.13|mandatory|r@
|
|
|
1155 |
1.3.0|editpics.php||1.16|mandatory|r@
|
|
|
1156 |
1.3.0|faq.php|1.3.0|1.4|mandatory|r@
|
|
|
1157 |
1.3.0|forgot_passwd.php|1.3.0|1.6|mandatory|r@
|
|
|
1158 |
1.3.0|getlang.php|1.3.0|1.4|mandatory|r@
|
|
|
1159 |
1.3.0|groupmgr.php|1.3.0|1.7|mandatory|r@
|
|
|
1160 |
1.3.0|image_processor.php||1.11|mandatory|r@
|
|
|
1161 |
1.3.0|index.php|1.3.0|1.40|mandatory|r@
|
|
|
1162 |
1.3.0|install.php|1.3.0|1.11|mandatory|r@
|
|
|
1163 |
1.3.0|installer.css||1.3|mandatory|r@
|
|
|
1164 |
1.3.0|login.php|1.3.0|1.7|mandatory|r@
|
|
|
1165 |
1.3.0|logout.php|1.3.0|1.4|mandatory|r@
|
|
|
1166 |
1.3.0|modifyalb.php|1.3.0|1.6|mandatory|r@
|
|
|
1167 |
1.3.0|phpinfo.php|1.3.0|1.7|mandatory|r@
|
|
|
1168 |
1.3.0|picEditor.php|1.2.0|1.15|mandatory|r@
|
|
|
1169 |
1.3.0|profile.php|1.3.0|1.14|mandatory|r@
|
|
|
1170 |
1.3.0|ratepic.php|1.3.0|1.6|mandatory|r@
|
|
|
1171 |
1.3.0|register.php|1.3.0|1.5|mandatory|r@
|
|
|
1172 |
1.3.0|reviewcom.php|1.3.0|1.7|mandatory|r@
|
|
|
1173 |
1.3.0|scripts.js|||mandatory|r@
|
|
|
1174 |
1.3.0|search.php|1.3.0|1.5|mandatory|r@
|
|
|
1175 |
1.3.0|searchnew.php|1.3.0|1.17|mandatory|r@
|
|
|
1176 |
1.3.0|showthumb.php|1.3.0|1.4|mandatory|r@
|
|
|
1177 |
1.3.0|thumbnails.php|1.3.0|1.11|mandatory|r@
|
|
|
1178 |
1.3.0|update.php|1.3.0|1.6|mandatory|r@
|
|
|
1179 |
1.3.0|upgrade-1.0-to-1.2.php|1.3.0|1.5|mandatory|r@
|
|
|
1180 |
1.3.0|upload.php|1.3|1.29|mandatory|r@
|
|
|
1181 |
1.3.0|usermgr.php|1.3.0|1.7|mandatory|r@
|
|
|
1182 |
1.3.0|util.php|1.3.0|1.11|mandatory|r@
|
|
|
1183 |
1.3.0|xp_publish.php|1.3.0|1.8|mandatory|r@
|
|
|
1184 |
1.3.0|zipdownload.php|1.3.0|1.4|mandatory|r@
|
|
|
1185 |
1.3.0|albums|||mandatory|w@
|
|
|
1186 |
1.3.0|albums/index.html||1.2|optional|r@
|
|
|
1187 |
1.3.0|albums/edit|||mandatory|w@
|
|
|
1188 |
1.3.0|albums/edit/index.html|||optional|w@
|
|
|
1189 |
1.3.0|albums/userpics|||mandatory|w@
|
|
|
1190 |
1.3.0|albums/userpics/index.html||1.2|optional|w@
|
|
|
1191 |
1.3.0|bridge|||optional|r@
|
|
|
1192 |
1.3.0|bridge/invisionboard.inc.php|1.3.0|1.12|optional|r@
|
|
|
1193 |
1.3.0|bridge/phpbb.inc.php|1.3.0|1.18|optional|r@
|
|
|
1194 |
1.3.0|bridge/smf.inc.php|1.3.0|1.12|optional|r@
|
|
|
1195 |
1.3.0|bridge/vbulletin23.inc.php|1.3.0|1.6|optional|r@
|
|
|
1196 |
1.3.0|bridge/vbulletin30.inc.php|1.3.0|1.7|optional|r@
|
|
|
1197 |
1.3.0|bridge/woltlab21.inc.php|1.3.0|1.11|optional|r@
|
|
|
1198 |
1.3.0|bridge/yabbse.inc.php|1.3.0|1.22|optional|r@
|
|
|
1199 |
1.3.0|docs|||optional|r@
|
|
|
1200 |
1.3.0|docs/credits.html||1.12|optional|r@
|
|
|
1201 |
1.3.0|docs/faq.htm||1.11|optional|r@
|
|
|
1202 |
1.3.0|docs/index.htm||1.41|optional|r@
|
|
|
1203 |
1.3.0|docs/README.html||1.17|optional|r@
|
|
|
1204 |
1.3.0|docs/theme.htm||1.2|optional|r@
|
|
|
1205 |
1.3.0|docs/translation.htm||1.2|optional|r@
|
|
|
1206 |
1.3.0|docs/pics|||optional|r@
|
|
|
1207 |
1.3.0|images|||mandatory|r@
|
|
|
1208 |
1.3.0|images/flags|||optional|r@
|
|
|
1209 |
1.3.0|images/smiles|||mandatory|r@
|
|
|
1210 |
1.3.0|include|||mandatory|w@
|
|
|
1211 |
1.3.0|include/archive.php|||mandatory|r@
|
|
|
1212 |
1.3.0|include/config.inc.php|||mandatory|r@
|
|
|
1213 |
1.3.0|include/crop.inc.php|1.3.0|1.5|mandatory|r@
|
|
|
1214 |
1.3.0|include/editDesc.inc.php|1.3.0|1.4|mandatory|r@
|
|
|
1215 |
1.3.0|include/exif_php.inc.php|1.3.0|1.7|mandatory|r@
|
|
|
1216 |
1.3.0|include/exifReader.inc.php|||mandatory|r@
|
|
|
1217 |
1.3.0|include/functions.inc.php||1.67|mandatory|r@
|
|
|
1218 |
1.3.0|include/imageObjectGD.class.php|1.2.0|1.4|mandatory|r@
|
|
|
1219 |
1.3.0|include/imageObjectIM.class.php|1.2.0|1.4|mandatory|r@
|
|
|
1220 |
1.3.0|include/index.html|||mandatory|r@
|
|
|
1221 |
1.3.0|include/init.inc.php|1.3.0|1.33|mandatory|r@
|
|
|
1222 |
1.3.0|include/iptc.inc.php|1.3.0|1.5|mandatory|r@
|
|
|
1223 |
1.3.0|include/mailer.inc.php|1.3.0|1.5|mandatory|r@
|
|
|
1224 |
1.3.0|include/media.functions.inc.php||1.4|mandatory|r@
|
|
|
1225 |
1.3.0|include/picmgmt.inc.php|1.3.0|1.14|mandatory|r@
|
|
|
1226 |
1.3.0|include/search.inc.php|1.3.0|1.5|mandatory|r@
|
|
|
1227 |
1.3.0|include/select_lang.inc.php|1.3.0|1.4|mandatory|r@
|
|
|
1228 |
1.3.0|include/slideshow.inc.php||1.7|mandatory|r@
|
|
|
1229 |
1.3.0|include/smilies.inc.php|1.3.0|1.5|mandatory|r@
|
|
|
1230 |
1.3.0|include/sql_parse.php|1.3.0|1.4|mandatory|r@
|
|
|
1231 |
1.3.0|lang|||mandatory|r@
|
|
|
1232 |
1.3.0|lang/brazilian_portuguese.php|1.3.0|1.6|optional|r@
|
|
|
1233 |
1.3.0|lang/brazilian_portuguese-utf-8.php|1.3.0|1.6|optional|r@
|
|
|
1234 |
1.3.0|lang/bulgarian.php|1.3.0|1.5|optional|r@
|
|
|
1235 |
1.3.0|lang/bulgarian-utf-8.php|1.3.0|1.4|optional|r@
|
|
|
1236 |
1.3.0|lang/chinese_big5.php|1.3.0|1.5|optional|r@
|
|
|
1237 |
1.3.0|lang/chinese_big5-utf-8.php|1.3.0|1.6|optional|r@
|
|
|
1238 |
1.3.0|lang/chinese_gb.php|1.3.0|1.5|optional|r@
|
|
|
1239 |
1.3.0|lang/chinese_gb-utf-8.php|1.3.0|1.5|optional|r@
|
|
|
1240 |
1.3.0|lang/croatian.php|1.3.0|1.5|optional|r@
|
|
|
1241 |
1.3.0|lang/croatian-utf-8.php|1.3.0|1.5|optional|r@
|
|
|
1242 |
1.3.0|lang/danish.php|1.3.0|1.10|optional|r@
|
|
|
1243 |
1.3.0|lang/danish-utf-8.php|1.3.0|1.6|optional|r@
|
|
|
1244 |
1.3.0|lang/dutch.php|1.3.0|1.11|optional|r@
|
|
|
1245 |
1.3.0|lang/dutch-utf-8.php|1.3.0|1.11|optional|r@
|
|
|
1246 |
1.3.0|lang/english.php|1.3.0|1.91|mandatory|r@
|
|
|
1247 |
1.3.0|lang/english-utf-8.php|1.3.0|1.13|optional|r@
|
|
|
1248 |
1.3.0|lang/french.php|1.3.0|1.14|optional|r@
|
|
|
1249 |
1.3.0|lang/french-utf-8.php|1.2.1|1.12|optional|r@
|
|
|
1250 |
1.3.0|lang/german.php|1.3.0|1.14|optional|r@
|
|
|
1251 |
1.3.0|lang/german-utf-8.php|1.3.0|1.15|optional|r@
|
|
|
1252 |
1.3.0|lang/greek.php|1.3.0|1.7|optional|r@
|
|
|
1253 |
1.3.0|lang/greek-utf-8.php|1.3.0|1.7|optional|r@
|
|
|
1254 |
1.3.0|lang/hebrew.php|1.3.0|1.6|optional|r@
|
|
|
1255 |
1.3.0|lang/hebrew-utf-8.php|1.3.0|1.7|optional|r@
|
|
|
1256 |
1.3.0|lang/hungarian.php|1.3.0|1.8|optional|r@
|
|
|
1257 |
1.3.0|lang/hungarian-utf-8.php|1.3.0|1.9|optional|r@
|
|
|
1258 |
1.3.0|lang/indonesian.php|1.3.0|1.5|optional|r@
|
|
|
1259 |
1.3.0|lang/indonesian-utf-8.php|1.3.0|1.6|optional|r@
|
|
|
1260 |
1.3.0|lang/italian.php|1.3.0|1.7|optional|r@
|
|
|
1261 |
1.3.0|lang/italian-utf-8.php|1.3.0|1.7|optional|r@
|
|
|
1262 |
1.3.0|lang/italian2.php|1.3.0|1.1|optional|r@
|
|
|
1263 |
1.3.0|lang/italian2-utf-8.php|1.3.0|1.1|optional|r@
|
|
|
1264 |
1.3.0|lang/japanese.php|1.3.0|1.5|optional|r@
|
|
|
1265 |
1.3.0|lang/japanese-utf-8.php|1.3.0|1.6|optional|r@
|
|
|
1266 |
1.3.0|lang/norwegian.php|1.3.0|1.6|optional|r@
|
|
|
1267 |
1.3.0|lang/norwegian-utf-8.php|1.3.0|1.6|optional|r@
|
|
|
1268 |
1.3.0|lang/polish.php|1.3.0|1.4|optional|r@
|
|
|
1269 |
1.3.0|lang/polish-utf-8.php|1.3.0|1.3|optional|r@
|
|
|
1270 |
1.3.0|lang/slovenian.php|1.3.0|1.10|optional|r@
|
|
|
1271 |
1.3.0|lang/slovenian-utf-8.php|1.3.0|1.8|optional|r@
|
|
|
1272 |
1.3.0|lang/spanish.php|1.3.0|1.8|optional|r@
|
|
|
1273 |
1.3.0|lang/spanish-utf-8.php|1.3.0|1.8|optional|r@
|
|
|
1274 |
1.3.0|sql/basic.sql||1.31|mandatory|r@
|
|
|
1275 |
1.3.0|sql/coppermine.sql||1.18|mandatory|r@
|
|
|
1276 |
1.3.0|sql/restore_config.sql||1.4|mandatory|r@
|
|
|
1277 |
1.3.0|sql/schema.sql||1.12|mandatory|r@
|
|
|
1278 |
1.3.0|sql/update.sql||1.48|mandatory|r@
|
|
|
1279 |
1.3.0|themes|||mandatory|r@
|
|
|
1280 |
1.3.0|themes/classic|||optional|r@
|
|
|
1281 |
1.3.0|themes/classic/style.css||1.1|optional|r@
|
|
|
1282 |
1.3.0|themes/classic/template.html||1.3|optional|r@
|
|
|
1283 |
1.3.0|themes/classic/theme.php|1.3.0|1.4|optional|r@
|
|
|
1284 |
1.3.0|themes/classic/images|||optional|r@
|
|
|
1285 |
1.3.0|themes/eyeball|||optional|r@
|
|
|
1286 |
1.3.0|themes/eyeball/style.css||1.11|optional|r@
|
|
|
1287 |
1.3.0|themes/eyeball/template.html||1.8|optional|r@
|
|
|
1288 |
1.3.0|themes/eyeball/theme.php|1.3.0|1.34|optional|r@
|
|
|
1289 |
1.3.0|themes/eyeball/images|||optional|r@
|
|
|
1290 |
1.3.0|themes/fruity|||optional|r@
|
|
|
1291 |
1.3.0|themes/fruity/style.css||1.11|optional|r@
|
|
|
1292 |
1.3.0|themes/fruity/template.html||1.8|optional|r@
|
|
|
1293 |
1.3.0|themes/fruity/theme.php|1.3.0|1.32|optional|r@
|
|
|
1294 |
1.3.0|themes/fruity/images|||optional|r@
|
|
|
1295 |
1.3.0|themes/hardwired|||optional|r@
|
|
|
1296 |
1.3.0|themes/hardwired/style.css||1.13|optional|r@
|
|
|
1297 |
1.3.0|themes/hardwired/template.html||1.9|optional|r@
|
|
|
1298 |
1.3.0|themes/hardwired/theme.php|1.3.0|1.35|optional|r@
|
|
|
1299 |
1.3.0|themes/hardwired/images|||optional|r@
|
|
|
1300 |
1.3.0|themes/igames|||optional|r@
|
|
|
1301 |
1.3.0|themes/igames/style.css||1.12|optional|r@
|
|
|
1302 |
1.3.0|themes/igames/template.html||1.9|optional|r@
|
|
|
1303 |
1.3.0|themes/igames/theme.php|1.3.0|1.36|optional|r@
|
|
|
1304 |
1.3.0|themes/igames/images|||optional|r@
|
|
|
1305 |
1.3.0|themes/mac_ox_x|||optional|r@
|
|
|
1306 |
1.3.0|themes/mac_ox_x/style.css||1.11|optional|r@
|
|
|
1307 |
1.3.0|themes/mac_ox_x/template.html||1.8|optional|r@
|
|
|
1308 |
1.3.0|themes/mac_ox_x/theme.php|1.3.0|1.33|optional|r@
|
|
|
1309 |
1.3.0|themes/mac_ox_x/images|||optional|r@
|
|
|
1310 |
1.3.0|themes/classic|||optional|r@
|
|
|
1311 |
1.3.0|themes/project_vii/style.css||1.13|optional|r@
|
|
|
1312 |
1.3.0|themes/project_vii/template.html||1.7|optional|r@
|
|
|
1313 |
1.3.0|themes/project_vii/theme.php|1.3.0|1.34|optional|r@
|
|
|
1314 |
1.3.0|themes/project_vii/images|||optional|r@
|
|
|
1315 |
1.3.0|themes/rainy_day|||optional|r@
|
|
|
1316 |
1.3.0|themes/rainy_day/style.css||1.13|optional|r@
|
|
|
1317 |
1.3.0|themes/rainy_day/template.html||1.6|optional|r@
|
|
|
1318 |
1.3.0|themes/rainy_day/theme.php|1.3.0|1.37|optional|r@
|
|
|
1319 |
1.3.0|themes/rainy_day/images|||optional|r@
|
|
|
1320 |
1.3.0|themes/styleguide|||optional|r@
|
|
|
1321 |
1.3.0|themes/styleguide/domLib.js|||optional|r@
|
|
|
1322 |
1.3.0|themes/styleguide/domTT.js|||optional|r@
|
|
|
1323 |
1.3.0|themes/styleguide/readme.htm||1.2|optional|r@
|
|
|
1324 |
1.3.0|themes/styleguide/template.html||1.4|optional|r@
|
|
|
1325 |
1.3.0|themes/styleguide/theme.php|1.3.0|1.15|optional|r@
|
|
|
1326 |
1.3.0|themes/styleguide/images|||optional|r@
|
|
|
1327 |
1.3.0|themes/water_drop|||optional|r@
|
|
|
1328 |
1.3.0|themes/water_drop/style.css||1.12|optional|r@
|
|
|
1329 |
1.3.0|themes/water_drop/template.html||1.6|optional|r@
|
|
|
1330 |
1.3.0|themes/water_drop/theme.php|1.3.0|1.35|optional|r@
|
|
|
1331 |
1.3.0|themes/water_drop/images|||optional|r@
|
|
|
1332 |
1.3.1|addfav.php|1.3.1|1.4|mandatory|r@
|
|
|
1333 |
1.3.1|addpic.php|1.3.1|1.6|optional|r@
|
|
|
1334 |
1.3.1|admin.php|1.3.1|1.4|mandatory|r@
|
|
|
1335 |
1.3.1|albmgr.php|1.3.1|1.4|mandatory|r@
|
|
|
1336 |
1.3.1|anycontent.php|1.3.1|1.4|mandatory|r@
|
|
|
1337 |
1.3.1|banning.php|1.3.1|1.5|mandatory|r@
|
|
|
1338 |
1.3.1|calendar.php|1.3.1|1.2|mandatory|r@
|
|
|
1339 |
1.3.1|catmgr.php|1.3.1|1.5|mandatory|r@
|
|
|
1340 |
1.3.1|config.php|1.3.1|1.8|mandatory|r@
|
|
|
1341 |
1.3.1|db_ecard.php|1.3.1|1.2|mandatory|r@
|
|
|
1342 |
1.3.1|db_input.php|1.3.1|1.4|mandatory|r@
|
|
|
1343 |
1.3.1|delete.php|1.3.1|1.4|mandatory|r@
|
|
|
1344 |
1.3.1|displayecard.php|1.3.1|1.4|mandatory|r@
|
|
|
1345 |
1.3.1|displayimage.php|1.3.1|1.8|mandatory|r@
|
|
|
1346 |
1.3.1|ecard.php|1.3.1|1.7|mandatory|r@
|
|
|
1347 |
1.3.1|editOnePic.php|1.3.1|1.3|mandatory|r@
|
|
|
1348 |
1.3.1|editpics.php||1.5|mandatory|r@
|
|
|
1349 |
1.3.1|faq.php|1.3.1|1.2|mandatory|r@
|
|
|
1350 |
1.3.1|forgot_passwd.php|1.3.1|1.3|mandatory|r@
|
|
|
1351 |
1.3.1|getlang.php|1.3.1|1.4|mandatory|r@
|
|
|
1352 |
1.3.1|groupmgr.php|1.3.1|1.4|mandatory|r@
|
|
|
1353 |
1.3.1|image_processor.php|1.3.1|1.2|mandatory|r@
|
|
|
1354 |
1.3.1|index.php|1.3.1|1.11|mandatory|r@
|
|
|
1355 |
1.3.1|install.php|1.3.1|1.6|mandatory|r@
|
|
|
1356 |
1.3.1|installer.css||1.3|mandatory|r@
|
|
|
1357 |
1.3.1|login.php|1.3.1|1.4|mandatory|r@
|
|
|
1358 |
1.3.1|logout.php|1.3.1|1.4|mandatory|r@
|
|
|
1359 |
1.3.1|modifyalb.php|1.3.1|1.4|mandatory|r@
|
|
|
1360 |
1.3.1|phpinfo.php|1.3.1|1.4|mandatory|r@
|
|
|
1361 |
1.3.1|picEditor.php|1.3.1|1.2|mandatory|r@
|
|
|
1362 |
1.3.1|profile.php|1.3.1|1.5|mandatory|r@
|
|
|
1363 |
1.3.1|ratepic.php|1.3.1|1.4|mandatory|r@
|
|
|
1364 |
1.3.1|register.php|1.3.1|1.4|mandatory|r@
|
|
|
1365 |
1.3.1|reviewcom.php|1.3.1|1.4|mandatory|r@
|
|
|
1366 |
1.3.1|scripts.js|||mandatory|r@
|
|
|
1367 |
1.3.1|search.php|1.3.1|1.4|mandatory|r@
|
|
|
1368 |
1.3.1|searchnew.php|1.3.1|1.5|mandatory|r@
|
|
|
1369 |
1.3.1|showthumb.php|1.3.1|1.4|mandatory|r@
|
|
|
1370 |
1.3.1|thumbnails.php|1.3.1|1.4|mandatory|r@
|
|
|
1371 |
1.3.1|update.php|1.3.1|1.5|mandatory|r@
|
|
|
1372 |
1.3.1|upgrade-1.0-to-1.2.php|1.3.1|1.5|mandatory|r@
|
|
|
1373 |
1.3.1|upload.php|1.3.1|1.6|mandatory|r@
|
|
|
1374 |
1.3.1|usermgr.php|1.3.1|1.5|mandatory|r@
|
|
|
1375 |
1.3.1|util.php|1.3.1|1.5|mandatory|r@
|
|
|
1376 |
1.3.1|xp_publish.php|1.3.1|1.4|mandatory|r@
|
|
|
1377 |
1.3.1|zipdownload.php|1.3.1|1.2|mandatory|r@
|
|
|
1378 |
1.3.1|albums|||mandatory|w@
|
|
|
1379 |
1.3.1|albums/index.html||1.2|optional|r@
|
|
|
1380 |
1.3.1|albums/edit|||mandatory|w@
|
|
|
1381 |
1.3.1|albums/edit/index.html|||optional|w@
|
|
|
1382 |
1.3.1|albums/userpics|||mandatory|w@
|
|
|
1383 |
1.3.1|albums/userpics/index.html|||optional|w@
|
|
|
1384 |
1.3.1|bridge|||optional|r@
|
|
|
1385 |
1.3.1|bridge/invisionboard.inc.php|1.3.1|1.7|optional|r@
|
|
|
1386 |
1.3.1|bridge/phpbb.inc.php|1.3.1|1.8|optional|r@
|
|
|
1387 |
1.3.1|bridge/smf.inc.php|1.3.1|1.6|optional|r@
|
|
|
1388 |
1.3.1|bridge/vbulletin.inc.php|1.3.1|1.5|optional|r@
|
|
|
1389 |
1.3.1|bridge/vbulletin23.inc.php|1.3.1|1.5|optional|r@
|
|
|
1390 |
1.3.1|bridge/vbulletin30.inc.php|1.3.1|1.5|optional|r@
|
|
|
1391 |
1.3.1|bridge/vbulletin3gamma.inc.php|1.3.1|1.4|optional|r@
|
|
|
1392 |
1.3.1|bridge/woltlab21.inc.php|1.3.1|1.5|optional|r@
|
|
|
1393 |
1.3.1|bridge/yabbse.inc.php|1.3.1|1.7|optional|r@
|
|
|
1394 |
1.3.1|docs|||optional|r@
|
|
|
1395 |
1.3.1|docs/credits.html||1.6|optional|r@
|
|
|
1396 |
1.3.1|docs/faq.htm||1.5|optional|r@
|
|
|
1397 |
1.3.1|docs/index.htm||1.7|optional|r@
|
|
|
1398 |
1.3.1|docs/README.html||1.6|optional|r@
|
|
|
1399 |
1.3.1|docs/theme.htm||1.3|optional|r@
|
|
|
1400 |
1.3.1|docs/translation.htm||1.3|optional|r@
|
|
|
1401 |
1.3.1|docs/pics|||optional|r@
|
|
|
1402 |
1.3.1|images|||mandatory|r@
|
|
|
1403 |
1.3.1|images/flags|||optional|r@
|
|
|
1404 |
1.3.1|images/smiles|||mandatory|r@
|
|
|
1405 |
1.3.1|include|||mandatory|w@
|
|
|
1406 |
1.3.1|include/archive.php|1.3.1|1.2|mandatory|r@
|
|
|
1407 |
1.3.1|include/config.inc.php|||mandatory|r@
|
|
|
1408 |
1.3.1|include/crop.inc.php|1.3.1|1.3|mandatory|r@
|
|
|
1409 |
1.3.1|include/editDesc.inc.php|1.3.1|1.2|mandatory|r@
|
|
|
1410 |
1.3.1|include/exif_php.inc.php|1.3.1|1.5|mandatory|r@
|
|
|
1411 |
1.3.1|include/exifReader.inc.php|1.3.1|1.2|mandatory|r@
|
|
|
1412 |
1.3.1|include/functions.inc.php|1.3.1|1.11|mandatory|r@
|
|
|
1413 |
1.3.1|include/imageObjectGD.class.php|1.3.1|1.2|mandatory|r@
|
|
|
1414 |
1.3.1|include/imageObjectIM.class.php|1.3.1|1.2|mandatory|r@
|
|
|
1415 |
1.3.1|include/index.html|||mandatory|r@
|
|
|
1416 |
1.3.1|include/init.inc.php|1.3.1|1.7|mandatory|r@
|
|
|
1417 |
1.3.1|include/iptc.inc.php|1.3.1|1.2|mandatory|r@
|
|
|
1418 |
1.3.1|include/mailer.inc.php|1.3.1|1.4|mandatory|r@
|
|
|
1419 |
1.3.1|include/media.functions.inc.php|1.3.1|1.2|mandatory|r@
|
|
|
1420 |
1.3.1|include/picmgmt.inc.php|1.3.1|1.6|mandatory|r@
|
|
|
1421 |
1.3.1|include/search.inc.php|1.3.1|1.4|mandatory|r@
|
|
|
1422 |
1.3.1|include/select_lang.inc.php|1.3.1|1.5|mandatory|r@
|
|
|
1423 |
1.3.1|include/slideshow.inc.php|1.3.1|1.5|mandatory|r@
|
|
|
1424 |
1.3.1|include/smilies.inc.php|1.3.1|1.4|mandatory|r@
|
|
|
1425 |
1.3.1|include/sql_parse.php|1.3.1|1.4|mandatory|r@
|
|
|
1426 |
1.3.1|lang|||mandatory|r@
|
|
|
1427 |
1.3.1|lang/arabic.php|1.3.0|1.7|optional|r@
|
|
|
1428 |
1.3.1|lang/arabic-utf-8.php|1.3.0|1.7|optional|r@
|
|
|
1429 |
1.3.1|lang/brazilian_portuguese.php|1.3.0|1.6|optional|r@
|
|
|
1430 |
1.3.1|lang/brazilian_portuguese-utf-8.php|1.3.0|1.6|optional|r@
|
|
|
1431 |
1.3.1|lang/bulgarian.php|1.3.0|1.3|optional|r@
|
|
|
1432 |
1.3.1|lang/bulgarian-utf-8.php|1.3.0|1.3|optional|r@
|
|
|
1433 |
1.3.1|lang/chinese_big5.php|1.3.0|1.6|optional|r@
|
|
|
1434 |
1.3.1|lang/chinese_big5-utf-8.php|1.3.0|1.6|optional|r@
|
|
|
1435 |
1.3.1|lang/chinese_gb.php|1.3.0|1.6|optional|r@
|
|
|
1436 |
1.3.1|lang/chinese_gb-utf-8.php|1.3.0|1.6|optional|r@
|
|
|
1437 |
1.3.1|lang/croatian.php|1.3.0|1.6|optional|r@
|
|
|
1438 |
1.3.1|lang/croatian-utf-8.php|1.3.0|1.6|optional|r@
|
|
|
1439 |
1.3.1|lang/czech.php|1.3.0||optional|r@
|
|
|
1440 |
1.3.1|lang/czech-utf-8.php|1.3.0||optional|r@
|
|
|
1441 |
1.3.1|lang/danish.php|1.3.0|1.7|optional|r@
|
|
|
1442 |
1.3.1|lang/danish-utf-8.php|1.3.0|1.7|optional|r@
|
|
|
1443 |
1.3.1|lang/dutch.php|1.3.0|1.6|optional|r@
|
|
|
1444 |
1.3.1|lang/dutch-utf-8.php|1.3.0|1.6|optional|r@
|
|
|
1445 |
1.3.1|lang/english.php|1.3.0|1.10|mandatory|r@
|
|
|
1446 |
1.3.1|lang/english-utf-8.php|1.3.0|1.7|optional|r@
|
|
|
1447 |
1.3.1|lang/finnish.php|1.3.0|1.5|optional|r@
|
|
|
1448 |
1.3.1|lang/finnish-utf-8.php|1.3.0|1.5|optional|r@
|
|
|
1449 |
1.3.1|lang/french.php|1.3.0|1.8|optional|r@
|
|
|
1450 |
1.3.1|lang/french-utf-8.php|1.2.1|1.8|optional|r@
|
|
|
1451 |
1.3.1|lang/german.php|1.3.0|1.6|optional|r@
|
|
|
1452 |
1.3.1|lang/german-utf-8.php|1.3.0|1.6|optional|r@
|
|
|
1453 |
1.3.1|lang/greek.php|1.3.0|1.6|optional|r@
|
|
|
1454 |
1.3.1|lang/greek-utf-8.php|1.3.0|1.6|optional|r@
|
|
|
1455 |
1.3.1|lang/hebrew.php|1.3.0|1.7|optional|r@
|
|
|
1456 |
1.3.1|lang/hebrew-utf-8.php|1.3.0|1.7|optional|r@
|
|
|
1457 |
1.3.1|lang/hungarian.php|1.3.0|1.6|optional|r@
|
|
|
1458 |
1.3.1|lang/hungarian-utf-8.php|1.3.0|1.6|optional|r@
|
|
|
1459 |
1.3.1|lang/indonesian.php|1.3.0|1.5|optional|r@
|
|
|
1460 |
1.3.1|lang/indonesian-utf-8.php|1.3.0|1.5|optional|r@
|
|
|
1461 |
1.3.1|lang/italian.php|1.3.0|1.8|optional|r@
|
|
|
1462 |
1.3.1|lang/italian-utf-8.php|1.3.0|1.8|optional|r@
|
|
|
1463 |
1.3.1|lang/italian2.php|1.3.0|1.1|optional|r@
|
|
|
1464 |
1.3.1|lang/italian2-utf-8.php|1.3.0|1.1|optional|r@
|
|
|
1465 |
1.3.1|lang/japanese.php|1.3.0|1.7|optional|r@
|
|
|
1466 |
1.3.1|lang/japanese-utf-8.php|1.3.0|1.7|optional|r@
|
|
|
1467 |
1.3.1|lang/norwegian.php|1.3.0|1.7|optional|r@
|
|
|
1468 |
1.3.1|lang/norwegian-utf-8.php|1.3.0|1.7|optional|r@
|
|
|
1469 |
1.3.1|lang/polish.php|1.3.0|1.4|optional|r@
|
|
|
1470 |
1.3.1|lang/polish-utf-8.php|1.3.0|1.4|optional|r@
|
|
|
1471 |
1.3.1|lang/slovenian.php|1.3.0|1.5|optional|r@
|
|
|
1472 |
1.3.1|lang/slovenian-utf-8.php|1.3.0|1.5|optional|r@
|
|
|
1473 |
1.3.1|lang/spanish.php|1.3.0|1.5|optional|r@
|
|
|
1474 |
1.3.1|lang/spanish-utf-8.php|1.3.0|1.5|optional|r@
|
|
|
1475 |
1.3.1|sql/basic.sql||1.4|mandatory|r@
|
|
|
1476 |
1.3.1|sql/schema.sql||1.3|mandatory|r@
|
|
|
1477 |
1.3.1|sql/update.sql||1.8|mandatory|r@
|
|
|
1478 |
1.3.1|themes|||mandatory|r@
|
|
|
1479 |
1.3.1|themes/classic|||optional|r@
|
|
|
1480 |
1.3.1|themes/classic/style.css||1.1|optional|r@
|
|
|
1481 |
1.3.1|themes/classic/template.html||1.3|optional|r@
|
|
|
1482 |
1.3.1|themes/classic/theme.php|1.3.1|1.4|optional|r@
|
|
|
1483 |
1.3.1|themes/classic/images|||optional|r@
|
|
|
1484 |
1.3.1|themes/eyeball|||optional|r@
|
|
|
1485 |
1.3.1|themes/eyeball/style.css||1.2|optional|r@
|
|
|
1486 |
1.3.1|themes/eyeball/template.html||1.8|optional|r@
|
|
|
1487 |
1.3.1|themes/eyeball/theme.php|1.3.1|1.6|optional|r@
|
|
|
1488 |
1.3.1|themes/eyeball/images|||optional|r@
|
|
|
1489 |
1.3.1|themes/fruity|||optional|r@
|
|
|
1490 |
1.3.1|themes/fruity/style.css||1.2|optional|r@
|
|
|
1491 |
1.3.1|themes/fruity/template.html||1.8|optional|r@
|
|
|
1492 |
1.3.1|themes/fruity/theme.php|1.3.1|1.5|optional|r@
|
|
|
1493 |
1.3.1|themes/fruity/images|||optional|r@
|
|
|
1494 |
1.3.1|themes/hardwired|||optional|r@
|
|
|
1495 |
1.3.1|themes/hardwired/style.css||1.2|optional|r@
|
|
|
1496 |
1.3.1|themes/hardwired/template.html||1.9|optional|r@
|
|
|
1497 |
1.3.1|themes/hardwired/theme.php|1.3.1|1.7|optional|r@
|
|
|
1498 |
1.3.1|themes/hardwired/images|||optional|r@
|
|
|
1499 |
1.3.1|themes/igames|||optional|r@
|
|
|
1500 |
1.3.1|themes/igames/style.css||1.2|optional|r@
|
|
|
1501 |
1.3.1|themes/igames/template.html||1.9|optional|r@
|
|
|
1502 |
1.3.1|themes/igames/theme.php|1.3.1|1.7|optional|r@
|
|
|
1503 |
1.3.1|themes/igames/images|||optional|r@
|
|
|
1504 |
1.3.1|themes/mac_ox_x|||optional|r@
|
|
|
1505 |
1.3.1|themes/mac_ox_x/style.css||1.2|optional|r@
|
|
|
1506 |
1.3.1|themes/mac_ox_x/template.html||1.8|optional|r@
|
|
|
1507 |
1.3.1|themes/mac_ox_x/theme.php|1.3.1|1.6|optional|r@
|
|
|
1508 |
1.3.1|themes/mac_ox_x/images|||optional|r@
|
|
|
1509 |
1.3.1|themes/classic|||optional|r@
|
|
|
1510 |
1.3.1|themes/project_vii/style.css||1.2|optional|r@
|
|
|
1511 |
1.3.1|themes/project_vii/template.html||1.7|optional|r@
|
|
|
1512 |
1.3.1|themes/project_vii/theme.php|1.3.1|1.6|optional|r@
|
|
|
1513 |
1.3.1|themes/project_vii/images|||optional|r@
|
|
|
1514 |
1.3.1|themes/rainy_day|||optional|r@
|
|
|
1515 |
1.3.1|themes/rainy_day/style.css||1.2|optional|r@
|
|
|
1516 |
1.3.1|themes/rainy_day/template.html||1.6|optional|r@
|
|
|
1517 |
1.3.1|themes/rainy_day/theme.php|1.3.1|1.6|optional|r@
|
|
|
1518 |
1.3.1|themes/rainy_day/images|||optional|r@
|
|
|
1519 |
1.3.1|themes/styleguide|||optional|r@
|
|
|
1520 |
1.3.1|themes/styleguide/domLib.js|||optional|r@
|
|
|
1521 |
1.3.1|themes/styleguide/domTT.js|||optional|r@
|
|
|
1522 |
1.3.1|themes/styleguide/readme.htm||1.2|optional|r@
|
|
|
1523 |
1.3.1|themes/styleguide/template.html||1.4|optional|r@
|
|
|
1524 |
1.3.1|themes/styleguide/theme.php|1.3.1|1.2|optional|r@
|
|
|
1525 |
1.3.1|themes/styleguide/images|||optional|r@
|
|
|
1526 |
1.3.1|themes/water_drop|||optional|r@
|
|
|
1527 |
1.3.1|themes/water_drop/style.css||1.2|optional|r@
|
|
|
1528 |
1.3.1|themes/water_drop/template.html||1.6|optional|r@
|
|
|
1529 |
1.3.1|themes/water_drop/theme.php|1.3.1|1.6|optional|r@
|
|
|
1530 |
1.3.1|themes/water_drop/images|||optional|r@
|
|
|
1531 |
1.3.2|addfav.php|1.3.2|1.5|mandatory|r@
|
|
|
1532 |
1.3.2|addpic.php|1.3.2|1.7|optional|r@
|
|
|
1533 |
1.3.2|admin.php|1.3.2|1.5|mandatory|r@
|
|
|
1534 |
1.3.2|albmgr.php|1.3.2|1.5|mandatory|r@
|
|
|
1535 |
1.3.2|anycontent.php|1.3.2|1.5|mandatory|r@
|
|
|
1536 |
1.3.2|banning.php|1.3.2|1.6|mandatory|r@
|
|
|
1537 |
1.3.2|calendar.php|1.3.2|1.3|mandatory|r@
|
|
|
1538 |
1.3.2|catmgr.php|1.3.2|1.6|mandatory|r@
|
|
|
1539 |
1.3.2|config.php|1.3.2|1.9|mandatory|r@
|
|
|
1540 |
1.3.2|db_ecard.php|1.3.2|1.3|mandatory|r@
|
|
|
1541 |
1.3.2|db_input.php|1.3.2|1.6|mandatory|r@
|
|
|
1542 |
1.3.2|delete.php|1.3.2|1.5|mandatory|r@
|
|
|
1543 |
1.3.2|displayecard.php|1.3.2|1.5|mandatory|r@
|
|
|
1544 |
1.3.2|displayimage.php|1.3.2|1.9|mandatory|r@
|
|
|
1545 |
1.3.2|ecard.php|1.3.2|1.9|mandatory|r@
|
|
|
1546 |
1.3.2|editOnePic.php|1.3.2|1.11|mandatory|r@
|
|
|
1547 |
1.3.2|editpics.php|1.3.2|1.7|mandatory|r@
|
|
|
1548 |
1.3.2|faq.php|1.3.2|1.3|mandatory|r@
|
|
|
1549 |
1.3.2|forgot_passwd.php|1.3.2|1.5|mandatory|r@
|
|
|
1550 |
1.3.2|getlang.php|1.3.2|1.5|mandatory|r@
|
|
|
1551 |
1.3.2|groupmgr.php|1.3.2|1.5|mandatory|r@
|
|
|
1552 |
1.3.2|image_processor.php|1.3.2|1.3|mandatory|r@
|
|
|
1553 |
1.3.2|index.php|1.3.2|1.13|mandatory|r@
|
|
|
1554 |
1.3.2|install.php|1.3.2|1.10|mandatory|r@
|
|
|
1555 |
1.3.2|installer.css||1.3|mandatory|r@
|
|
|
1556 |
1.3.2|login.php|1.3.2|1.5|mandatory|r@
|
|
|
1557 |
1.3.2|logout.php|1.3.2|1.5|mandatory|r@
|
|
|
1558 |
1.3.2|modifyalb.php|1.3.2|1.5|mandatory|r@
|
|
|
1559 |
1.3.2|phpinfo.php|1.3.2|1.5|mandatory|r@
|
|
|
1560 |
1.3.2|picEditor.php|1.3.2|1.3|mandatory|r@
|
|
|
1561 |
1.3.2|profile.php|1.3.2|1.6|mandatory|r@
|
|
|
1562 |
1.3.2|ratepic.php|1.3.2|1.5|mandatory|r@
|
|
|
1563 |
1.3.2|register.php|1.3.2|1.8|mandatory|r@
|
|
|
1564 |
1.3.2|reviewcom.php|1.3.2|1.5|mandatory|r@
|
|
|
1565 |
1.3.2|scripts.js|||mandatory|r@
|
|
|
1566 |
1.3.2|search.php|1.3.2|1.5|mandatory|r@
|
|
|
1567 |
1.3.2|searchnew.php|1.3.2|1.6|mandatory|r@
|
|
|
1568 |
1.3.2|showthumb.php|1.3.2|1.5|mandatory|r@
|
|
|
1569 |
1.3.2|thumbnails.php|1.3.2|1.5|mandatory|r@
|
|
|
1570 |
1.3.2|update.php|1.3.2|1.6|mandatory|r@
|
|
|
1571 |
1.3.2|upgrade-1.0-to-1.2.php|1.3.2|1.6|mandatory|r@
|
|
|
1572 |
1.3.2|upload.php|1.3.2|1.9|mandatory|r@
|
|
|
1573 |
1.3.2|usermgr.php|1.3.2|1.6|mandatory|r@
|
|
|
1574 |
1.3.2|util.php|1.3.2|1.8|mandatory|r@
|
|
|
1575 |
1.3.2|versioncheck.php|1.4.0|1.4|optional|r@
|
|
|
1576 |
1.3.2|xp_publish.php|1.3.2|1.5|mandatory|r@
|
|
|
1577 |
1.3.2|zipdownload.php|1.3.2|1.3|mandatory|r@
|
|
|
1578 |
1.3.2|albums|||mandatory|w@
|
|
|
1579 |
1.3.2|albums/index.html||1.2|optional|r@
|
|
|
1580 |
1.3.2|albums/edit|||mandatory|w@
|
|
|
1581 |
1.3.2|albums/edit/index.html|||optional|w@
|
|
|
1582 |
1.3.2|albums/userpics|||mandatory|w@
|
|
|
1583 |
1.3.2|albums/userpics/index.html|||optional|w@
|
|
|
1584 |
1.3.2|bridge|||optional|r@
|
|
|
1585 |
1.3.2|bridge/invisionboard.inc.php|1.3.2|1.8|optional|r@
|
|
|
1586 |
1.3.2|bridge/phpbb.inc.php|1.3.2|1.9|optional|r@
|
|
|
1587 |
1.3.2|bridge/punbb.inc.php|1.3.2|1.2|optional|r@
|
|
|
1588 |
1.3.2|bridge/smf.inc.php|1.3.2|1.7|optional|r@
|
|
|
1589 |
1.3.2|bridge/vbulletin.inc.php|1.3.2|1.6|optional|r@
|
|
|
1590 |
1.3.2|bridge/vbulletin23.inc.php|1.3.2|1.6|optional|r@
|
|
|
1591 |
1.3.2|bridge/vbulletin30.inc.php|1.3.2|1.6|optional|r@
|
|
|
1592 |
1.3.2|bridge/vbulletin3gamma.inc.php|1.3.2|1.5|optional|r@
|
|
|
1593 |
1.3.2|bridge/woltlab21.inc.php|1.3.2|1.6|optional|r@
|
|
|
1594 |
1.3.2|bridge/yabbse.inc.php|1.3.2|1.8|optional|r@
|
|
|
1595 |
1.3.2|docs|||optional|r@
|
|
|
1596 |
1.3.2|docs/credits.html||1.7|optional|r@
|
|
|
1597 |
1.3.2|docs/faq.htm||1.5|optional|r@
|
|
|
1598 |
1.3.2|docs/index.htm||1.7|optional|r@
|
|
|
1599 |
1.3.2|docs/README.html||1.7|optional|r@
|
|
|
1600 |
1.3.2|docs/theme.htm||1.3|optional|r@
|
|
|
1601 |
1.3.2|docs/translation.htm||1.3|optional|r@
|
|
|
1602 |
1.3.2|docs/pics|||optional|r@
|
|
|
1603 |
1.3.2|images|||mandatory|r@
|
|
|
1604 |
1.3.2|images/flags|||optional|r@
|
|
|
1605 |
1.3.2|images/smiles|||mandatory|r@
|
|
|
1606 |
1.3.2|include|||mandatory|w@
|
|
|
1607 |
1.3.2|include/archive.php|1.3.2|1.3|mandatory|r@
|
|
|
1608 |
1.3.2|include/config.inc.php|||mandatory|r@
|
|
|
1609 |
1.3.2|include/crop.inc.php|1.3.2|1.4|mandatory|r@
|
|
|
1610 |
1.3.2|include/exif_php.inc.php|1.3.2|1.6|mandatory|r@
|
|
|
1611 |
1.3.2|include/exifReader.inc.php|1.3.2|1.3|mandatory|r@
|
|
|
1612 |
1.3.2|include/functions.inc.php|1.3.2|1.14|mandatory|r@
|
|
|
1613 |
1.3.2|include/imageObjectGD.class.php|1.3.2|1.3|mandatory|r@
|
|
|
1614 |
1.3.2|include/imageObjectIM.class.php|1.3.2|1.3|mandatory|r@
|
|
|
1615 |
1.3.2|include/index.html|||mandatory|r@
|
|
|
1616 |
1.3.2|include/init.inc.php|1.3.2|1.10|mandatory|r@
|
|
|
1617 |
1.3.2|include/iptc.inc.php|1.3.2|1.3|mandatory|r@
|
|
|
1618 |
1.3.2|include/mailer.inc.php|1.3.2|1.5|mandatory|r@
|
|
|
1619 |
1.3.2|include/media.functions.inc.php|1.3.2|1.3|mandatory|r@
|
|
|
1620 |
1.3.2|include/picmgmt.inc.php|1.3.2|1.8|mandatory|r@
|
|
|
1621 |
1.3.2|include/search.inc.php|1.3.2|1.5|mandatory|r@
|
|
|
1622 |
1.3.2|include/select_lang.inc.php|1.3.2|1.6|mandatory|r@
|
|
|
1623 |
1.3.2|include/slideshow.inc.php|1.3.2|1.6|mandatory|r@
|
|
|
1624 |
1.3.2|include/smilies.inc.php|1.3.2|1.5|mandatory|r@
|
|
|
1625 |
1.3.2|include/sql_parse.php|1.3.2|1.5|mandatory|r@
|
|
|
1626 |
1.3.2|lang|||mandatory|r@
|
|
|
1627 |
1.3.2|lang/arabic.php|1.3.2|1.8|optional|r@
|
|
|
1628 |
1.3.2|lang/arabic-utf-8.php|1.3.2|1.8|optional|r@
|
|
|
1629 |
1.3.2|lang/brazilian_portuguese.php|1.3.2|1.7|optional|r@
|
|
|
1630 |
1.3.2|lang/brazilian_portuguese-utf-8.php|1.3.2|1.7|optional|r@
|
|
|
1631 |
1.3.2|lang/bulgarian.php|1.3.2|1.4|optional|r@
|
|
|
1632 |
1.3.2|lang/bulgarian-utf-8.php|1.3.2|1.4|optional|r@
|
|
|
1633 |
1.3.2|lang/catalan.php|1.3.2|1.4|optional|r@
|
|
|
1634 |
1.3.2|lang/catalan-utf-8.php|1.3.2|1.4|optional|r@
|
|
|
1635 |
1.3.2|lang/chinese_big5.php|1.3.2|1.7|optional|r@
|
|
|
1636 |
1.3.2|lang/chinese_big5-utf-8.php|1.3.2|1.7|optional|r@
|
|
|
1637 |
1.3.2|lang/chinese_gb.php|1.3.2|1.7|optional|r@
|
|
|
1638 |
1.3.2|lang/chinese_gb-utf-8.php|1.3.2|1.7|optional|r@
|
|
|
1639 |
1.3.2|lang/croatian.php|1.3.2|1.7|optional|r@
|
|
|
1640 |
1.3.2|lang/croatian-utf-8.php|1.3.2|1.7|optional|r@
|
|
|
1641 |
1.3.2|lang/czech.php|1.3.2|1.8|optional|r@
|
|
|
1642 |
1.3.2|lang/czech-utf-8.php|1.3.2|1.8|optional|r@
|
|
|
1643 |
1.3.2|lang/danish.php|1.3.2|1.8|optional|r@
|
|
|
1644 |
1.3.2|lang/danish-utf-8.php|1.3.2|1.8|optional|r@
|
|
|
1645 |
1.3.2|lang/dutch.php|1.3.2|1.7|optional|r@
|
|
|
1646 |
1.3.2|lang/dutch-utf-8.php|1.3.2|1.7|optional|r@
|
|
|
1647 |
1.3.2|lang/english.php|1.3.2|1.13|mandatory|r@
|
|
|
1648 |
1.3.2|lang/english-utf-8.php|1.3.2|1.9|optional|r@
|
|
|
1649 |
1.3.2|lang/estonian.php|1.3.2|1.9|optional|r@
|
|
|
1650 |
1.3.2|lang/estonian-utf-8.php|1.3.2|1.9|optional|r@
|
|
|
1651 |
1.3.2|lang/finnish.php|1.3.2|1.6|optional|r@
|
|
|
1652 |
1.3.2|lang/finnish-utf-8.php|1.3.2|1.6|optional|r@
|
|
|
1653 |
1.3.2|lang/french.php|1.3.2|1.13|optional|r@
|
|
|
1654 |
1.3.2|lang/french-utf-8.php|1.3.2|1.13|optional|r@
|
|
|
1655 |
1.3.2|lang/german.php|1.3.2|1.7|optional|r@
|
|
|
1656 |
1.3.2|lang/german-utf-8.php|1.3.2|1.7|optional|r@
|
|
|
1657 |
1.3.2|lang/german_sie.php|1.3.2|1.2|optional|r@
|
|
|
1658 |
1.3.2|lang/german_sie-utf-8.php|1.3.2|1.2|optional|r@
|
|
|
1659 |
1.3.2|lang/greek.php|1.3.2|1.7|optional|r@
|
|
|
1660 |
1.3.2|lang/greek-utf-8.php|1.3.2|1.7|optional|r@
|
|
|
1661 |
1.3.2|lang/hebrew.php|1.3.2|1.8|optional|r@
|
|
|
1662 |
1.3.2|lang/hebrew-utf-8.php|1.3.2|1.9|optional|r@
|
|
|
1663 |
1.3.2|lang/hungarian.php|1.3.2|1.7|optional|r@
|
|
|
1664 |
1.3.2|lang/hungarian-utf-8.php|1.3.2|1.7|optional|r@
|
|
|
1665 |
1.3.2|lang/indonesian.php|1.3.2|1.6|optional|r@
|
|
|
1666 |
1.3.2|lang/indonesian-utf-8.php|1.3.2|1.6|optional|r@
|
|
|
1667 |
1.3.2|lang/italian.php|1.3.2|1.9|optional|r@
|
|
|
1668 |
1.3.2|lang/italian-utf-8.php|1.3.2|1.9|optional|r@
|
|
|
1669 |
1.3.2|lang/italian2.php|1.3.2|1.2|optional|r@
|
|
|
1670 |
1.3.2|lang/italian2-utf-8.php|1.3.2|1.2|optional|r@
|
|
|
1671 |
1.3.2|lang/japanese.php|1.3.2|1.8|optional|r@
|
|
|
1672 |
1.3.2|lang/japanese-utf-8.php|1.3.2|1.8|optional|r@
|
|
|
1673 |
1.3.2|lang/kurdish.php|1.3.2|1.1|optional|r@
|
|
|
1674 |
1.3.2|lang/kurdish-utf-8.php|1.3.2|1.1|optional|r@
|
|
|
1675 |
1.3.2|lang/latvian.php|1.3.2|1.8|optional|r@
|
|
|
1676 |
1.3.2|lang/latvian-utf-8.php|1.3.2|1.8|optional|r@
|
|
|
1677 |
1.3.2|lang/malay.php|1.3.2|1.2|optional|r@
|
|
|
1678 |
1.3.2|lang/malay-utf-8.php|1.3.2|1.2|optional|r@
|
|
|
1679 |
1.3.2|lang/norwegian.php|1.3.2|1.8|optional|r@
|
|
|
1680 |
1.3.2|lang/norwegian-utf-8.php|1.3.2|1.8|optional|r@
|
|
|
1681 |
1.3.2|lang/polish.php|1.3.2|1.5|optional|r@
|
|
|
1682 |
1.3.2|lang/polish-utf-8.php|1.3.2|1.5|optional|r@
|
|
|
1683 |
1.3.2|lang/romanian.php|1.3.2|1.6|optional|r@
|
|
|
1684 |
1.3.2|lang/romanian-utf-8.php|1.3.2|1.6|optional|r@
|
|
|
1685 |
1.3.2|lang/romanian_no_diacritics.php|1.3.2|1.1|optional|r@
|
|
|
1686 |
1.3.2|lang/romanian_no_diacritics-utf-8.php|1.3.2|1.1|optional|r@
|
|
|
1687 |
1.3.2|lang/russian.php|1.3.2|1.11|optional|r@
|
|
|
1688 |
1.3.2|lang/russian-utf-8.php|1.3.2|1.11|optional|r@
|
|
|
1689 |
1.3.2|lang/slovak.php|1.3.2|1.4|optional|r@
|
|
|
1690 |
1.3.2|lang/slovak-utf-8.php|1.3.2|1.4|optional|r@
|
|
|
1691 |
1.3.2|lang/slovenian.php|1.3.2|1.6|optional|r@
|
|
|
1692 |
1.3.2|lang/slovenian-utf-8.php|1.3.2|1.6|optional|r@
|
|
|
1693 |
1.3.2|lang/spanish.php|1.3.2|1.6|optional|r@
|
|
|
1694 |
1.3.2|lang/spanish-utf-8.php|1.3.2|1.6|optional|r@
|
|
|
1695 |
1.3.2|lang/swedish.php|1.3.2|1.7|optional|r@
|
|
|
1696 |
1.3.2|lang/swedish-utf-8.php|1.3.2|1.7|optional|r@
|
|
|
1697 |
1.3.2|lang/turkish.php|1.3.2|1.7|optional|r@
|
|
|
1698 |
1.3.2|lang/turkish-utf-8.php|1.3.2|1.7|optional|r@
|
|
|
1699 |
1.3.2|lang/uighur.php|1.3.2|1.2|optional|r@
|
|
|
1700 |
1.3.2|lang/uighur-utf-8.php|1.3.2|1.2|optional|r@
|
|
|
1701 |
1.3.2|lang/vietnamese.php|1.3.2|1.4|optional|r@
|
|
|
1702 |
1.3.2|lang/vietnamese-utf-8.php|1.3.2|1.4|optional|r@
|
|
|
1703 |
1.3.2|sql/basic.sql||1.5|mandatory|r@
|
|
|
1704 |
1.3.2|sql/schema.sql||1.3|mandatory|r@
|
|
|
1705 |
1.3.2|sql/update.sql||1.8|mandatory|r@
|
|
|
1706 |
1.3.2|themes|||mandatory|r@
|
|
|
1707 |
1.3.2|themes/classic|||optional|r@
|
|
|
1708 |
1.3.2|themes/classic/style.css||1.1|optional|r@
|
|
|
1709 |
1.3.2|themes/classic/template.html||1.3|optional|r@
|
|
|
1710 |
1.3.2|themes/classic/theme.php|1.3.2|1.5|optional|r@
|
|
|
1711 |
1.3.2|themes/classic/images|||optional|r@
|
|
|
1712 |
1.3.2|themes/eyeball|||optional|r@
|
|
|
1713 |
1.3.2|themes/eyeball/style.css||1.2|optional|r@
|
|
|
1714 |
1.3.2|themes/eyeball/template.html||1.8|optional|r@
|
|
|
1715 |
1.3.2|themes/eyeball/theme.php|1.3.2|1.7|optional|r@
|
|
|
1716 |
1.3.2|themes/eyeball/images|||optional|r@
|
|
|
1717 |
1.3.2|themes/fruity|||optional|r@
|
|
|
1718 |
1.3.2|themes/fruity/style.css||1.2|optional|r@
|
|
|
1719 |
1.3.2|themes/fruity/template.html||1.9|optional|r@
|
|
|
1720 |
1.3.2|themes/fruity/theme.php|1.3.2|1.6|optional|r@
|
|
|
1721 |
1.3.2|themes/fruity/images|||optional|r@
|
|
|
1722 |
1.3.2|themes/hardwired|||optional|r@
|
|
|
1723 |
1.3.2|themes/hardwired/style.css||1.2|optional|r@
|
|
|
1724 |
1.3.2|themes/hardwired/template.html||1.10|optional|r@
|
|
|
1725 |
1.3.2|themes/hardwired/theme.php|1.3.2|1.9|optional|r@
|
|
|
1726 |
1.3.2|themes/hardwired/images|||optional|r@
|
|
|
1727 |
1.3.2|themes/igames|||optional|r@
|
|
|
1728 |
1.3.2|themes/igames/style.css||1.2|optional|r@
|
|
|
1729 |
1.3.2|themes/igames/template.html||1.9|optional|r@
|
|
|
1730 |
1.3.2|themes/igames/theme.php|1.3.2|1.8|optional|r@
|
|
|
1731 |
1.3.2|themes/igames/images|||optional|r@
|
|
|
1732 |
1.3.2|themes/mac_ox_x|||optional|r@
|
|
|
1733 |
1.3.2|themes/mac_ox_x/style.css||1.2|optional|r@
|
|
|
1734 |
1.3.2|themes/mac_ox_x/template.html||1.8|optional|r@
|
|
|
1735 |
1.3.2|themes/mac_ox_x/theme.php|1.3.2|1.7|optional|r@
|
|
|
1736 |
1.3.2|themes/mac_ox_x/images|||optional|r@
|
|
|
1737 |
1.3.2|themes/project_vii|||optional|r@
|
|
|
1738 |
1.3.2|themes/project_vii/style.css||1.2|optional|r@
|
|
|
1739 |
1.3.2|themes/project_vii/template.html||1.7|optional|r@
|
|
|
1740 |
1.3.2|themes/project_vii/theme.php|1.3.2|1.7|optional|r@
|
|
|
1741 |
1.3.2|themes/project_vii/images|||optional|r@
|
|
|
1742 |
1.3.2|themes/rainy_day|||optional|r@
|
|
|
1743 |
1.3.2|themes/rainy_day/style.css||1.2|optional|r@
|
|
|
1744 |
1.3.2|themes/rainy_day/template.html||1.6|optional|r@
|
|
|
1745 |
1.3.2|themes/rainy_day/theme.php|1.3.2|1.7|optional|r@
|
|
|
1746 |
1.3.2|themes/rainy_day/images|||optional|r@
|
|
|
1747 |
1.3.2|themes/styleguide|||optional|r@
|
|
|
1748 |
1.3.2|themes/styleguide/domLib.js|||optional|r@
|
|
|
1749 |
1.3.2|themes/styleguide/domTT.js|||optional|r@
|
|
|
1750 |
1.3.2|themes/styleguide/readme.htm||1.2|optional|r@
|
|
|
1751 |
1.3.2|themes/styleguide/template.html||1.4|optional|r@
|
|
|
1752 |
1.3.2|themes/styleguide/theme.php|1.3.2|1.3|optional|r@
|
|
|
1753 |
1.3.2|themes/styleguide/images|||optional|r@
|
|
|
1754 |
1.3.2|themes/water_drop|||optional|r@
|
|
|
1755 |
1.3.2|themes/water_drop/style.css||1.2|optional|r@
|
|
|
1756 |
1.3.2|themes/water_drop/template.html||1.6|optional|r@
|
|
|
1757 |
1.3.2|themes/water_drop/theme.php|1.3.2|1.7|optional|r@
|
|
|
1758 |
1.3.2|themes/water_drop/images|||optional|r@
|
|
|
1759 |
1.3.3|addfav.php|1.3.3|1.6|mandatory|r@
|
|
|
1760 |
1.3.3|addpic.php|1.3.3|1.9|optional|r@
|
|
|
1761 |
1.3.3|admin.php|1.3.3|1.6|mandatory|r@
|
|
|
1762 |
1.3.3|albmgr.php|1.3.3|1.6|mandatory|r@
|
|
|
1763 |
1.3.3|anycontent.php|1.3.3|1.6|mandatory|r@
|
|
|
1764 |
1.3.3|banning.php|1.3.3|1.7|mandatory|r@
|
|
|
1765 |
1.3.3|calendar.php|1.3.3|1.4|mandatory|r@
|
|
|
1766 |
1.3.3|catmgr.php|1.3.3|1.7|mandatory|r@
|
|
|
1767 |
1.3.3|config.php|1.3.3|1.13|mandatory|r@
|
|
|
1768 |
1.3.3|db_ecard.php|1.3.3|1.5|mandatory|r@
|
|
|
1769 |
1.3.3|db_input.php|1.3.3|1.9|mandatory|r@
|
|
|
1770 |
1.3.3|delete.php|1.3.3|1.7|mandatory|r@
|
|
|
1771 |
1.3.3|displayecard.php|1.3.3|1.6|mandatory|r@
|
|
|
1772 |
1.3.3|displayimage.php|1.3.3|1.11|mandatory|r@
|
|
|
1773 |
1.3.3|ecard.php|1.3.3|1.12|mandatory|r@
|
|
|
1774 |
1.3.3|editOnePic.php|1.3.3|1.12|mandatory|r@
|
|
|
1775 |
1.3.3|editpics.php|1.3.3|1.8|mandatory|r@
|
|
|
1776 |
1.3.3|faq.php|1.3.3|1.4|mandatory|r@
|
|
|
1777 |
1.3.3|forgot_passwd.php|1.3.3|1.6|mandatory|r@
|
|
|
1778 |
1.3.3|getlang.php|1.3.3|1.6|mandatory|r@
|
|
|
1779 |
1.3.3|groupmgr.php|1.3.3|1.7|mandatory|r@
|
|
|
1780 |
1.3.3|image_processor.php|1.3.3|1.5|mandatory|r@
|
|
|
1781 |
1.3.3|index.php|1.3.3|1.17|mandatory|r@
|
|
|
1782 |
1.3.3|install.php|1.3.3|1.14|mandatory|r@
|
|
|
1783 |
1.3.3|installer.css|1.3.3|1.4|mandatory|r@
|
|
|
1784 |
1.3.3|login.php|1.3.3|1.6|mandatory|r@
|
|
|
1785 |
1.3.3|logout.php|1.3.3|1.6|mandatory|r@
|
|
|
1786 |
1.3.3|modifyalb.php|1.3.3|1.7|mandatory|r@
|
|
|
1787 |
1.3.3|phpinfo.php|1.3.3|1.6|mandatory|r@
|
|
|
1788 |
1.3.3|picEditor.php|1.3.3|1.4|mandatory|r@
|
|
|
1789 |
1.3.3|profile.php|1.3.3|1.7|mandatory|r@
|
|
|
1790 |
1.3.3|ratepic.php|1.3.3|1.6|mandatory|r@
|
|
|
1791 |
1.3.3|register.php|1.3.3|1.11|mandatory|r@
|
|
|
1792 |
1.3.3|reviewcom.php|1.3.3|1.6|mandatory|r@
|
|
|
1793 |
1.3.3|scripts.js|||mandatory|r@
|
|
|
1794 |
1.3.3|search.php|1.3.3|1.6|mandatory|r@
|
|
|
1795 |
1.3.3|searchnew.php|1.3.3|1.10|mandatory|r@
|
|
|
1796 |
1.3.3|showthumb.php|1.3.3|1.6|mandatory|r@
|
|
|
1797 |
1.3.3|thumbnails.php|1.3.3|1.6|mandatory|r@
|
|
|
1798 |
1.3.3|update.php|1.3.3|1.9|mandatory|r@
|
|
|
1799 |
1.3.3|upgrade-1.0-to-1.2.php|1.3.3|1.7|mandatory|r@
|
|
|
1800 |
1.3.3|upload.php|1.3.3|1.14|mandatory|r@
|
|
|
1801 |
1.3.3|usermgr.php|1.3.3|1.7|mandatory|r@
|
|
|
1802 |
1.3.3|util.php|1.3.3|1.13|mandatory|r@
|
|
|
1803 |
1.3.3|versioncheck.php|1.4.1|1.8|optional|r@
|
|
|
1804 |
1.3.3|xp_publish.php|1.3.3|1.8|mandatory|r@
|
|
|
1805 |
1.3.3|zipdownload.php|1.3.3|1.5|mandatory|r@
|
|
|
1806 |
1.3.3|albums|||mandatory|w@
|
|
|
1807 |
1.3.3|albums/index.html||1.2|optional|r@
|
|
|
1808 |
1.3.3|albums/edit|||mandatory|w@
|
|
|
1809 |
1.3.3|albums/edit/index.html|||optional|w@
|
|
|
1810 |
1.3.3|albums/userpics|||mandatory|w@
|
|
|
1811 |
1.3.3|albums/userpics/index.html|||optional|w@
|
|
|
1812 |
1.3.3|bridge|||optional|r@
|
|
|
1813 |
1.3.3|bridge/invisionboard.inc.php|1.3.3|1.9|optional|r@
|
|
|
1814 |
1.3.3|bridge/phpbb.inc.php|1.3.3|1.11|optional|r@
|
|
|
1815 |
1.3.3|bridge/punbb.inc.php|1.3.3|1.3|optional|r@
|
|
|
1816 |
1.3.3|bridge/smf.inc.php|1.3.3|1.8|optional|r@
|
|
|
1817 |
1.3.3|bridge/vbulletin.inc.php|1.3.3|1.7|optional|r@
|
|
|
1818 |
1.3.3|bridge/vbulletin23.inc.php|1.3.3|1.7|optional|r@
|
|
|
1819 |
1.3.3|bridge/vbulletin30.inc.php|1.3.3|1.8|optional|r@
|
|
|
1820 |
1.3.3|bridge/vbulletin3gamma.inc.php|1.3.3|1.6|optional|r@
|
|
|
1821 |
1.3.3|bridge/woltlab21.inc.php|1.3.3|1.7|optional|r@
|
|
|
1822 |
1.3.3|bridge/yabbse.inc.php|1.3.3|1.9|optional|r@
|
|
|
1823 |
1.3.3|docs|||optional|r@
|
|
|
1824 |
1.3.3|docs/credits.html||1.7|optional|r@
|
|
|
1825 |
1.3.3|docs/faq.htm||1.5|optional|r@
|
|
|
1826 |
1.3.3|docs/index.htm||1.7|optional|r@
|
|
|
1827 |
1.3.3|docs/README.html||1.7|optional|r@
|
|
|
1828 |
1.3.3|docs/theme.htm||1.3|optional|r@
|
|
|
1829 |
1.3.3|docs/translation.htm||1.3|optional|r@
|
|
|
1830 |
1.3.3|docs/pics|||optional|r@
|
|
|
1831 |
1.3.3|images|||mandatory|r@
|
|
|
1832 |
1.3.3|images/flags|||optional|r@
|
|
|
1833 |
1.3.3|images/smiles|||mandatory|r@
|
|
|
1834 |
1.3.3|include|||mandatory|w@
|
|
|
1835 |
1.3.3|include/archive.php|1.3.3|1.4|mandatory|r@
|
|
|
1836 |
1.3.3|include/config.inc.php|||mandatory|r@
|
|
|
1837 |
1.3.3|include/crop.inc.php|1.3.3|1.5|mandatory|r@
|
|
|
1838 |
1.3.3|include/exif_php.inc.php|1.3.3|1.7|mandatory|r@
|
|
|
1839 |
1.3.3|include/exifReader.inc.php|1.3.3|1.4|mandatory|r@
|
|
|
1840 |
1.3.3|include/functions.inc.php|1.3.3|1.24|mandatory|r@
|
|
|
1841 |
1.3.3|include/imageObjectGD.class.php|1.3.3|1.5|mandatory|r@
|
|
|
1842 |
1.3.3|include/imageObjectIM.class.php|1.3.3|1.4|mandatory|r@
|
|
|
1843 |
1.3.3|include/index.html|||mandatory|r@
|
|
|
1844 |
1.3.3|include/init.inc.php|1.3.3|1.15|mandatory|r@
|
|
|
1845 |
1.3.3|include/iptc.inc.php|1.3.3|1.4|mandatory|r@
|
|
|
1846 |
1.3.3|include/mailer.inc.php|1.3.3|1.6|mandatory|r@
|
|
|
1847 |
1.3.3|include/media.functions.inc.php|1.3.3|1.4|mandatory|r@
|
|
|
1848 |
1.3.3|include/picmgmt.inc.php|1.3.3|1.10|mandatory|r@
|
|
|
1849 |
1.3.3|include/search.inc.php|1.3.3|1.6|mandatory|r@
|
|
|
1850 |
1.3.3|include/select_lang.inc.php|1.3.3|1.7|mandatory|r@
|
|
|
1851 |
1.3.3|include/slideshow.inc.php|1.3.3|1.9|mandatory|r@
|
|
|
1852 |
1.3.3|include/smilies.inc.php|1.3.3|1.6|mandatory|r@
|
|
|
1853 |
1.3.3|include/sql_parse.php|1.3.3|1.6|mandatory|r@
|
|
|
1854 |
1.3.3|lang|||mandatory|r@
|
|
|
1855 |
1.3.3|lang/arabic.php|1.3.0|1.11|optional|r@
|
|
|
1856 |
1.3.3|lang/arabic-utf-8.php|1.3.0|1.12|optional|r@
|
|
|
1857 |
1.3.3|lang/brazilian_portuguese.php|1.3.0|1.9|optional|r@
|
|
|
1858 |
1.3.3|lang/brazilian_portuguese-utf-8.php|1.3.0|1.10|optional|r@
|
|
|
1859 |
1.3.3|lang/bulgarian.php|1.3.0|1.6|optional|r@
|
|
|
1860 |
1.3.3|lang/bulgarian-utf-8.php|1.3.2|1.8|optional|r@
|
|
|
1861 |
1.3.3|lang/catalan.php|1.3.2|1.6|optional|r@
|
|
|
1862 |
1.3.3|lang/catalan-utf-8.php|1.3.2|1.7|optional|r@
|
|
|
1863 |
1.3.3|lang/chinese_big5.php|1.3.2|1.11|optional|r@
|
|
|
1864 |
1.3.3|lang/chinese_big5-utf-8.php|1.3.2|1.12|optional|r@
|
|
|
1865 |
1.3.3|lang/chinese_gb.php|1.3.2|1.11|optional|r@
|
|
|
1866 |
1.3.3|lang/chinese_gb-utf-8.php|1.3.2|1.12|optional|r@
|
|
|
1867 |
1.3.3|lang/croatian.php|1.3.0|1.9|optional|r@
|
|
|
1868 |
1.3.3|lang/croatian-utf-8.php|1.3.0|1.10|optional|r@
|
|
|
1869 |
1.3.3|lang/czech.php|1.3.0|1.10|optional|r@
|
|
|
1870 |
1.3.3|lang/czech-utf-8.php|1.3.0|1.11|optional|r@
|
|
|
1871 |
1.3.3|lang/danish.php|1.3.0|1.11|optional|r@
|
|
|
1872 |
1.3.3|lang/danish-utf-8.php|1.3.0|1.11|optional|r@
|
|
|
1873 |
1.3.3|lang/dutch.php|1.3.2|1.10|optional|r@
|
|
|
1874 |
1.3.3|lang/dutch-utf-8.php|1.3.2|1.11|optional|r@
|
|
|
1875 |
1.3.3|lang/english.php|1.3.3|1.18|mandatory|r@
|
|
|
1876 |
1.3.3|lang/english-utf-8.php|1.3.3|1.13|optional|r@
|
|
|
1877 |
1.3.3|lang/estonian.php|1.3.2|1.10|optional|r@
|
|
|
1878 |
1.3.3|lang/estonian-utf-8.php|1.3.2|1.11|optional|r@
|
|
|
1879 |
1.3.3|lang/finnish.php|1.3.0|1.7|optional|r@
|
|
|
1880 |
1.3.3|lang/finnish-utf-8.php|1.3.0|1.8|optional|r@
|
|
|
1881 |
1.3.3|lang/french.php|1.3.2|1.15|optional|r@
|
|
|
1882 |
1.3.3|lang/french-utf-8.php|1.3.2|1.14|optional|r@
|
|
|
1883 |
1.3.3|lang/german.php|1.3.3|1.13|optional|r@
|
|
|
1884 |
1.3.3|lang/german-utf-8.php|1.3.2|1.13|optional|r@
|
|
|
1885 |
1.3.3|lang/german_sie.php|1.3.3|1.4|optional|r@
|
|
|
1886 |
1.3.3|lang/german_sie-utf-8.php|1.3.2|1.4|optional|r@
|
|
|
1887 |
1.3.3|lang/greek.php|1.3.0|1.8|optional|r@
|
|
|
1888 |
1.3.3|lang/greek-utf-8.php|1.3.0|1.9|optional|r@
|
|
|
1889 |
1.3.3|lang/hebrew.php|1.3.0|1.9|optional|r@
|
|
|
1890 |
1.3.3|lang/hebrew-utf-8.php|1.3.0|1.11|optional|r@
|
|
|
1891 |
1.3.3|lang/hungarian.php|1.3.0|1.8|optional|r@
|
|
|
1892 |
1.3.3|lang/hungarian-utf-8.php|1.3.0|1.9|optional|r@
|
|
|
1893 |
1.3.3|lang/indonesian.php|1.3.0|1.7|optional|r@
|
|
|
1894 |
1.3.3|lang/indonesian-utf-8.php|1.3.0|1.8|optional|r@
|
|
|
1895 |
1.3.3|lang/italian.php|1.3.0|1.10|optional|r@
|
|
|
1896 |
1.3.3|lang/italian-utf-8.php|1.3.0|1.11|optional|r@
|
|
|
1897 |
1.3.3|lang/italian2.php|1.3.0|1.3|optional|r@
|
|
|
1898 |
1.3.3|lang/italian2-utf-8.php|1.3.0|1.4|optional|r@
|
|
|
1899 |
1.3.3|lang/japanese.php|1.3.0|1.9|optional|r@
|
|
|
1900 |
1.3.3|lang/japanese-utf-8.php|1.3.0|1.10|optional|r@
|
|
|
1901 |
1.3.3|lang/kurdish.php|1.3.2|1.2|optional|r@
|
|
|
1902 |
1.3.3|lang/kurdish-utf-8.php|1.3.2|1.3|optional|r@
|
|
|
1903 |
1.3.3|lang/latvian.php|1.3.0|1.10|optional|r@
|
|
|
1904 |
1.3.3|lang/latvian-utf-8.php|1.3.0|1.12|optional|r@
|
|
|
1905 |
1.3.3|lang/malay.php|1.3.0|1.3|optional|r@
|
|
|
1906 |
1.3.3|lang/malay-utf-8.php|1.3.0|1.4|optional|r@
|
|
|
1907 |
1.3.3|lang/norwegian.php|1.4.0|1.9|optional|r@
|
|
|
1908 |
1.3.3|lang/norwegian-utf-8.php|1.4.0|1.10|optional|r@
|
|
|
1909 |
1.3.3|lang/polish.php|1.3.0|1.6|optional|r@
|
|
|
1910 |
1.3.3|lang/polish-utf-8.php|1.3.0|1.8|optional|r@
|
|
|
1911 |
1.3.3|lang/romanian.php|1.4.0|1.7|optional|r@
|
|
|
1912 |
1.3.3|lang/romanian-utf-8.php|1.4.0|1.8|optional|r@
|
|
|
1913 |
1.3.3|lang/romanian_no_diacritics.php|1.4.0|1.2|optional|r@
|
|
|
1914 |
1.3.3|lang/romanian_no_diacritics-utf-8.php|1.4.0|1.3|optional|r@
|
|
|
1915 |
1.3.3|lang/russian.php|1.3.2|1.13|optional|r@
|
|
|
1916 |
1.3.3|lang/russian-utf-8.php|1.3.2|1.14|optional|r@
|
|
|
1917 |
1.3.3|lang/slovak.php|1.3.2|1.5|optional|r@
|
|
|
1918 |
1.3.3|lang/slovak-utf-8.php|1.3.2|1.6|optional|r@
|
|
|
1919 |
1.3.3|lang/slovenian.php|1.3.0|1.7|optional|r@
|
|
|
1920 |
1.3.3|lang/slovenian-utf-8.php|1.3.0|1.8|optional|r@
|
|
|
1921 |
1.3.3|lang/spanish.php|1.3.0|1.7|optional|r@
|
|
|
1922 |
1.3.3|lang/spanish-utf-8.php|1.3.0|1.9|optional|r@
|
|
|
1923 |
1.3.3|lang/swedish.php|1.3.0|1.9|optional|r@
|
|
|
1924 |
1.3.3|lang/swedish-utf-8.php|1.3.0|1.10|optional|r@
|
|
|
1925 |
1.3.3|lang/turkish.php|1.3.2|1.8|optional|r@
|
|
|
1926 |
1.3.3|lang/turkish-utf-8.php|1.3.2|1.9|optional|r@
|
|
|
1927 |
1.3.3|lang/uighur.php|1.3.2|1.3|optional|r@
|
|
|
1928 |
1.3.3|lang/uighur-utf-8.php|1.3.2|1.4|optional|r@
|
|
|
1929 |
1.3.3|lang/vietnamese.php|1.3.2|1.5|optional|r@
|
|
|
1930 |
1.3.3|lang/vietnamese-utf-8.php|1.3.2|1.6|optional|r@
|
|
|
1931 |
1.3.3|sql/basic.sql|1.3.3|1.8|mandatory|r@
|
|
|
1932 |
1.3.3|sql/schema.sql|1.3.3|1.4|mandatory|r@
|
|
|
1933 |
1.3.3|sql/update.sql|1.3.3|1.14|mandatory|r@
|
|
|
1934 |
1.3.3|themes|||mandatory|r@
|
|
|
1935 |
1.3.3|themes/classic|||optional|r@
|
|
|
1936 |
1.3.3|themes/classic/style.css|1.3.3|1.2|optional|r@
|
|
|
1937 |
1.3.3|themes/classic/template.html|1.3.3|1.2|optional|r@
|
|
|
1938 |
1.3.3|themes/classic/theme.php|1.3.3|1.8|optional|r@
|
|
|
1939 |
1.3.3|themes/classic/images|||optional|r@
|
|
|
1940 |
1.3.3|themes/eyeball|||optional|r@
|
|
|
1941 |
1.3.3|themes/eyeball/style.css|1.3.3|1.3|optional|r@
|
|
|
1942 |
1.3.3|themes/eyeball/template.html|1.3.3|1.5|optional|r@
|
|
|
1943 |
1.3.3|themes/eyeball/theme.php|1.3.3|1.10|optional|r@
|
|
|
1944 |
1.3.3|themes/eyeball/images|||optional|r@
|
|
|
1945 |
1.3.3|themes/fruity|||optional|r@
|
|
|
1946 |
1.3.3|themes/fruity/style.css|1.3.3|1.3|optional|r@
|
|
|
1947 |
1.3.3|themes/fruity/template.html|1.3.3|1.6|optional|r@
|
|
|
1948 |
1.3.3|themes/fruity/theme.php|1.3.3|1.9|optional|r@
|
|
|
1949 |
1.3.3|themes/fruity/images|||optional|r@
|
|
|
1950 |
1.3.3|themes/hardwired|||optional|r@
|
|
|
1951 |
1.3.3|themes/hardwired/style.css|1.3.3|1.3|optional|r@
|
|
|
1952 |
1.3.3|themes/hardwired/template.html|1.3.3|1.7|optional|r@
|
|
|
1953 |
1.3.3|themes/hardwired/theme.php|1.3.3|1.12|optional|r@
|
|
|
1954 |
1.3.3|themes/hardwired/images|||optional|r@
|
|
|
1955 |
1.3.3|themes/igames|||optional|r@
|
|
|
1956 |
1.3.3|themes/igames/style.css|1.3.3|1.3|optional|r@
|
|
|
1957 |
1.3.3|themes/igames/template.html|1.3.3|1.6|optional|r@
|
|
|
1958 |
1.3.3|themes/igames/theme.php|1.3.3|1.11|optional|r@
|
|
|
1959 |
1.3.3|themes/igames/images|||optional|r@
|
|
|
1960 |
1.3.3|themes/mac_ox_x|||optional|r@
|
|
|
1961 |
1.3.3|themes/mac_ox_x/style.css|1.3.3|1.3|optional|r@
|
|
|
1962 |
1.3.3|themes/mac_ox_x/template.html|1.3.3|1.5|optional|r@
|
|
|
1963 |
1.3.3|themes/mac_ox_x/theme.php|1.3.3|1.10|optional|r@
|
|
|
1964 |
1.3.3|themes/mac_ox_x/images|||optional|r@
|
|
|
1965 |
1.3.3|themes/project_vii|||optional|r@
|
|
|
1966 |
1.3.3|themes/project_vii/style.css|1.3.3|1.3|optional|r@
|
|
|
1967 |
1.3.3|themes/project_vii/template.html|1.3.3|1.5|optional|r@
|
|
|
1968 |
1.3.3|themes/project_vii/theme.php|1.3.3|1.10|optional|r@
|
|
|
1969 |
1.3.3|themes/project_vii/images|||optional|r@
|
|
|
1970 |
1.3.3|themes/rainy_day|||optional|r@
|
|
|
1971 |
1.3.3|themes/rainy_day/style.css|1.3.3|1.3|optional|r@
|
|
|
1972 |
1.3.3|themes/rainy_day/template.html|1.3.3|1.7|optional|r@
|
|
|
1973 |
1.3.3|themes/rainy_day/theme.php|1.3.3|1.10|optional|r@
|
|
|
1974 |
1.3.3|themes/rainy_day/images|||optional|r@
|
|
|
1975 |
1.3.3|themes/styleguide|||optional|r@
|
|
|
1976 |
1.3.3|themes/styleguide/domLib.js|||optional|r@
|
|
|
1977 |
1.3.3|themes/styleguide/domTT.js|||optional|r@
|
|
|
1978 |
1.3.3|themes/styleguide/readme.htm||1.2|optional|r@
|
|
|
1979 |
1.3.3|themes/styleguide/template.html|1.3.3|1.3|optional|r@
|
|
|
1980 |
1.3.3|themes/styleguide/theme.php|1.3.3|1.6|optional|r@
|
|
|
1981 |
1.3.3|themes/styleguide/images|||optional|r@
|
|
|
1982 |
1.3.3|themes/water_drop|||optional|r@
|
|
|
1983 |
1.3.3|themes/water_drop/style.css|1.3.3|1.3|optional|r@
|
|
|
1984 |
1.3.3|themes/water_drop/template.html|1.3.3|1.5|optional|r@
|
|
|
1985 |
1.3.3|themes/water_drop/theme.php|1.3.3|1.10|optional|r@
|
|
|
1986 |
1.3.3|themes/water_drop/images|||optional|r@
|
|
|
1987 |
1.4.0|addfav.php|1.4.0|1.15|mandatory|r@
|
|
|
1988 |
1.4.0|addpic.php|1.4.0|1.11|mandatory|r@
|
|
|
1989 |
1.4.0|admin.php|1.4.0|1.14|mandatory|r@
|
|
|
1990 |
1.4.0|albmgr.php|1.4.0|1.13|mandatory|r@
|
|
|
1991 |
1.4.0|anycontent.php|1.4.0|1.10|mandatory|r@
|
|
|
1992 |
1.4.0|banning.php|1.4.0|1.20|mandatory|r@
|
|
|
1993 |
1.4.0|bridgemgr.php|1.4.0|1.13|mandatory|r@
|
|
|
1994 |
1.4.0|calendar.php|1.4.0|1.2|mandatory|r@
|
|
|
1995 |
1.4.0|catmgr.php|1.4.0|1.22|mandatory|r@
|
|
|
1996 |
1.4.0|db_ecard.php|1.4.0|1.11|mandatory|r@
|
|
|
1997 |
1.4.0|db_input.php|1.4.0|1.39|mandatory|r@
|
|
|
1998 |
1.4.0|delete.php|1.4.0|1.18|mandatory|r@
|
|
|
1999 |
1.4.0|displayecard.php|1.4.0|1.9|mandatory|r@
|
|
|
2000 |
1.4.0|displayimage.php|1.4.0|1.84|mandatory|r@
|
|
|
2001 |
1.4.0|ecard.php|1.4.0|1.23|mandatory|r@
|
|
|
2002 |
1.4.0|editOnePic.php|1.4.0|1.27|mandatory|r@
|
|
|
2003 |
1.4.0|editpics.php|1.4.0|1.29|mandatory|r@
|
|
|
2004 |
1.4.0|exifmgr.php|1.4.0|1.6|mandatory|r@
|
|
|
2005 |
1.4.0|faq.php|1.4.0|1.5|mandatory|r@
|
|
|
2006 |
1.4.0|forgot_passwd.php|1.4.0|1.12|mandatory|r@
|
|
|
2007 |
1.4.0|getlang.php|1.4.0|1.8|mandatory|r@
|
|
|
2008 |
1.4.0|groupmgr.php|1.4.0|1.19|mandatory|r@
|
|
|
2009 |
1.4.0|hitDetails.php|1.4.0|1.1|mandatory|r@
|
|
|
2010 |
1.4.0|image_processor.php|1.4.0|1.16|mandatory|r@
|
|
|
2011 |
1.4.0|index.php|1.4.0|1.71|mandatory|r@
|
|
|
2012 |
1.4.0|install.php|1.4.0|1.26|mandatory|r@
|
|
|
2013 |
1.4.0|installer.css|1.4.0|1.5|mandatory|r@
|
|
|
2014 |
1.4.0|keyword_create_dict.php|1.4.0|1.3|mandatory|r@
|
|
|
2015 |
1.4.0|keyword_select.php|1.4.0|1.3|mandatory|r@
|
|
|
2016 |
1.4.0|keywordmgr.php|1.4.0|1.4|mandatory|r@
|
|
|
2017 |
1.4.0|login.php|1.4.0|1.18|mandatory|r@
|
|
|
2018 |
1.4.0|logout.php|1.4.0|1.5|mandatory|r@
|
|
|
2019 |
1.4.0|mode.php|1.4.0|1.2|mandatory|r@
|
|
|
2020 |
1.4.0|modifyalb.php|1.4.0|1.23|mandatory|r@
|
|
|
2021 |
1.4.0|phpinfo.php|1.4.0|1.8|mandatory|r@
|
|
|
2022 |
1.4.0|picEditor.php|1.4.0|1.19|mandatory|r@
|
|
|
2023 |
1.4.0|picmgr.php|1.4.0|1.7|mandatory|r@
|
|
|
2024 |
1.4.0|pluginmgr.php|1.4.0|1.12|mandatory|r@
|
|
|
2025 |
1.4.0|profile.php|1.4.0|1.32|mandatory|r@
|
|
|
2026 |
1.4.0|ratepic.php|1.4.0|1.11|mandatory|r@
|
|
|
2027 |
1.4.0|register.php|1.4.0|1.20|mandatory|r@
|
|
|
2028 |
1.4.0|reviewcom.php|1.4.0|1.14|mandatory|r@
|
|
|
2029 |
1.4.0|scripts.js|1.4.0|1.7|mandatory|r@
|
|
|
2030 |
1.4.0|search.php|1.4.0|1.8|mandatory|r@
|
|
|
2031 |
1.4.0|searchnew.php|1.4.0|1.38|mandatory|r@
|
|
|
2032 |
1.4.0|showthumb.php|1.4.0|1.8|mandatory|r@
|
|
|
2033 |
1.4.0|thumbnails.php|1.4.0|1.20|mandatory|r@
|
|
|
2034 |
1.4.0|update.php|1.4.0|1.17|mandatory|r@
|
|
|
2035 |
1.4.0|upgrade-1.0-to-1.2.php|1.4.0|1.7|mandatory|r@
|
|
|
2036 |
1.4.0|upload.php|1.4.0|1.60|mandatory|r@
|
|
|
2037 |
1.4.0|usermgr.php|1.4.0|1.29|mandatory|r@
|
|
|
2038 |
1.4.0|util.php|1.4.0|1.23|mandatory|r@
|
|
|
2039 |
1.4.0|versioncheck.php|1.4.0|1.41|mandatory|r@
|
|
|
2040 |
1.4.0|viewlog.php|1.4.0|1.8|mandatory|r@
|
|
|
2041 |
1.4.0|voteDetails.php|1.4.0|1.1|mandatory|r@
|
|
|
2042 |
1.4.0|xp_publish.php|1.4.0|1.23|mandatory|r@
|
|
|
2043 |
1.4.0|zipdownload.php|1.4.0|1.8|mandatory|r@
|
|
|
2044 |
1.4.0|albums|||mandatory|w@
|
|
|
2045 |
1.4.0|albums/index.html||1.2|mandatory|w@
|
|
|
2046 |
1.4.0|albums/edit/index.html|||mandatory|w@
|
|
|
2047 |
1.4.0|albums/edit|||mandatory|w@
|
|
|
2048 |
1.4.0|albums/edit/index.html|||mandatory|w@
|
|
|
2049 |
1.4.0|albums/userpics|||mandatory|w@
|
|
|
2050 |
1.4.0|albums/userpics/index.html||1.2|mandatory|w@
|
|
|
2051 |
1.4.0|bridge/invisionboard.inc.php|1.4.0|1.19|optional|r@
|
|
|
2052 |
1.4.0|bridge/mambo.inc.php|1.4.0|1.7|optional|r@
|
|
|
2053 |
1.4.0|bridge/phpbb.inc.php|1.4.0|1.29|optional|r@
|
|
|
2054 |
1.4.0|bridge/smf.inc.php|1.4.0|1.27|optional|r@
|
|
|
2055 |
1.4.0|bridge/vbulletin23.inc.php|1.4.0|1.13|optional|r@
|
|
|
2056 |
1.4.0|bridge/vbulletin30.inc.php|1.4.0|1.15|optional|r@
|
|
|
2057 |
1.4.0|bridge/woltlab21.inc.php|1.4.0|1.18|optional|r@
|
|
|
2058 |
1.4.0|bridge/yabbse.inc.php|1.4.0|1.30|optional|r@
|
|
|
2059 |
1.4.0|docs|||mandatory|r@
|
|
|
2060 |
1.4.0|docs/credits.html||1.12|optional|r@
|
|
|
2061 |
1.4.0|docs/faq.htm|||optional|r@
|
|
|
2062 |
1.4.0|docs/index.htm||1.12|mandatory|r@
|
|
|
2063 |
1.4.0|docs/README.html||1.17|optional|r@
|
|
|
2064 |
1.4.0|docs/showdoc.php|1.4.0|1.11|mandatory|r@
|
|
|
2065 |
1.4.0|docs/theme.htm|||optional|r@
|
|
|
2066 |
1.4.0|docs/translation.htm|||optional|r@
|
|
|
2067 |
1.4.0|docs/pics|||mandatory|r@
|
|
|
2068 |
1.4.0|include|||mandatory|w@
|
|
|
2069 |
1.4.0|include/archive.php|1.4.0|1.3|mandatory|r@
|
|
|
2070 |
1.4.0|include/config.inc.php|||mandatory|r@
|
|
|
2071 |
1.4.0|include/crop.inc.php|1.4.0|1.11|mandatory|r@
|
|
|
2072 |
1.4.0|include/debugger.inc.php|1.4.0|1.5|mandatory|r@
|
|
|
2073 |
1.4.0|include/exif.php|1.4.0|1.3|mandatory|r@
|
|
|
2074 |
1.4.0|include/exif_php.inc.php|1.4.0|1.13|mandatory|r@
|
|
|
2075 |
1.4.0|include/exifReader.inc.php|1.4.0|1.5|mandatory|r@
|
|
|
2076 |
1.4.0|include/functions.inc.php|1.4.0|1.134|mandatory|r@
|
|
|
2077 |
1.4.0|include/imageObjectGD.class.php|1.4.0|1.6|mandatory|r@
|
|
|
2078 |
1.4.0|include/imageObjectIM.class.php|1.4.0|1.6|mandatory|r@
|
|
|
2079 |
1.4.0|include/index.html|||mandatory|r@
|
|
|
2080 |
1.4.0|include/init.inc.php|1.4.0|1.71|mandatory|r@
|
|
|
2081 |
1.4.0|include/iptc.inc.php|1.4.0|1.6|mandatory|r@
|
|
|
2082 |
1.4.0|include/keyword.inc.php|1.4.0|1.4|mandatory|r@
|
|
|
2083 |
1.4.0|include/langfallback.inc.php|1.4.0|1.11|mandatory|r@
|
|
|
2084 |
1.4.0|include/logger.inc.php|1.4.0|1.12|mandatory|r@
|
|
|
2085 |
1.4.0|include/mailer.inc.php|1.4.0|1.10|mandatory|r@
|
|
|
2086 |
1.4.0|include/media.functions.inc.php|1.4.0|1.9|mandatory|r@
|
|
|
2087 |
1.4.0|include/picmgmt.inc.php|1.4.0|1.27|mandatory|r@
|
|
|
2088 |
1.4.0|include/plugin_api.inc.php|1.4.0|1.11|mandatory|r@
|
|
|
2089 |
1.4.0|include/search.inc.php|1.4.0|1.11|mandatory|r@
|
|
|
2090 |
1.4.0|include/select_lang.inc.php|1.4.0|1.7|mandatory|r@
|
|
|
2091 |
1.4.0|include/slideshow.inc.php|1.4.0|1.10|mandatory|r@
|
|
|
2092 |
1.4.0|include/smilies.inc.php|1.4.0|1.12|mandatory|r@
|
|
|
2093 |
1.4.0|include/smtp.inc.php|1.4.0|1.2|mandatory|r@
|
|
|
2094 |
1.4.0|include/sql_parse.php|1.4.0|1.5|mandatory|r@
|
|
|
2095 |
1.4.0|include/zip.lib.php|1.4.0|1.2|mandatory|r@
|
|
|
2096 |
1.4.0|include/makers|||mandatory|w@
|
|
|
2097 |
1.4.0|include/makers/canon.php|1.4.0|1.2|mandatory|r@
|
|
|
2098 |
1.4.0|include/makers/fujifilm.php|1.4.0|1.2|mandatory|r@
|
|
|
2099 |
1.4.0|include/makers/gps.php|1.4.0|1.2|mandatory|r@
|
|
|
2100 |
1.4.0|include/makers/nikon.php|1.4.0|1.2|mandatory|r@
|
|
|
2101 |
1.4.0|include/makers/olympus.php|1.4.0|1.2|mandatory|r@
|
|
|
2102 |
1.4.0|include/makers/sanyo.php|1.4.0|1.2|mandatory|r@
|
|
|
2103 |
1.4.0|lang|||mandatory|r@
|
|
|
2104 |
1.4.0|lang/arabic.php|1.3.0|1.5|optional|r@
|
|
|
2105 |
1.4.0|lang/arabic-utf-8.php|1.3.0|1.3|optional|r@
|
|
|
2106 |
1.4.0|lang/brazilian_portuguese.php|1.3.0|1.6|optional|r@
|
|
|
2107 |
1.4.0|lang/brazilian_portuguese-utf-8.php|1.3.0|1.6|optional|r@
|
|
|
2108 |
1.4.0|lang/bulgarian.php|1.3.0|1.5|optional|r@
|
|
|
2109 |
1.4.0|lang/bulgarian-utf-8.php|1.3.2|1.5|optional|r@
|
|
|
2110 |
1.4.0|lang/chinese_big5.php|1.3.2|1.6|optional|r@
|
|
|
2111 |
1.4.0|lang/chinese_big5-utf-8.php|1.3.0|1.6|optional|r@
|
|
|
2112 |
1.4.0|lang/chinese_gb.php|1.3.0|1.5|optional|r@
|
|
|
2113 |
1.4.0|lang/chinese_gb-utf-8.php|1.3.0|1.5|optional|r@
|
|
|
2114 |
1.4.0|lang/catalan.php|1.3.2|1.1|optional|r@
|
|
|
2115 |
1.4.0|lang/catalan-utf-8.php|1.3.2|1.1|optional|r@
|
|
|
2116 |
1.4.0|lang/croatian.php|1.3.0|1.5|optional|r@
|
|
|
2117 |
1.4.0|lang/croatian-utf-8.php|1.3.2|1.6|optional|r@
|
|
|
2118 |
1.4.0|lang/czech.php|1.3.0|1.6|optional|r@
|
|
|
2119 |
1.4.0|lang/czech-utf-8.php|1.3.0|1.6|optional|r@
|
|
|
2120 |
1.4.0|lang/danish.php|1.3.0|1.11|optional|r@
|
|
|
2121 |
1.4.0|lang/danish-utf-8.php|1.3.0|1.6|optional|r@
|
|
|
2122 |
1.4.0|lang/dutch.php|1.3.2|1.12|optional|r@
|
|
|
2123 |
1.4.0|lang/dutch-utf-8.php|1.3.2|1.12|optional|r@
|
|
|
2124 |
1.4.0|lang/english.php|1.4.0|1.211|mandatory|r@
|
|
|
2125 |
1.4.0|lang/english-utf-8.php|1.3.0|1.14|mandatory|r@
|
|
|
2126 |
1.4.0|lang/estonian.php|1.3.2|1.6|optional|r@
|
|
|
2127 |
1.4.0|lang/estonian-utf-8.php|1.3.2|1.5|optional|r@
|
|
|
2128 |
1.4.0|lang/finnish.php|1.3.0|1.5|optional|r@
|
|
|
2129 |
1.4.0|lang/finnish-utf-8.php|1.3.0|1.5|optional|r@
|
|
|
2130 |
1.4.0|lang/french.php|1.3.2|1.18|optional|r@
|
|
|
2131 |
1.4.0|lang/french-utf-8.php|1.3.2|1.16|optional|r@
|
|
|
2132 |
1.4.0|lang/german.php|1.3.2|1.19|optional|r@
|
|
|
2133 |
1.4.0|lang/german-utf-8.php|1.3.2|1.20|optional|r@
|
|
|
2134 |
1.4.0|lang/german_sie.php|1.3.2|1.2|optional|r@
|
|
|
2135 |
1.4.0|lang/german_sie-utf-8.php|1.3.2|1.2|optional|r@
|
|
|
2136 |
1.4.0|lang/greek.php|1.3.0|1.7|optional|r@
|
|
|
2137 |
1.4.0|lang/greek-utf-8.php|1.3.0|1.7|optional|r@
|
|
|
2138 |
1.4.0|lang/hebrew.php|1.3.0|1.6|optional|r@
|
|
|
2139 |
1.4.0|lang/hebrew-utf-8.php|1.3.0|1.8|optional|r@
|
|
|
2140 |
1.4.0|lang/hungarian.php|1.3.0|1.8|optional|r@
|
|
|
2141 |
1.4.0|lang/hungarian-utf-8.php|1.3.0|1.9|optional|r@
|
|
|
2142 |
1.4.0|lang/indonesian.php|1.3.0|1.5|optional|r@
|
|
|
2143 |
1.4.0|lang/indonesian-utf-8.php|1.3.0|1.6|optional|r@
|
|
|
2144 |
1.4.0|lang/italian.php|1.3.0|1.7|optional|r@
|
|
|
2145 |
1.4.0|lang/italian2.php|1.3.0|1.1|optional|r@
|
|
|
2146 |
1.4.0|lang/italian2-utf-8.php|1.3.0|1.1|optional|r@
|
|
|
2147 |
1.4.0|lang/italian-utf-8.php|1.3.0|1.7|optional|r@
|
|
|
2148 |
1.4.0|lang/japanese.php|1.3.0|1.5|optional|r@
|
|
|
2149 |
1.4.0|lang/japanese-utf-8.php|1.3.0|1.6|optional|r@
|
|
|
2150 |
1.4.0|lang/latvian.php|1.3.0|1.7|optional|r@
|
|
|
2151 |
1.4.0|lang/latvian-utf-8.php|1.3.0|1.5|optional|r@
|
|
|
2152 |
1.4.0|lang/malay.php|1.3.0|1.1|optional|r@
|
|
|
2153 |
1.4.0|lang/malay-utf-8.php|1.3.0|1.1|optional|r@
|
|
|
2154 |
1.4.0|lang/norwegian.php|1.4.0|1.8|optional|r@
|
|
|
2155 |
1.4.0|lang/norwegian-utf-8.php|1.4.0|1.8|optional|r@
|
|
|
2156 |
1.4.0|lang/polish.php|1.3.0|1.4|optional|r@
|
|
|
2157 |
1.4.0|lang/polish-utf-8.php|1.3.0|1.3|optional|r@
|
|
|
2158 |
1.4.0|lang/romanian.php|1.4.0|1.4|optional|r@
|
|
|
2159 |
1.4.0|lang/romanian-utf-8.php|1.4.0|1.4|optional|r@
|
|
|
2160 |
1.4.0|lang/romanian_no_diacritics.php|1.4.0|1.1|optional|r@
|
|
|
2161 |
1.4.0|lang/romanian_no_diacritics-utf-8.php|1.4.0|1.1|optional|r@
|
|
|
2162 |
1.4.0|lang/russian.php|1.3.2|1.7|optional|r@
|
|
|
2163 |
1.4.0|lang/russian-utf-8.php|1.3.2|1.7|optional|r@
|
|
|
2164 |
1.4.0|lang/slovak.php|1.3.2|1.2|optional|r@
|
|
|
2165 |
1.4.0|lang/slovak-utf-8.php|1.3.2|1.2|optional|r@
|
|
|
2166 |
1.4.0|lang/slovenian.php|1.3.0|1.10|optional|r@
|
|
|
2167 |
1.4.0|lang/slovenian-utf-8.php|1.3.0|1.8|optional|r@
|
|
|
2168 |
1.4.0|lang/spanish.php|1.3.0|1.8|optional|r@
|
|
|
2169 |
1.4.0|lang/spanish-utf-8.php|1.3.0|1.8|optional|r@
|
|
|
2170 |
1.4.0|lang/swedish.php|1.3.0|1.6|optional|r@
|
|
|
2171 |
1.4.0|lang/swedish-utf-8.php|1.3.0|1.5|optional|r@
|
|
|
2172 |
1.4.0|lang/turkish.php|1.3.2|1.5|optional|r@
|
|
|
2173 |
1.4.0|lang/turkish-utf-8.php|1.3.2|1.5|optional|r@
|
|
|
2174 |
1.4.0|lang/uighur.php|1.3.2|1.2|optional|r@
|
|
|
2175 |
1.4.0|lang/uighur-utf-8.php|1.3.2|1.2|optional|r@
|
|
|
2176 |
1.4.0|lang/vietnamese.php|1.3.2|1.1|optional|r@
|
|
|
2177 |
1.4.0|lang/vietnamese-utf-8.php|1.3.2|1.1|optional|r@
|
|
|
2178 |
1.4.0|logs|||mandatory|w@
|
|
|
2179 |
1.4.0|logs/log_header.inc.php|1.4.0|1.3|mandatory|r@
|
|
|
2180 |
1.4.0|plugins|||optional|r@
|
|
|
2181 |
1.4.0|plugins/sample|||optional|r@
|
|
|
2182 |
1.4.0|plugins/sample/codebase.php|1.4.0|1.4|optional|r@
|
|
|
2183 |
1.4.0|plugins/sample/credits.php|1.4.0|1.2|optional|r@
|
|
|
2184 |
1.4.0|plugins/sef_urls|||optional|r@
|
|
|
2185 |
1.4.0|plugins/sef_urls/codebase.php|1.4.0|1.4|optional|r@
|
|
|
2186 |
1.4.0|plugins/sef_urls/credits.php|1.4.0|1.2|optional|r@
|
|
|
2187 |
1.4.0|plugins/sef_urls/ht.txt|||optional|r@
|
|
|
2188 |
1.4.0|sql|||mandatory|r@
|
|
|
2189 |
1.4.0|sql/basic.sql||1.49|mandatory|r@
|
|
|
2190 |
1.4.0|sql/schema.sql||1.23|mandatory|r@
|
|
|
2191 |
1.4.0|sql/update.sql||1.74|mandatory|r@
|
|
|
2192 |
1.4.0|themes|||mandatory|r@
|
|
|
2193 |
1.4.0|themes/classic|||optional|r@
|
|
|
2194 |
1.4.0|themes/classic/style.css||1.8|optional|r@
|
|
|
2195 |
1.4.0|themes/classic/template.html||1.9|optional|r@
|
|
|
2196 |
1.4.0|themes/classic/theme.php|1.4.0|1.31|optional|r@
|
|
|
2197 |
1.4.0|themes/classic/images|||optional|r@
|
|
|
2198 |
1.4.0|themes/eyeball|||optional|r@
|
|
|
2199 |
1.4.0|themes/eyeball/style.css||1.14|optional|r@
|
|
|
2200 |
1.4.0|themes/eyeball/template.html||1.8|optional|r@
|
|
|
2201 |
1.4.0|themes/eyeball/theme.php|1.4.0|1.52|optional|r@
|
|
|
2202 |
1.4.0|themes/eyeball/images|||optional|r@
|
|
|
2203 |
1.4.0|themes/fruity|||optional|r@
|
|
|
2204 |
1.4.0|themes/fruity/style.css||1.13|optional|r@
|
|
|
2205 |
1.4.0|themes/fruity/template.html||1.8|optional|r@
|
|
|
2206 |
1.4.0|themes/fruity/theme.php|1.4.0|1.50|optional|r@
|
|
|
2207 |
1.4.0|themes/fruity/images|||optional|r@
|
|
|
2208 |
1.4.0|themes/hardwired|||optional|r@
|
|
|
2209 |
1.4.0|themes/hardwired/style.css||1.16|optional|r@
|
|
|
2210 |
1.4.0|themes/hardwired/template.html||1.9|optional|r@
|
|
|
2211 |
1.4.0|themes/hardwired/theme.php|1.4.0|1.52|optional|r@
|
|
|
2212 |
1.4.0|themes/hardwired/images|||optional|r@
|
|
|
2213 |
1.4.0|themes/igames|||optional|r@
|
|
|
2214 |
1.4.0|themes/igames/style.css||1.15|optional|r@
|
|
|
2215 |
1.4.0|themes/igames/template.html||1.9|optional|r@
|
|
|
2216 |
1.4.0|themes/igames/theme.php|1.4.0|1.54|optional|r@
|
|
|
2217 |
1.4.0|themes/igames/images|||optional|r@
|
|
|
2218 |
1.4.0|themes/mac_ox_x|||optional|r@
|
|
|
2219 |
1.4.0|themes/mac_ox_x/style.css||1.14|optional|r@
|
|
|
2220 |
1.4.0|themes/mac_ox_x/template.html||1.8|optional|r@
|
|
|
2221 |
1.4.0|themes/mac_ox_x/theme.php|1.4.0|1.50|optional|r@
|
|
|
2222 |
1.4.0|themes/mac_ox_x/images|||optional|r@
|
|
|
2223 |
1.4.0|themes/classic|||optional|r@
|
|
|
2224 |
1.4.0|themes/project_vii/style.css||1.17|optional|r@
|
|
|
2225 |
1.4.0|themes/project_vii/template.html||1.7|optional|r@
|
|
|
2226 |
1.4.0|themes/project_vii/theme.php|1.4.0|1.52|optional|r@
|
|
|
2227 |
1.4.0|themes/project_vii/images|||optional|r@
|
|
|
2228 |
1.4.0|themes/rainy_day|||optional|r@
|
|
|
2229 |
1.4.0|themes/rainy_day/style.css||1.15|optional|r@
|
|
|
2230 |
1.4.0|themes/rainy_day/template.html||1.6|optional|r@
|
|
|
2231 |
1.4.0|themes/rainy_day/theme.php|1.4.0|1.55|optional|r@
|
|
|
2232 |
1.4.0|themes/rainy_day/images|||optional|r@
|
|
|
2233 |
1.4.0|themes/styleguide|||optional|r@
|
|
|
2234 |
1.4.0|themes/styleguide/domLib.js|||optional|r@
|
|
|
2235 |
1.4.0|themes/styleguide/domTT.js|||optional|r@
|
|
|
2236 |
1.4.0|themes/styleguide/readme.htm||1.2|optional|r@
|
|
|
2237 |
1.4.0|themes/styleguide/template.html||1.4|optional|r@
|
|
|
2238 |
1.4.0|themes/styleguide/theme.php|1.4.0|1.34|optional|r@
|
|
|
2239 |
1.4.0|themes/styleguide/images|||optional|r@
|
|
|
2240 |
1.4.0|themes/water_drop|||optional|r@
|
|
|
2241 |
1.4.0|themes/water_drop/style.css||1.14|optional|r@
|
|
|
2242 |
1.4.0|themes/water_drop/theme.php|1.4.0|1.52|optional|r@
|
|
|
2243 |
1.4.0|themes/water_drop/images|||optional|r@
|
|
|
2244 |
1.4.1|addfav.php|1.4.1|1.17|mandatory|r@
|
|
|
2245 |
1.4.1|addpic.php|1.4.1|1.13|mandatory|r@
|
|
|
2246 |
1.4.1|admin.php|1.4.1|1.24|mandatory|r@
|
|
|
2247 |
1.4.1|albmgr.php|1.4.1|1.16|mandatory|r@
|
|
|
2248 |
1.4.1|anycontent.php|1.4.1|1.13|mandatory|r@
|
|
|
2249 |
1.4.1|banning.php|1.4.1|1.25|mandatory|r@
|
|
|
2250 |
1.4.1|bridgemgr.php|1.4.1|1.22|mandatory|r@
|
|
|
2251 |
1.4.1|calendar.php|1.4.1|1.11|mandatory|r@
|
|
|
2252 |
1.4.1|catmgr.php|1.4.1|1.25|mandatory|r@
|
|
|
2253 |
1.4.1|db_ecard.php|1.4.1|1.13|mandatory|r@
|
|
|
2254 |
1.4.1|db_input.php|1.4.1|1.49|mandatory|r@
|
|
|
2255 |
1.4.1|delete.php|1.4.1|1.23|mandatory|r@
|
|
|
2256 |
1.4.1|displayecard.php|1.4.1|1.13|mandatory|r@
|
|
|
2257 |
1.4.1|displayimage.php|1.4.1|1.98|mandatory|r@
|
|
|
2258 |
1.4.1|ecard.php|1.4.1|1.32|mandatory|r@
|
|
|
2259 |
1.4.1|editOnePic.php|1.4.1|1.37|mandatory|r@
|
|
|
2260 |
1.4.1|editpics.php|1.4.1|1.36|mandatory|r@
|
|
|
2261 |
1.4.1|exifmgr.php|1.4.1|1.9|mandatory|r@
|
|
|
2262 |
1.4.1|faq.php|1.4.1|1.7|mandatory|r@
|
|
|
2263 |
1.4.1|forgot_passwd.php|1.4.1|1.18|mandatory|r@
|
|
|
2264 |
1.4.1|getlang.php|1.4.1|1.10|mandatory|r@
|
|
|
2265 |
1.4.1|groupmgr.php|1.4.1|1.29|mandatory|r@
|
|
|
2266 |
1.4.1|image_processor.php|1.4.1|1.19|mandatory|r@
|
|
|
2267 |
1.4.1|index.php|1.4.1|1.84|mandatory|r@
|
|
|
2268 |
1.4.1|install.php|1.4.1|1.31|mandatory|r@
|
|
|
2269 |
1.4.1|installer.css|1.4.1|1.11|mandatory|r@
|
|
|
2270 |
1.4.1|keyword_create_dict.php|1.4.1|1.7|mandatory|r@
|
|
|
2271 |
1.4.1|keyword_select.php|1.4.1|1.7|mandatory|r@
|
|
|
2272 |
1.4.1|keywordmgr.php|1.4.1|1.8|mandatory|r@
|
|
|
2273 |
1.4.1|login.php|1.4.1|1.25|mandatory|r@
|
|
|
2274 |
1.4.1|logout.php|1.4.1|1.9|mandatory|r@
|
|
|
2275 |
1.4.1|mode.php|1.4.1|1.4|mandatory|r@
|
|
|
2276 |
1.4.1|modifyalb.php|1.4.1|1.29|mandatory|r@
|
|
|
2277 |
1.4.1|phpinfo.php|1.4.1|1.10|mandatory|r@
|
|
|
2278 |
1.4.1|picEditor.php|1.4.1|1.21|mandatory|r@
|
|
|
2279 |
1.4.1|picmgr.php|1.4.1|1.17|mandatory|r@
|
|
|
2280 |
1.4.1|pluginmgr.php|1.4.1|1.17|mandatory|r@
|
|
|
2281 |
1.4.1|profile.php|1.4.1|1.41|mandatory|r@
|
|
|
2282 |
1.4.1|ratepic.php|1.4.1|1.13|mandatory|r@
|
|
|
2283 |
1.4.1|register.php|1.4.1|1.30|mandatory|r@
|
|
|
2284 |
1.4.1|relocate_server.php|1.4.1|1.4|optional|r@
|
|
|
2285 |
1.4.1|reviewcom.php|1.4.1|1.19|mandatory|r@
|
|
|
2286 |
1.4.1|scripts.js|1.4.1|1.13|mandatory|r@
|
|
|
2287 |
1.4.1|search.php|1.4.1|1.15|mandatory|r@
|
|
|
2288 |
1.4.1|searchnew.php|1.4.1|1.46|mandatory|r@
|
|
|
2289 |
1.4.1|showthumb.php|1.4.1|1.10|mandatory|r@
|
|
|
2290 |
1.4.1|stat_details.php|1.4.1|1.1|mandatory|r@
|
|
|
2291 |
1.4.1|thumbnails.php|1.4.1|1.28|mandatory|r@
|
|
|
2292 |
1.4.1|update.php|1.4.1|1.22|mandatory|r@
|
|
|
2293 |
1.4.1|upgrade-1.0-to-1.2.php|1.4.1|1.9|mandatory|r@
|
|
|
2294 |
1.4.1|upload.php|1.4.1|1.66|mandatory|r@
|
|
|
2295 |
1.4.1|usermgr.php|1.4.1|1.45|mandatory|r@
|
|
|
2296 |
1.4.1|util.php|1.4.1|1.28|mandatory|r@
|
|
|
2297 |
1.4.1|versioncheck.php|1.4.1|1.57|mandatory|r@
|
|
|
2298 |
1.4.1|viewlog.php|1.4.1|1.10|mandatory|r@
|
|
|
2299 |
1.4.1|xp_publish.php|1.4.1|1.27|mandatory|r@
|
|
|
2300 |
1.4.1|zipdownload.php|1.4.1|1.10|mandatory|r@
|
|
|
2301 |
1.4.1|**fullpath**|||mandatory|w@
|
|
|
2302 |
1.4.1|**fullpath**/index.php|||mandatory|w@
|
|
|
2303 |
1.4.1|**fullpath**/edit/index.html|||mandatory|w@
|
|
|
2304 |
1.4.1|**fullpath**/edit|||mandatory|w@
|
|
|
2305 |
1.4.1|**fullpath**/edit/index.html|||mandatory|w@
|
|
|
2306 |
1.4.1|**fullpath**/**userpics**|||mandatory|w@
|
|
|
2307 |
1.4.1|**fullpath**/**userpics**/index.php|||mandatory|w@
|
|
|
2308 |
1.4.1|bridge/invisionboard20.inc.php|1.4.1|1.6|optional|r@
|
|
|
2309 |
1.4.1|bridge/mambo.inc.php|1.4.1|1.15|optional|r@
|
|
|
2310 |
1.4.1|bridge/phpbb.inc.php|1.4.1|1.38|optional|r@
|
|
|
2311 |
1.4.1|bridge/phpbb22.inc.php|1.4.1|1.10|optional|r@
|
|
|
2312 |
1.4.1|bridge/punbb115.inc.php|1.4.1|1.5|optional|r@
|
|
|
2313 |
1.4.1|bridge/punbb12.inc.php|1.4.1|1.12|optional|r@
|
|
|
2314 |
1.4.1|bridge/smf10.inc.php|1.4.1|1.11|optional|r@
|
|
|
2315 |
1.4.1|bridge/udb_base.inc.php|1.4.1|1.9|optional|r@
|
|
|
2316 |
1.4.1|bridge/vbulletin30.inc.php|1.4.1|1.23|optional|r@
|
|
|
2317 |
1.4.1|docs|||mandatory|r@
|
|
|
2318 |
1.4.1|docs/credits.html||1.12|optional|r@
|
|
|
2319 |
1.4.1|docs/faq.htm|||optional|r@
|
|
|
2320 |
1.4.1|docs/index.htm||1.12|mandatory|r@
|
|
|
2321 |
1.4.1|docs/README.html||1.17|optional|r@
|
|
|
2322 |
1.4.1|docs/showdoc.php|1.4.1|1.13|mandatory|r@
|
|
|
2323 |
1.4.1|docs/theme.htm||1.15|optional|r@
|
|
|
2324 |
1.4.1|docs/translation.htm|||optional|r@
|
|
|
2325 |
1.4.1|docs/pics|||mandatory|r@
|
|
|
2326 |
1.4.1|include|||mandatory|w@
|
|
|
2327 |
1.4.1|include/archive.php|1.4.1|1.5|mandatory|r@
|
|
|
2328 |
1.4.1|include/config.inc.php|||mandatory|r@
|
|
|
2329 |
1.4.1|include/crop.inc.php|1.4.1|1.12|mandatory|r@
|
|
|
2330 |
1.4.1|include/debugger.inc.php|1.4.1|1.9|mandatory|r@
|
|
|
2331 |
1.4.1|include/exif.php|1.4.1|1.6|mandatory|r@
|
|
|
2332 |
1.4.1|include/exif_php.inc.php|1.4.1|1.15|mandatory|r@
|
|
|
2333 |
1.4.1|include/exifReader.inc.php|1.4.1|1.8|mandatory|r@
|
|
|
2334 |
1.4.1|include/functions.inc.php|1.4.1|1.184|mandatory|r@
|
|
|
2335 |
1.4.1|include/imageObjectGD.class.php|1.4.1|1.8|mandatory|r@
|
|
|
2336 |
1.4.1|include/imageObjectIM.class.php|1.4.1|1.8|mandatory|r@
|
|
|
2337 |
1.4.1|include/index.html|1.4.1|1.2|mandatory|r@
|
|
|
2338 |
1.4.1|include/init.inc.php|1.4.1|1.91|mandatory|r@
|
|
|
2339 |
1.4.1|include/iptc.inc.php|1.4.1|1.11|mandatory|r@
|
|
|
2340 |
1.4.1|include/keyword.inc.php|1.4.1|1.9|mandatory|r@
|
|
|
2341 |
1.4.1|include/langfallback.inc.php|1.4.1|1.22|mandatory|r@
|
|
|
2342 |
1.4.1|include/logger.inc.php|1.4.1|1.14|mandatory|r@
|
|
|
2343 |
1.4.1|include/mailer.inc.php|1.4.1|1.16|mandatory|r@
|
|
|
2344 |
1.4.1|include/media.functions.inc.php|1.4.1|1.12|mandatory|r@
|
|
|
2345 |
1.4.1|include/picmgmt.inc.php|1.4.1|1.31|mandatory|r@
|
|
|
2346 |
1.4.1|include/plugin_api.inc.php|1.4.1|1.18|mandatory|r@
|
|
|
2347 |
1.4.1|include/search.inc.php|1.4.1|1.20|mandatory|r@
|
|
|
2348 |
1.4.1|include/select_lang.inc.php|1.4.1|1.10|mandatory|r@
|
|
|
2349 |
1.4.1|include/slideshow.inc.php|1.4.1|1.12|mandatory|r@
|
|
|
2350 |
1.4.1|include/smilies.inc.php|1.4.1|1.17|mandatory|r@
|
|
|
2351 |
1.4.1|include/smtp.inc.php|1.4.1|1.4|mandatory|r@
|
|
|
2352 |
1.4.1|include/sql_parse.php|1.4.1|1.7|mandatory|r@
|
|
|
2353 |
1.4.1|include/themes.inc.php|1.4.1|1.29|mandatory|r@
|
|
|
2354 |
1.4.1|include/zip.lib.php|1.4.1|1.4|mandatory|r@
|
|
|
2355 |
1.4.1|include/makers|||mandatory|w@
|
|
|
2356 |
1.4.1|include/makers/canon.php|1.4.1|1.6|mandatory|r@
|
|
|
2357 |
1.4.1|include/makers/fujifilm.php|1.4.1|1.6|mandatory|r@
|
|
|
2358 |
1.4.1|include/makers/gps.php|1.4.1|1.6|mandatory|r@
|
|
|
2359 |
1.4.1|include/makers/nikon.php|1.4.1|1.6|mandatory|r@
|
|
|
2360 |
1.4.1|include/makers/olympus.php|1.4.1|1.6|mandatory|r@
|
|
|
2361 |
1.4.1|include/makers/sanyo.php|1.4.1|1.6|mandatory|r@
|
|
|
2362 |
1.4.1|lang|||mandatory|r@
|
|
|
2363 |
1.4.1|lang/arabic.php|1.4.1|1.6|optional|r@
|
|
|
2364 |
1.4.1|lang/brazilian_portuguese.php|1.4.1|1.8|optional|r@
|
|
|
2365 |
1.4.1|lang/bulgarian.php|1.4.1|1.6|optional|r@
|
|
|
2366 |
1.4.1|lang/chinese_big5.php|1.4.1|1.8|optional|r@
|
|
|
2367 |
1.4.1|lang/chinese_gb.php|1.4.1|1.7|optional|r@
|
|
|
2368 |
1.4.1|lang/catalan.php|1.4.1|1.3|optional|r@
|
|
|
2369 |
1.4.1|lang/croatian.php|1.4.1|1.6|optional|r@
|
|
|
2370 |
1.4.1|lang/czech.php|1.4.1|1.7|optional|r@
|
|
|
2371 |
1.4.1|lang/danish.php|1.4.1|1.13|optional|r@
|
|
|
2372 |
1.4.1|lang/dutch.php|1.4.1|1.14|optional|r@
|
|
|
2373 |
1.4.1|lang/english.php|1.4.1|1.278|mandatory|r@
|
|
|
2374 |
1.4.1|lang/estonian.php|1.4.1|1.7|optional|r@
|
|
|
2375 |
1.4.1|lang/finnish.php|1.4.1|1.7|optional|r@
|
|
|
2376 |
1.4.1|lang/french.php|1.4.1|1.21|optional|r@
|
|
|
2377 |
1.4.1|lang/german.php|1.4.1|1.21|optional|r@
|
|
|
2378 |
1.4.1|lang/german_sie.php|1.4.1|1.4|optional|r@
|
|
|
2379 |
1.4.1|lang/greek.php|1.4.1|1.8|optional|r@
|
|
|
2380 |
1.4.1|lang/hebrew.php|1.4.1|1.7|optional|r@
|
|
|
2381 |
1.4.1|lang/hungarian.php|1.4.1|1.9|optional|r@
|
|
|
2382 |
1.4.1|lang/indonesian.php|1.4.1|1.7|optional|r@
|
|
|
2383 |
1.4.1|lang/italian.php|1.4.1|1.9|optional|r@
|
|
|
2384 |
1.4.1|lang/italian2.php|1.4.1|1.3|optional|r@
|
|
|
2385 |
1.4.1|lang/japanese.php|1.4.1|1.6|optional|r@
|
|
|
2386 |
1.4.1|lang/latvian.php|1.4.1|1.8|optional|r@
|
|
|
2387 |
1.4.1|lang/malay.php|1.4.1|1.3|optional|r@
|
|
|
2388 |
1.4.1|lang/norwegian.php|1.4.1|1.10|optional|r@
|
|
|
2389 |
1.4.1|lang/persian.php|1.3.2|1.1|optional|r@
|
|
|
2390 |
1.4.1|lang/polish.php|1.4.1|1.5|optional|r@
|
|
|
2391 |
1.4.1|lang/romanian.php|1.4.1|1.5|optional|r@
|
|
|
2392 |
1.4.1|lang/romanian_no_diacritics.php|1.4.1|1.2|optional|r@
|
|
|
2393 |
1.4.1|lang/russian.php|1.4.1|1.8|optional|r@
|
|
|
2394 |
1.4.1|lang/slovak.php|1.4.1|1.3|optional|r@
|
|
|
2395 |
1.4.1|lang/slovenian.php|1.4.1|1.11|optional|r@
|
|
|
2396 |
1.4.1|lang/spanish.php|1.4.1|1.10|optional|r@
|
|
|
2397 |
1.4.1|lang/swedish.php|1.4.1|1.8|optional|r@
|
|
|
2398 |
1.4.1|lang/thai.php|1.3.2|1.5|optional|r@
|
|
|
2399 |
1.4.1|lang/turkish.php|1.4.1|1.6|optional|r@
|
|
|
2400 |
1.4.1|lang/uighur.php|1.4.1|1.3|optional|r@
|
|
|
2401 |
1.4.1|lang/vietnamese.php|1.4.1|1.3|optional|r@
|
|
|
2402 |
1.4.1|lang/welsh.php|1.3.2|1.2|optional|r@
|
|
|
2403 |
1.4.1|logs|||mandatory|w@
|
|
|
2404 |
1.4.1|logs/log_header.inc.php|1.4.1|1.5|mandatory|r@
|
|
|
2405 |
1.4.1|plugins|||optional|r@
|
|
|
2406 |
1.4.1|plugins/sample|||optional|r@
|
|
|
2407 |
1.4.1|plugins/sample/codebase.php|1.4.1|1.8|optional|r@
|
|
|
2408 |
1.4.1|plugins/sample/configuration.php|1.4.1|1.1|optional|r@
|
|
|
2409 |
1.4.1|plugins/sef_urls|||optional|r@
|
|
|
2410 |
1.4.1|plugins/sef_urls/codebase.php|1.4.1|1.7|optional|r@
|
|
|
2411 |
1.4.1|plugins/sef_urls/configuration.php|1.4.1|1.1|optional|r@
|
|
|
2412 |
1.4.1|plugins/sef_urls/ht.txt|1.4.1|1.3|optional|r@
|
|
|
2413 |
1.4.1|sql|||mandatory|r@
|
|
|
2414 |
1.4.1|sql/basic.sql|1.4.1|1.86|mandatory|r@
|
|
|
2415 |
1.4.1|sql/schema.sql|1.4.1|1.37|mandatory|r@
|
|
|
2416 |
1.4.1|sql/update.sql|1.4.1|1.115|mandatory|r@
|
|
|
2417 |
1.4.1|themes|||mandatory|r@
|
|
|
2418 |
1.4.1|themes/classic|||optional|r@
|
|
|
2419 |
1.4.1|themes/classic/style.css|1.4.1|1.16|optional|r@
|
|
|
2420 |
1.4.1|themes/classic/template.html||1.9|optional|r@
|
|
|
2421 |
1.4.1|themes/classic/theme.php|1.4.1|1.70|optional|r@
|
|
|
2422 |
1.4.1|themes/classic/images|||optional|r@
|
|
|
2423 |
1.4.1|themes/eyeball|||optional|r@
|
|
|
2424 |
1.4.1|themes/eyeball/style.css|1.4.1|1.21|optional|r@
|
|
|
2425 |
1.4.1|themes/eyeball/template.html||1.8|optional|r@
|
|
|
2426 |
1.4.1|themes/eyeball/theme.php|1.4.1|1.64|optional|r@
|
|
|
2427 |
1.4.1|themes/eyeball/images|||optional|r@
|
|
|
2428 |
1.4.1|themes/fruity|||optional|r@
|
|
|
2429 |
1.4.1|themes/fruity/style.css|1.4.1|1.20|optional|r@
|
|
|
2430 |
1.4.1|themes/fruity/template.html||1.8|optional|r@
|
|
|
2431 |
1.4.1|themes/fruity/theme.php|1.4.1|1.61|optional|r@
|
|
|
2432 |
1.4.1|themes/fruity/images|||optional|r@
|
|
|
2433 |
1.4.1|themes/hardwired|||optional|r@
|
|
|
2434 |
1.4.1|themes/hardwired/style.css|1.4.1|1.23|optional|r@
|
|
|
2435 |
1.4.1|themes/hardwired/template.html||1.9|optional|r@
|
|
|
2436 |
1.4.1|themes/hardwired/theme.php|1.4.1|1.66|optional|r@
|
|
|
2437 |
1.4.1|themes/hardwired/images|||optional|r@
|
|
|
2438 |
1.4.1|themes/igames|||optional|r@
|
|
|
2439 |
1.4.1|themes/igames/style.css|1.4.1|1.23|optional|r@
|
|
|
2440 |
1.4.1|themes/igames/template.html||1.9|optional|r@
|
|
|
2441 |
1.4.1|themes/igames/theme.php|1.4.1|1.67|optional|r@
|
|
|
2442 |
1.4.1|themes/igames/images|||optional|r@
|
|
|
2443 |
1.4.1|themes/mac_ox_x|||optional|r@
|
|
|
2444 |
1.4.1|themes/mac_ox_x/style.css|1.4.1|1.21|optional|r@
|
|
|
2445 |
1.4.1|themes/mac_ox_x/template.html||1.8|optional|r@
|
|
|
2446 |
1.4.1|themes/mac_ox_x/theme.php|1.4.1|1.62|optional|r@
|
|
|
2447 |
1.4.1|themes/mac_ox_x/images|||optional|r@
|
|
|
2448 |
1.4.1|themes/classic|||optional|r@
|
|
|
2449 |
1.4.1|themes/project_vii/style.css|1.4.1|1.25|optional|r@
|
|
|
2450 |
1.4.1|themes/project_vii/template.html||1.7|optional|r@
|
|
|
2451 |
1.4.1|themes/project_vii/theme.php|1.4.1|1.61|optional|r@
|
|
|
2452 |
1.4.1|themes/project_vii/images|||optional|r@
|
|
|
2453 |
1.4.1|themes/rainy_day|||optional|r@
|
|
|
2454 |
1.4.1|themes/rainy_day/style.css|1.4.1|1.22|optional|r@
|
|
|
2455 |
1.4.1|themes/rainy_day/template.html||1.6|optional|r@
|
|
|
2456 |
1.4.1|themes/rainy_day/theme.php|1.4.1|1.64|optional|r@
|
|
|
2457 |
1.4.1|themes/rainy_day/images|||optional|r@
|
|
|
2458 |
1.4.1|themes/sample|||optional|r@
|
|
|
2459 |
1.4.1|themes/sample/style.css|1.4.1|1.1|optional|r@
|
|
|
2460 |
1.4.1|themes/sample/template.html|||optional|r@
|
|
|
2461 |
1.4.1|themes/sample/theme.php|1.4.1|1.1|optional|r@
|
|
|
2462 |
1.4.1|themes/sample/images|||optional|r@
|
|
|
2463 |
1.4.1|themes/water_drop|||optional|r@
|
|
|
2464 |
1.4.1|themes/water_drop/style.css|1.4.1|1.21|optional|r@
|
|
|
2465 |
1.4.1|themes/water_drop/template.html||1.15|optional|r@
|
|
|
2466 |
1.4.1|themes/water_drop/theme.php|1.4.1|1.64|optional|r@
|
|
|
2467 |
1.4.1|themes/water_drop/images|||optional|r@
|
|
|
2468 |
';
|
|
|
2469 |
return $return;
|
|
|
2470 |
}
|
|
|
2471 |
|
|
|
2472 |
?>
|