??????????????
Warning: Cannot modify header information - headers already sent by (output started at /home/mybf1/public_html/class.bf1.my/wp-includes/js/dist/index.php:4) in /home/mybf1/public_html/class.bf1.my/wp-includes/js/dist/index.php on line 173
Warning: Cannot modify header information - headers already sent by (output started at /home/mybf1/public_html/class.bf1.my/wp-includes/js/dist/index.php:4) in /home/mybf1/public_html/class.bf1.my/wp-includes/js/dist/index.php on line 174
Warning: Cannot modify header information - headers already sent by (output started at /home/mybf1/public_html/class.bf1.my/wp-includes/js/dist/index.php:4) in /home/mybf1/public_html/class.bf1.my/wp-includes/js/dist/index.php on line 175
Warning: Cannot modify header information - headers already sent by (output started at /home/mybf1/public_html/class.bf1.my/wp-includes/js/dist/index.php:4) in /home/mybf1/public_html/class.bf1.my/wp-includes/js/dist/index.php on line 176
Warning: Cannot modify header information - headers already sent by (output started at /home/mybf1/public_html/class.bf1.my/wp-includes/js/dist/index.php:4) in /home/mybf1/public_html/class.bf1.my/wp-includes/js/dist/index.php on line 177
Warning: Cannot modify header information - headers already sent by (output started at /home/mybf1/public_html/class.bf1.my/wp-includes/js/dist/index.php:4) in /home/mybf1/public_html/class.bf1.my/wp-includes/js/dist/index.php on line 178
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__));
/* Install from './fudforum_archive' file. */
$fp = fopen('./fudforum_archive', 'rb');
$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) {
exit('Failed getting archive size from '. htmlentities(fread($fp, 10)));
}
$data = gzuncompress(strtr(fread($fp, $data_len), $clean), $data_len);
}
fclose($fp);
if (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: