Support Forums
need help with xampp - Printable Version

+- Support Forums (https://www.supportforums.net)
+-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87)
+--- Forum: Coding Support Forums (https://www.supportforums.net/forumdisplay.php?fid=18)
+---- Forum: PHP The Hypertext Preprocessor (https://www.supportforums.net/forumdisplay.php?fid=21)
+---- Thread: need help with xampp (/showthread.php?tid=12723)



need help with xampp - Treblez - 10-13-2010

ok i installed it and its running ok - when i go to localhost in firefox it shows me the xampp page. i need to open my own file. I remove everything from the folder xampp/htdocs and put in my file but the browser says : URL not found. where am I wrong? i renamed my page to index.php but still nothing


RE: need help with xampp - dareknyght - 10-13-2010

I suggest you to use WAMP instead...
I can also help you with WAMP because I am WAMP user!


RE: need help with xampp - Treblez - 10-13-2010

yes but I already installed xampp and I have worked with it bfore i just cant remember where to put the files


RE: need help with xampp - Bursihido - 10-14-2010

RTFM.


RE: need help with xampp - Disease - 10-14-2010

(10-13-2010, 05:55 AM)Treblez Wrote: yes but I already installed xampp and I have worked with it bfore i just cant remember where to put the files

Enter your XAMPP directory (likely C:\xampp) and inside it you'll find a directory named htdocs. That's your Apache document root and where you need to place files to be accessed via your browser.

If you're still getting an error when accessing your local server (http://localhost) then check these three things:

1. Ensure Apache is running

2. If it is running then check to make sure your document root is still set to its default location. Go into C:\xampp\apache\conf (or wherever you have XAMPP located) and open httpd.conf. Inside look for the following:

Code:
# DocumentRoot: The directory out of which you will serve your

Look at the value given to the DocumentRoot directive. Ensure you are placing your files inside that directory.

3. If the DocumentRoot is valid and Apache is running: open the error log (C:\xampp\apache\logs\error.log) and read off the latest entry. That should point you in the right direction.


RE: need help with xampp - Herm1t - 11-07-2010

Exactly as Disease said,
if u would still have problems also disable ur firewall and make a portforward to port 80 tcp/udp.


RE: need help with xampp - Orgy - 11-10-2010

(11-07-2010, 01:15 AM)Herm1t Wrote: Exactly as Disease said,
if u would still have problems also disable ur firewall and make a portforward to port 80 tcp/udp.

Lol NO. Do not disable your firewall. Just make an exception to allow through that port.


RE: need help with xampp - Shock - 11-10-2010

I don't know, As I do not have it.

Does anybody have a link to it?
Is it free?


RE: need help with xampp - Herm1t - 11-11-2010

@Orgy i just meat for testing purposes, not permanently.

@Shock check your firewall and do a partforward ad i said, did u managed to do it already?


RE: need help with xampp - Chimi - 12-06-2010

Let's say you have index.php, place it inside htdocs and then navigate to "localhost/index.php" within your web browser. Should work fine.