have perkara about spamming email in your joomla? your account suspendde by hosting because yaour site have overload activities spamming? Using Email Protection from nonumber extension for joomla but nothing happen? Spamming usually in joomla because your component contact in your joomla broken.
There are three files need to be edited to fix the contact from component to resolve your spamming email problems in your hosting.
to edit three contact files please open : your_joomla/componenst/com_contact/models/rules
1. contactemail.php
2.contactemailmessage.php
3.contactemailsubject.php
To detect your contactemail broken, view this a different source :
Com_contact broken code:
foreach(explode(';', $banned) as $item) {
if (JString::stristr($item, $value) !== false) {
return false;
}
}
Com_contact the working code:
foreach(explode(';', $banned) as $item) {
if ($item != '') {
if (JString::stristr($value, $item) !== false) {
return false;
}
}
}
To Fix or Resolve your perkara spamming email yo must edit the three files. Thanks to webdevelopmentconsultancy(dot)com for powerfull solution.
There are three files need to be edited to fix the contact from component to resolve your spamming email problems in your hosting.
to edit three contact files please open : your_joomla/componenst/com_contact/models/rules
1. contactemail.php
2.contactemailmessage.php
3.contactemailsubject.php
To detect your contactemail broken, view this a different source :
Com_contact broken code:
foreach(explode(';', $banned) as $item) {
if (JString::stristr($item, $value) !== false) {
return false;
}
}
Com_contact the working code:
foreach(explode(';', $banned) as $item) {
if ($item != '') {
if (JString::stristr($value, $item) !== false) {
return false;
}
}
}
To Fix or Resolve your perkara spamming email yo must edit the three files. Thanks to webdevelopmentconsultancy(dot)com for powerfull solution.
0 Komentar untuk "Resolve Spamming Email In Joomla (Solusi Email Spam Di Joomla)"