Viewing 5 replies - 1 through 5 (of 5 total)
  • First, try going to options>general in your admin panel and check if your Blog Address is set to https://127.0.0.1/wordpress/. If it is set to https://127.0.0.1/wordpress/bla, your page will display if you write https://127.0.0.1/wordpress/bla/?page_id=2

    Then, make sure that the index.php in your template page includes The Loop. Something like:

    <?php while (have_posts()) : the_post(); ?>
    <?php the_title(); ?>
    <?php the_excerpt() ?>
    <?php endwhile; ?>

    And if you have a page.php and category.php, make sure that they include The Loop too.

    The Loop
    Template Hierarchy

    Thread Starter riccardogg

    (@riccardogg)

    I’ve got the loop (I’m using the default template).
    My Blog Address is set to
    https://127.0.0.1/wordpress
    not
    https://127.0.0.1/wordpress/

    Moreover,
    in write>write page>post preview
    I can’t see the real preview (also after saving),
    while I see the Index of /wordpress

    Nevermind the trailing slash, lol =P
    Well, then that is really strange… As you have your blog installed in your own server, maybe the problem is due to some configuration of your php? Or have you made any modifications to the original installation/theme since you have installed wordpress?

    Thread Starter riccardogg

    (@riccardogg)

    Yes, I switched from default to classic to ocadia
    some times, coming back to default…
    I’m going to reinstall it and I let you know.

    Thread Starter riccardogg

    (@riccardogg)

    OK, found!
    I added the index.php in my Apache httpd.conf:
    <IfModule mod_dir.c>
    DirectoryIndex index.html index.php
    </IfModule>
    and now all work properly!!!
    Thank you

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Page bug in WP 2.0.4’ is closed to new replies.