lolipopでPHPを使うときのメモ
phpのバージョンは8.4(CGI版)

 

.htaccessに
AddHandler php8.4-script html
という一文を追加

 

以下php.iniの設定
mbstring 関連
mbstring.language japanese
mbstring.encoding_translation Off

session 関連
session.auto_start Off
session.use_trans_sid 0
session.use_only_cookies On

opcache 関連
opcache.enable On
opcache.enable_cli Off

xdebug 関連
xdebugを利用可能にする Off

そのほか
default_charset UTF-8
output_handler 未設定
output_buffering 0
short_open_tag Off
allow_url_fopen On
upload_max_filesize 20M
display_errors Off 
error_reporting E_ALL & ~E_NOTICE & ~E_DEPRECATED
variables_order  GPCS
auto_prepend_file (空欄)
php_value, php_flagを利用可能にする Off