Just a couple of quick things I noticed with the Ban List 1.0 Script:
Not critical:
In the dnplbanlist1.sql file the last line:
| Code: |
INSERT INTO phplinks_banlist VALUES(4, 'spammer...
|
Should read:
| Code: |
INSERT INTO phplinks_banlist VALUES(6, 'spammer...
|
Duplicate ID causes SQL error when setting up the database with this line:
| Code: |
INSERT INTO phplinks_banlist VALUES(4, 'cialis', 'string');
|
A little more critical:
Maybe include in the installation.txt to add the database variable to the /include/config.php, e.g.:
| Code: |
// *******************************************************************
// MySQL Table Names - you don't need to change these if you use one of
// the included .sql files to create the tables
// *******************************************************************
|
all the variables then add this line at the end
| Code: |
$banlist_table = "phplinks_banlist";
|
Thanks,
Rush