New Install in Pi #47
-
Just completed fresh install in a new Raspberry Pi. All seems good with connection to VW and running on Pi. When I go to Web page on local network it opens login Username Password which I setup but when I click login nothing happens... Any advice? Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hi!
Then open this page in your browser http://yourIP/phpinfo.php If you don't have PHP8.x at all, you can find a german howto under: Burkhard |
Beta Was this translation helpful? Give feedback.
Hi!
Check the php version on your Pi. (php -v)
You need to have installed php 8.x and it must be used! If you have php 7 installed parallel to php 8 it may be activ.
You should create a file named phpinfo.php in your webspace (/var/www/html).
Content:
Then open this page in your browser http://yourIP/phpinfo.php
There you can see, which php version is activ for your webpages.
Edit:
If it is the wrong version, you can deaktivate it with:
sudo a2dismod php7.4 // where 7.4 should be replaced with your active version, which you found out using phpinfo.php
Enable the right one with:
sudo a2enmod php8.0 // 8.0 should also replaced with your installed version
sudo systemctl res…