php5 lacoodaWiz

グループウエア LacoodaWizをphp5で動かす

schedule2.phpを編集

変更前
// カレンダー上の初日取得
$tempDateInfo = $dateInfo;
$tempDateInfo->setDay(“1”);
$firstMonthArray = $tempDateInfo->getFirstWeek();

変更後
// カレンダー上の初日取得
$tempDateInfo = new DateInfo();
$tempDateInfo->setYear($dateInfo->getYear());
$tempDateInfo->setMonth($dateInfo->getMonth());
$tempDateInfo->setDay(1);
$firstMonthArray = $tempDateInfo->getFirstWeek();

———————————————-
phpの設定


php_flag register_globals on
php_value mbstring.language Japanese
php_value mbstring.internal_encoding EUC-JP
php_value mbstring.http_input auto
php_value mbstring.http_output SJIS
php_flag mbstring.encoding_translation On
php_value mbstring.detect_order auto
php_value mbstring.substitute_character none
php_value mbstring.strict_detection Off
php_flag session.use_trans_sid 1