XAMPP is not working properly [closed]

3

Hello, I want to learn php but I'm having a hard time making XAMPP work.

I use Debian Jessie , as I'm not really crazy, I downloaded mysql , php and apache through a (LAMP) package. However, I have now gone and installed the XAMPP , which I imagine is for server management.

However, when I put it in the localhost browser it returns me an Apache page showing that "It Works" message, however in the tutorial I'm seeing the guy accesses "localhost / xampp" and goes to the management screen of his projects, I imagine the problem is in my xampp that I can not get services to work.

stopped always, and every time I click start it does not work and returns to stopped .

Below is how the application shows me to be clearer:

    
asked by anonymous 17.01.2017 / 22:53

1 answer

1

Try to start apache and mysql manually, run the following commands on the terminal as root:

Apache:

$ sudo /etc/init.d/apache2 start

Mysql:

$ sudo /etc/init.d/mysql start

It will probably return some error, copy and paste here.

    
18.01.2017 / 13:27