So, jetzt hab ichs einmal für php5.6 umgesetzt, Ondřej Surý dürfte die Pfade seit Erstellung der Dokumentation angepasst haben.
Erkenntnisse zu den fünf Einträgen ( Pfade zu diversen Dingen)
- im Reiter FastCGI Einstellungen
- Pfad zum PHP FastCGI Binary:
dpkg -L php5.6-cgi | grep bin
, ls -i
zeigt die inode ;-))
- Pfad zum php.ini Verzeichnis:
php-cgi5.6 -i|grep php\.ini|grep Path
- im Reiter PHP-FPM Einstellungen
- Pfad zum PHP-FPM Init Script:
dpkg -L php5.6-fpm | grep init\.d
alternativ: dpkg -L php5.6-fpm | grep systemd
- Pfad zum php.ini Verzeichnis:
`dpkg -L php5.6-fpm | grep bin | grep php` -i | grep ini| grep Path
- Pfad zum PHP-FPM Pool Verzeichnis:
for f in `dpkg -L php5.6-fpm | grep pool` ; do find $f -type d ; done
weitere nötige Schritte ( da gings um wordpress, bitte um Entschuldigung, wenn was fehlt, der Test war äusserst oberflächlich ):
Bash:
a2enconf php5.6-fpm
systemctl reload apache2 # nona
apt-get install php5.6-mysql
Und nicht vergessen: mit dem Testen warten, bis ISPConfig alles geschrieben hat ;-))