• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
kalitut

kalitut

KaliTut Where you learn about Kali Linux tips and Linux system

  • Home
  • Raspberry Pi
  • WRITE FOR US
  • Privacy Policy
  • About us

lighttpd enable php5 support (Raspberry Pi)

November 24, 2017 by Kalitut Leave a Comment

lighttpd PHP5 support (Raspberry Pi)

lighttpd PHP5 support (Raspberry Pi)

Running a web server on Raspberry Pi, such as “lighttpd”, is just half as much fun without PHP5. So the task is to extend the already installed web server “lighttpd” with PHP5 support so that PHP files can be executed.
Task

  • Install the necessary software modules.
  • Create a PHP file for testing.
  • Check the availability of this file.

solution
The following solution assumes that the lighttpd server is already installed. If so, you must first install the necessary software modules for PHP (version 5).

sudo apt-get update
sudo apt-get install php5-common php5-cgi php5

It is advisable to follow the order of the packages. Otherwise it could be that additionally Apache2 is installed. That will inevitably lead to problems.

After the PHP5 package installation, activate the FastCGI module for PHP and then reload the lighttpd configuration:

sudo lighty-enable-mod fastcgi
sudo lighty-enable-mod fastcgi-php
sudo service lighttpd force-reload

To test the PHP support, create a PHP test file in the main webserver directory “/ var / www / html:

nano /var/www/html/phpinfo.php

In the editor, enter the following line:

<? php phpinfo (); ?>

Save and Exit with: Ctrl + O, Enter, Ctrl + X

Then you can test whether this file is accessible via the web browser, in which one enters the following address in the address line:

http: //raspberrypi.local/phpinfo.php

Or:

http://{IP} Adresse_des_Raspberry_Pi/phpinfo.php

If everything works, the browser displays detailed information about the installed PHP version.

Filed Under: Raspberry Pi Tagged With: lighttpd Raspberry Pi

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Follow us

  • Facebook
  • Twitter
  • YouTube

Write for us

  • WRITE FOR US

Categories

  • Android pentesting tools
  • Arduino
  • Books
  • Darknet
  • database
  • General
  • Github Tools
  • Kali Linux
  • Linux
  • Linux Commands
  • Network Administrator
  • Penetration Testing
  • Penetration Testing Tools
  • Raspberry Pi
  • resources
  • Review
  • Termux
  • Tutorials
  • Ubuntu
  • Uncategorized
  • Video Tutorials
  • vmware
  • WiFi Adapter
  • WiFi Pentesting
  • Wireless Router
  • Wireshark

Recent Posts

  • Best hacking gadgets for security researchers
  • ntds-analyzer hashes analyzer
  • Scilla – Information Gathering tool
  • how to install google chrome in Kali Linux
  • Introduction to Security Penetration using Linux
  • Home
  • About us
  • Privacy Policy
  • Affiliate disclaimer

Copyright © 2021