Hi guys,
I had this problem too, the one with
| Code: |
An Error Has Occurred! Unable to open config file to write!
|
huh

finally after a few hours search, I found the solution, it is a require_once problem.
in file
admin.badwords2.php at line 25 there is a
| Code: |
require_once('settings.badwords2.perm.php');
|
This file contains the variables regarding the config files for badwords, badregexp, etc.
in the functions
| Code: |
editBwRow(), saveBwRow(), showBwData(), removeBwData()
|
comment out the line
| Code: |
global $bw_file_badwords, $bw_file_admins, $bw_file_regexps;
|
, in each of this functions and add
| Code: |
require_once('settings.badwords2.perm.php');
|
.
This worked for me. Now I see the list of the badwords, I can Edit and Save.