Hi,

My localhost works fine with Zend index.php, but when I try to install the other new "PHP script" folder at my localhost, (which Host by Apache+ php5), then I point IE browser to localhost/ directry, which i saw the list of files instead of index.php. and when I click index.php, it only shows blank but nothing.

Thanks very much for your assistance. look forward to hearing for you soon.

Nicole

    I would guess that creating an index.html with a metarefresh to your index.php should do the trick--

    or you could create an index.html that is simply:

    <?php
    include "index.php";
    ?>
    

    or if .html files can handle embedded php, then just change your filename

    As for why the php isnt processing...coulnt tell you without soe sort of code. What you might want to do is to put a very simple script out there first. Just to make sure that PHP is happening on that site. just something like:

    <?php
    print "Well hiya world!";
    ?>
    

      is PHP script the name of this new directory? you cant have spaces.

        Hi maxpup979,

        Thanks very much for your advice.

        I have try what you have suggested to test my localhost:

        <?php

        print "Well hiya world!";
        ?>

        Yes , My localhost is no problem, When I pointed to this script in IE6, the page shows " Well hiya world"

        I try to test the script which is your the other suggestion:

        <?php
        include "index.php";

        I put this script in :C:\Program Files\Apache Group\Apache2\htdocs folder, the IE browser shows notthing.

        In My apachehtdocs folder has: (Zend folder), index.html page(Zend's),
        (PHPB😎 Folder.....This is the one I want to install. But when I point the IE to "localhost", it always show Zend's index.html page first. and when I point to " localhost\phpbb,which i saw the list of files instead of index.php. and when I click index.php, it only shows blank but nothing.

        Once again thanks for your reply and look forward to hearing for you soon.

        Nicole

          "Blank but nothing"? What does the source of this blank page look like (in the browser)?

            Hi!

            Thanks for your viewing.

            Look in the browser just white and nothing.....

              When you view the page's source there isn't any? Hm, you're using IE - if I remember right that displays the source code in Notepad.

                Write a Reply...