I finaly got networking to work, but the only page I can access is 127.0.0.1:8080 if I, for example try to access http://127.0.0.1:8080/upload/install/install.php I get a "This webpage is not available
The connection to 127.0.0.1 was interrupted." error. What should I do to gain acces to all files in "/var/www"?
I alredy tried some things with apache's config files but I guess I messed them up so I apt-get remove apache2 --purge and apt-get install apache2. I Have installed complete LAMP server with phpmyadmin, which I also can't access.
Tell me more
×
Ask Ubuntu is a question and answer site for
Ubuntu users and developers. It's 100% free, no registration required.
|
|
|||||||
|
|
The error message rather indicates the server being unable to reach. Are you sure you configured it to listen on port 8080? Check the following things:
The most likely cause is you set up Apache to listen on port 80 (which is the default), and now try to follow some tutorial which assumes otherwise. It might also involve configuring a virtual host, and you skipped this step (or didn't succeed here). If, on the other hand, your configuration is to have Apache listen on port 8080, and it is listed by above
|
|||
|