Problem Viewing index.php page

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default Problem Viewing index.php page

    Hi

    I am trying to view my index.php page which sits on my testing server
    (apache), when I click f12, the page opens up in the browser but it is empty!
    At the bottom left hand corner of the screen it also says "Done". Again (
    this is not my day by the way) confused as to why the page's content does not
    appear?

    Any Ideas about what could have happened here?

    Many thanks
    david


    orange22 Guest

  2. Similar Questions and Discussions

    1. Trouble loading administrator/index.cfm page--i am askedto save the page
      Please help....i've been stuck for days on this problem... Basically, I installed coldfusion and at the end of the installation, it told me that...
    2. wierd error when viewing a page
      love the program, came across something odd though: just ran into this problem today, when i try to upload my page via ftp itll cut out my...
    3. How to place a Name in a index page after login page
      Hello everyone. I just started to learning ColdFusion and I was wondering when someone registers and they place their first and last name and...
    4. Web Photo Album 2.2.6 index page problem
      Every thing is working good making and checking the album on my PC, but when I publish it to the web , in the index page I cannot see the tumbnail,...
    5. Viewing what an index marker is
      In PageMaker we were able to select the marker in the text editor and view the index entry connected to the marker. However, I can't seem to do this...
  3. #2

    Default Re: Problem Viewing index.php page

    On 27 Apr 2005 in macromedia.dreamweaver.appdev, orange22 wrote:
    > I am trying to view my index.php page which sits on my testing
    > server
    > (apache), when I click f12, the page opens up in the browser but it
    > is empty! At the bottom left hand corner of the screen it also says
    > "Done". Again ( this is not my day by the way) confused as to why
    > the page's content does not appear?
    >
    > Any Ideas about what could have happened here?
    Look at the code/source view in the browser; is it this:
    <html><body></body></html>
    ?

    Also, the standard test: does a phpinfo page show?[1]

    If so, then it's probably something small and picky, like failing to
    terminate a line with a semicolon. Unfortunately, the only way I know of
    offhand is to go through your code line by line until you find out where
    the problem is.

    [1] Copy the following:
    <?php
    phpinfo();
    ?>
    into a text file called, say, phpinfo.php; upload it to the server and
    surf to it.

    --
    Joe Makowiec
    [url]http://makowiec.net/[/url]
    Email: [url]http://makowiec.net/email.php[/url]
    Joe Makowiec Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139