USCSS_Nostromo
Active member
Google AdSense constantly sends complaints that I am obliged to respond to.
And their requirements keep growing. These include insults, weapons, drugs, prostitution, pornography, insults to religious feelings, skin color, race, sexual minorities, etc. a huge number of words. If the forum language is not English, then the number of blocked words must be multiplied by 2.
I have to block words in the local language and in English as well, since they also appear.
Every day the list of such words grows. The problem is that Google does not provide an official list of words. Google doesn’t even tell you which word violates their rules! You have to guess yourself. Well, that’s fine, that’s not your fault.
Today I noticed that I can no longer add words in the admin panel: /admin.php?options/groups/censoringOptions/
It turns out there is a limit. And this limit is 497 words.
The forum doesn’t show any error - when adding the 498th word, it simply doesn’t get added. After refreshing the page, it just disappears.
497 words in 2025 is already not enough. Please increase this number.
Thank you very much!
----
php.ini
post_max_size = 64M
upload_max_filesize = 64M
[mysqld]
max_allowed_packet=64M
[mysqld]
innodb_log_file_size=300M
Is the problem in the size of xf_option — option_value being a MEDIUMBLOB with a size limit of 16 MB?
And their requirements keep growing. These include insults, weapons, drugs, prostitution, pornography, insults to religious feelings, skin color, race, sexual minorities, etc. a huge number of words. If the forum language is not English, then the number of blocked words must be multiplied by 2.
I have to block words in the local language and in English as well, since they also appear.
Every day the list of such words grows. The problem is that Google does not provide an official list of words. Google doesn’t even tell you which word violates their rules! You have to guess yourself. Well, that’s fine, that’s not your fault.
Today I noticed that I can no longer add words in the admin panel: /admin.php?options/groups/censoringOptions/
It turns out there is a limit. And this limit is 497 words.
The forum doesn’t show any error - when adding the 498th word, it simply doesn’t get added. After refreshing the page, it just disappears.
497 words in 2025 is already not enough. Please increase this number.
Thank you very much!
Code:
<li class="inputGroup" data-xf-init="field-adder" data-increment-format="options[censorWords][{counter}]">
<input type="text" class="input" name="options[censorWords][497][word]" placeholder="Word or phrase" size="20" />
<span class="inputGroup-splitter"></span>
<input type="text" class="input" name="options[censorWords][497][replace]" placeholder="Replacement (optional)" size="20" />
</li>
----
php.ini
post_max_size = 64M
upload_max_filesize = 64M
[mysqld]
max_allowed_packet=64M
[mysqld]
innodb_log_file_size=300M
Is the problem in the size of xf_option — option_value being a MEDIUMBLOB with a size limit of 16 MB?
Last edited:
Upvote
0