__('Page not found - Error 404','wp-404tboc-page'),
'post_content' => '[page404tboc]',
'post_status' => 'publish',
'post_type' => 'page',
'post_author' => $user_ID,
'ping_status' => get_option('default_ping_status'),
'post_parent' => 0,
'menu_order' => 0,
'to_ping' => '',
'pinged' => '',
'post_password' => '',
'guid' => '',
'post_content_filtered' => '',
'post_excerpt' => '',
'import_id' => 0
);
$post_id = wp_insert_post( $defaults );
add_option( 'startText404tboc','
'.__('The page you are looking for doesn`t exist.','wp-404tboc-page').'

','wp-404tboc-page');
add_option('text-button-main404tboc', __('I have no questions (Home page)','wp-404tboc-page'));
add_option('text-button-continue404tboc', __('Read Answer','wp-404tboc-page'));
add_option('text-button-restart404tboc', __('Are there any other questions?','wp-404tboc-page'));
add_option('page-404tboc', $post_id);
add_option('is-page-404tboc','1');
add_option('is-text-button-restart404tboc','1');
add_option('is-text-support404tboc','1');
add_option('skin-404tboc', "skin1");
}
register_activation_hook( __FILE__,'Plugin404tboc_activate');
?>