13
Think I have the settings save issue solved for PHP5 in 2.3.2 XOOPS with xdonation 1.9. It worked for me anyways. Hope this helps some others.
First I was getting the "Fatal error: Call to undefined static function: xoopserrorhandler::getinstance() in .../modules/xdonations/includes/common.php on line 36" so I used
This Fix by LucaNet and rewrote the common.php to the previous version.
That let the module function. I still could not save any settings. After some searching I found this error in the xdonations/admin/index.php file line 764:
if(!isset($HTTP_POST_VAR['op'])) {
And changed it to:
if(!isset($_POST['op'])) {
IT WORKED. I can now edit and save my configuration changes from the xdonation module. Not bad for a newbie.