You are not logged in.
Apache with php-apache fails. It doesn't work.
apache search /usr/share/apache/modules/libphp5.so and cannot find the file.
Php-apache install libphp7.so
Offline
Simple solution:
edit line 170 and replace como root:
leafpad /etc/apache/httpd.conf
Replace: LoadModule php5_module share/apache/modules/libphp5.so
for
Add: LoadModule php7_module share/apache/modules/libphp7.so
Then you must comment line 514 to skip error about Module and SSL Certificate.
#Include /etc/apache/extra/httpd-ssl.conf
Configure daemon, so that apache starts with the system and does not conflict with Busibox's httpd. You should replace httpd with apache:
leafpad /etc/rcS.conf
replace: RUN_DAEMONS="compcache firewall httpd ntpd"
for
add: RUN_DAEMONS="compcache firewall apache ntpd"
The next time you start your system, Apache is working.
Offline
[ Generated in 0.017 seconds, 7 queries executed - Memory usage: 1.52 MiB (Peak: 1.77 MiB) ]