Page 1 of 1

Blank Page

PostPosted: 28. August 2008 19:37
by naranyra
Maybe someone could help me with this one...
localhost works,all services are active,but php scripts doesn't show on page...the page is blank even if you insert something simple like:
<?php
echo 'Hi!';
?>
I'm running Vista Ultimate,dunno what other info would be useful...

PostPosted: 28. August 2008 21:56
by Nobbie
What is the name of your document/script and how do you open it in your browser?

PostPosted: 29. August 2008 05:32
by naranyra
Xampp is installed in C:/Xampp/
Document is index.php,located in C:/xampp/htdocs/new folder/index.php
I open it with right mouse button,"Open with..." or tryied with browser itself"file->open..."
Tried Opera and IE as browsers,same effect...localhost opens,but scripts doesn't show..

PostPosted: 29. August 2008 07:38
by glitzi85
First you should rename "New Folder" to something without a space in Name. That's always a bad idea! For example call the folder "test". Then it should look like this:

Code: Select all
C:\xampp\htdocs\test\index.php


Then start Apache with the XAMPP Control Panel, oben your Webbrowser and go to this Address:

http://localhost/test/index.php

Now it should parse your PHP file.

glitzi