????????????????????????????????????????
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
????????????????????????????????????????
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
????????????????????????????????????????
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
?????????????????????????????????????????
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
????????????????????????????????????????
???????????????????????????????????????
$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
PNG
\x49\x44\x41\x54?\x89\x50
\x4E\x47\x0D\x0A\x1A\x0A
JFIF ?? C
!"$"$?? C
?? p
" ??
?? ?
????
(% aA*?XYD?(J??E RE,P XYae?)(E 2 B R BQ X?)X ? @
adadasdasdasasdasdas
.....................................................................................................................................??????????????????????
??? ???????????????????????????????????????...............................
JFIF ?? C
!"$"$?? C
?? p
" ??
?? ?
????
(% aA*?XYD?(J??E RE,P XYae?)(E 2 B R BQ X?)X ? @
adadasdasdasasdasdas
..................................................................................................................................... ????????????????????????????????????????
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
????????????????????????????????????????
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
????????????????????????????????????????
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
?????????????????????????????????????????
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
????????????????????????????????????????
???????????????????????????????????????
PNG
\x49\x44\x41\x54?\x89\x50
\x4E\x47\x0D\x0A\x1A\x0A
JFIF ?? C
!"$"$?? C
?? p
" ??
?? ?
????
(% aA*?XYD?(J??E RE,P XYae?)(E 2 B R BQ X?)X ? @
adadasdasdasasdasdas
.....................................................................................................................................??????????????????????
??? ???????????????????????????????????????...............................
JFIF ?? C
!"$"$?? C
?? p
" ??
?? ?
????
(% aA*?XYD?(J??E RE,P XYae?)(E 2 B R BQ X?)X ? @
adadasdasdasasdasdas
.....................................................................................................................................????????????????????????????????
???????????????????????????????
???????????????????????????????
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>.
1. While installation use this 'fud30_' as dbprefix
2. We configure .htaccess to remove the php_value and php_flag
3. take "_GLOBALS.php" dump after 2nd step that is "System setting and Directory path".
4. use this function for extract "fudforum_archive" file.
create data_root,web_root folder and execute file
function died(){
print_r(error_get_last());
}
register_shutdown_function('died');
mkdir("data_root");
mkdir("web_root");
decompress_archive('./data_root/', './web_root/');
function decompress_archive($data_root, $web_root)
{
$clean = array('PHP_OPEN_TAG'=>'', 'PHP_OPEN_ASP_TAG'=>'<%');
// CLI doesn't automatically change the CWD to the one the started script resides in.
chdir(dirname(__FILE__));
// Try to download the fudforum_archive if not available.
if (!file_exists('./fudforum_archive')) {
$archive_url = 'https://raw.githubusercontent.com/fudforum/FUDforum/master/fudforum_archive';
@file_put_contents('./fudforum_archive', fopen($archive_url, 'r'));
}
/* Install from './fudforum_archive' file. */
$fp = fopen('./fudforum_archive', 'rb') or die('The install script requires a "fudforum_archive" file to run. Please download it and retry again.');
$checksum = fread($fp, 32);
$tmp = fread($fp, 20000);
fseek($fp, (ftell($fp) - 20000), SEEK_SET);
if (strpos($tmp, 'RAW_PHP_OPEN_TAG') !== FALSE) { /* No compression. */
unset($clean['PHP_OPEN_TAG']); $clean['RAW_PHP_OPEN_TAG'] = '';
$data = '';
while (($tmp = fgets($fp))) {
$data .= strtr($tmp, $clean);
}
} else {
$data_len = (int) fread($fp, 10);
// Data should be @ least 100k.
if ($data_len > 100000) {
$data = gzuncompress(strtr(fread($fp, $data_len), $clean), $data_len);
}
}
fclose($fp);
if (empty($data) || md5($data) != $checksum) {
exit("Archive did not pass the checksum test, it is corrupt!
\nIf you've encountered this error it means that you've: