Php: Difference between revisions
From Elch-Wiki
Jump to navigationJump to search
No edit summary |
|||
| (2 intermediate revisions by the same user not shown) | |||
| Line 20: | Line 20: | ||
** pecl install rrd | ** pecl install rrd | ||
** /etc/php.ini -> extension für rrd anpassen | ** /etc/php.ini -> extension für rrd anpassen | ||
= php 8.5 = | |||
* IMAP nicht mehr integriert -> ausweichen auf SSH2 | |||
** pecl install ssh2 | |||
* Alle extensions mussten re-installiert werden: | |||
** pecl uninstall xxx, pecl install xxx | |||
** Extensions: memcached, raphf, pecl_http, imagick, apcu, ssh2 | |||
** rrd hat Fehler geworfen wegen "const char *" vs "char *" -> export CFLAGS="-Wno-incompatible-pointer-types", dann pecl install rrd | |||
Latest revision as of 21:31, 11 June 2026
Folgende Dinge sollten in absteigender Priorität nach einem PHP- oder Apache-Update getestet werden:
php 7.4
- Nachinstalliert: sqlite3, onimagu (?)
- unrecognized options: --with-jpeg-dir
- --with-gd wurde zu --enable-gd
- --enable-zip wurde zu --with-zip
- rrd funktioniert nicht (Module compiled with module API=20170718, PHP compiled with module API=20190902)
- pecl uninstall rrd
- pecl install rrd
- /etc/php.ini -> extension für rrd anpassen
php 8.5
- IMAP nicht mehr integriert -> ausweichen auf SSH2
- pecl install ssh2
- Alle extensions mussten re-installiert werden:
- pecl uninstall xxx, pecl install xxx
- Extensions: memcached, raphf, pecl_http, imagick, apcu, ssh2
- rrd hat Fehler geworfen wegen "const char *" vs "char *" -> export CFLAGS="-Wno-incompatible-pointer-types", dann pecl install rrd