PHP7.3への対応

1.コンストラクタ (クラス名と同じ名前のメソッドを定義するもの) が非推奨となったので変更。
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; XoopsDatabase has a deprecated constructor in /xoops/class/database/database.php on line 53

/xoops/class/database/database.php

- public function XoopsDatabase()
+ public function __construct()

2.関数 create_functionが非推奨となったので変更
Deprecated: Function create_function() is deprecated in /xoops/modules/legacy/preload/Primary/SessionCallback.class.php on line 18

/xoops/modules/legacy/preload/Primary/SessionCallback.class.php

- ob_start(create_function('', '(session_id() && session_write_close());return false;'));
+ ob_start(function(){(session_id() && session_write_close());return false;});

サーバー機器交換予定

来月中を目処にサーバー機器の交換を予定しており、
下記のような構成となります。
現在は組み立てをほぼ終え、設定などを詰めている段階です。

SYS:Ubuntu+Nginx+MySQL
CPU:i5-4430S
RAM:DDR3-1600 16GB
SSD:128GB+256GB
HDD:1TB
SYS:Ubuntu+Nginx+MariaDB
CPU:Ryzen3-2200G
RAM:DDR4-3200 32GB
SSD:500GB
HDD:1TB

どどんとふ マップマーカーのウィンドウ幅を調整


最近はどどんとふの装飾をする人も増え、マップマーカーを使う機会も多くなりました。
しかし、ウィンドウ幅が狭いため、文字数が多くなると編集がしにくい…と言う事もしばしば。
不便なので、幅を拡げてみました。
どどんとふ側は編集後にコンパイルが必要です。方法は下記の関連記事をどうぞ。

src_actionScript\AddMapMarkerWindow.mxml
マップマーカーのメッセージ記入欄のウィンドウ幅を拡げる。
レイアウト調整のため、ウィンドウ全体も拡げる。

<?xml version="1.0" encoding="utf-8"?>
<torgtaitai:CommonPopupWindow
   xmlns:mx="http://www.adobe.com/2006/mxml"
   xmlns:torgtaitai="*" 
   x="250"
   y="50"
-  width="390"
-  height="200"
+  width="640" //記入欄を拡げるのでウィンドウ全体も拡げる
+  height="400"
   title="{Language.s.addMapMarker}" 
   showCloseButton="true"
   >  
  <mx:HBox height="100%" width="100%" horizontalAlign="center" verticalAlign="middle">
-   <mx:Box height="100%" width="230" verticalAlign="middle">
+   <mx:Box height="100%" width="400" verticalAlign="middle"> //記入欄の幅を拡げる

参考例 :http://dona-co.art/trpg/
関連記事:DodontoF.swfの編集