I use this
<?php
// retrieve one post with an ID of 5
query_posts('p=1');
global $more;
$more = 0;
// the Loop
while (have_posts()) : the_post();
// the content of the post
the_content('Read the full post ?');
endwhile;
?>
but still the more link is not working any ideas ?