1

I have some project in php ( including sql ). What server should I use for it? When the pi will started It need to autostart server and open browser in fullscreen without url bar and other tools, only my project.

More informations about my project:

  • I have web application written in php that stores data in sql database
  • I will use touch display on my raspberry
  • It will be for public use, so It can show only my application and nothing else

Now what I need:

  • How to autostart server and what server should I use-
  • How to autostart web browser that is running my app fullscreen without any other tool from browser itself
tehnuty
  • 113
  • 4
  • Hello and welcome to Raspberrypi.SE I believe that the question will be hard to answer without additional information. Feel free to edit the question to add more details to help people to give useful answers. – Ghanima Oct 28 '14 at 15:11

1 Answers1

1

You will need to install and configure PHP5, a SQL server and a HTTP server with CGI capability. And then setup a browser to start automatically in fullscreen mode, loading your web application.

SQL server:

If your database code is MySQL compatible, I would recommend the MariaDB Server. Or you can use a the MySQL Server.

HTTP server:

It sounds like you only want to access the PHP web project with the browser locally on your RPi. In that case, it might be the easiest solution, to use the built in webserver of PHP.

But if you want to access your web application from the internet, I would recommend to install a full blown server like apache, nginx or lighttpd.

You can add the command to start the PHP build-in webserver to the file /etc/rc.local. This way, it would start automatically. The other full blown servers will most likely be configured to start automatically.

Browser:

For the automatic start of a fullscreen browser in LXDE, you can have a look at this question. But there are problems with the fullscreen mode. So maybe go with the chromium browser like int this answer to the same question.

Pascal Rosin
  • 539
  • 5
  • 13