flatpress/setup/lib/step1.lib.php
2007-10-30 10:30:07 +00:00

26 lines
437 B
PHP

<?php
function check_step() {
if(check_write(SETUPTEMP_FILE, 2)) {
$r = fs_mkdir(CACHE_DIR);
$r &= fs_copy(CONFIG_DEFAULT, CONFIG_FILE);
$r &= fs_copy(FP_DEFAULTS. 'plugins.conf.php',
CONFIG_DIR . 'plugins.conf.php');
$r &= fs_copy(FP_DEFAULTS. 'widgets.conf.php',
CONFIG_DIR . 'widgets.conf.php');
//$r &= create_content();
return true;
}
return false;
}
?>