Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: A phpBB to bbPress database converter

Your PHP version is rather old, use this:

if (!function_exists('file_put_contents')) {

function file_put_contents($filename, $content) {

if ($fp = fopen($filename, 'w')) {

$result = fwrite($fp, $content);

fclose($fp);

return $result;

}

else {

return false;

}

}

}

Skip to toolbar