Title: Need a plugin? &#8211; taking a request
Last modified: August 18, 2016

---

# Need a plugin? – taking a request

 *  [aleister](https://wordpress.org/support/users/aleister/)
 * (@aleister)
 * [19 years, 10 months ago](https://wordpress.org/support/topic/need-a-plugin-taking-a-request/)
 * Once again, I am taking requests for a plugin.
 * I have quite a few different projects I am working on right now, so please do
   not ask for anything too complex.
 * I will take the first request that I like (mainly meaning – have time for).
 * Any takers? 🙂

Viewing 15 replies - 1 through 15 (of 32 total)

1 [2](https://wordpress.org/support/topic/need-a-plugin-taking-a-request/page/2/?output_format=md)
[3](https://wordpress.org/support/topic/need-a-plugin-taking-a-request/page/3/?output_format=md)
[→](https://wordpress.org/support/topic/need-a-plugin-taking-a-request/page/2/?output_format=md)

 *  [robpet](https://wordpress.org/support/users/robpet/)
 * (@robpet)
 * [19 years, 10 months ago](https://wordpress.org/support/topic/need-a-plugin-taking-a-request/#post-425042)
 * How about something that will limit the characters that are acceptable in comments?
   I’m looking for one like that, and that would truly rock.
 * Thanks
 * rob
 *  Thread Starter [aleister](https://wordpress.org/support/users/aleister/)
 * (@aleister)
 * [19 years, 10 months ago](https://wordpress.org/support/topic/need-a-plugin-taking-a-request/#post-425045)
 * What did you have in mind as far as acceptable characters though? Like blocking
   all non-alphanumerics and whitespace or what?
 *  [robpet](https://wordpress.org/support/users/robpet/)
 * (@robpet)
 * [19 years, 10 months ago](https://wordpress.org/support/topic/need-a-plugin-taking-a-request/#post-425050)
 * Just blocking everything except alphanumeric, whitespace (space bar), period,
   comma and maybe question mark and exclamation point.
 * Basicly, so the the comments can have proper grammer, but not allow the ‘ ” %
   $ # ( ) * ^ < > / } { [ ] \ etc… So in other words, anything that could make 
   up some sort of code to disrupt the database interaction and access to the website
   files.
 * I can’t imagine it would be that hard, but I don’t know PHP and have no idea 
   where to even start…
 * Thanks
 * rob
 *  [jwurster](https://wordpress.org/support/users/jwurster/)
 * (@jwurster)
 * [19 years, 10 months ago](https://wordpress.org/support/topic/need-a-plugin-taking-a-request/#post-425052)
 * Sounds like you’re looking for a spam filter.
 *  [robpet](https://wordpress.org/support/users/robpet/)
 * (@robpet)
 * [19 years, 10 months ago](https://wordpress.org/support/topic/need-a-plugin-taking-a-request/#post-425053)
 * Not really. Unless a Spam Filter will stop these characters. I want to stop them
   from being able to be entered in comments only. I trust my bloggers, but not 
   those people posting comments.
 * Do you know of a Spam Filter Plugin that will do this? And what would the result
   be?
 * I’ve thought about putting those characters in the Comment Blacklist and seeing
   what would happen… I would add a line in the post_comment script (whatever it’s
   called) stating that any of those characters being used would cause the comment
   not to post…
 * Thoughts?
 * Sorry to fill your generous post Aleister.
 * rob
 *  Thread Starter [aleister](https://wordpress.org/support/users/aleister/)
 * (@aleister)
 * [19 years, 10 months ago](https://wordpress.org/support/topic/need-a-plugin-taking-a-request/#post-425055)
 * WordPress already does a pretty decent job of keeping code from executing in 
   comments. There should be no danger. If there was, there would surely be a WordPress
   security update very soon 😉
 * I do not think it is that great of an idea really, because people will get kind
   of upset if every comment they post with a parenthesis, double quote, etc.. is
   deleted automatically.
 *  [robpet](https://wordpress.org/support/users/robpet/)
 * (@robpet)
 * [19 years, 10 months ago](https://wordpress.org/support/topic/need-a-plugin-taking-a-request/#post-425057)
 * Okay, valid arguements. This is totally off topic of your post, but can someone
   either give me, or direct me to where I can get some scripting to defend WordPress,
   and to support it’s inherent security?
 * Then I may not have to worry about this at all…
 * Thanks
 * rob
 *  Thread Starter [aleister](https://wordpress.org/support/users/aleister/)
 * (@aleister)
 * [19 years, 10 months ago](https://wordpress.org/support/topic/need-a-plugin-taking-a-request/#post-425058)
 * If you really want to, you could try the following code. It should just strip
   out anything besides letters, numbers, whitespace, and periods 🙂
 * In **wp-comments-post.php**
 * Find this line:
 * `$comment_content = trim($_POST['comment']);`
 * After it, add this line:
 * `$comment_content = preg_replace("/[^A-Za-z0-9s+.]/i", "", $comment_content);`
 * (my regular expressions are rusty heh)
 *  [robpet](https://wordpress.org/support/users/robpet/)
 * (@robpet)
 * [19 years, 10 months ago](https://wordpress.org/support/topic/need-a-plugin-taking-a-request/#post-425065)
 * Well, your regex works pretty well, but how would I get it to allow spaces? It
   just pushed all the characters together in one big word.
 * Thanks
 * rob
 *  Thread Starter [aleister](https://wordpress.org/support/users/aleister/)
 * (@aleister)
 * [19 years, 10 months ago](https://wordpress.org/support/topic/need-a-plugin-taking-a-request/#post-425066)
 * Ah, actually there should be a backslash before the s. It may have vanished when
   I edited the post.
 * **\s**
 *  [moshu](https://wordpress.org/support/users/moshu/)
 * (@moshu)
 * [19 years, 10 months ago](https://wordpress.org/support/topic/need-a-plugin-taking-a-request/#post-425067)
 * robpet,
    now you can go and mark resolved your original topic: [http://wordpress.org/support/topic/80886?replies=1](http://wordpress.org/support/topic/80886?replies=1)
   so that your paranoid IT guy could relax 🙂
 *  [robpet](https://wordpress.org/support/users/robpet/)
 * (@robpet)
 * [19 years, 10 months ago](https://wordpress.org/support/topic/need-a-plugin-taking-a-request/#post-425073)
 * I will mark the other one resolved, but I also want to let all know that this
   also works allowing spaces (thanks to a quick google):
 * $comment_content = preg_replace(“/[^A-Za-z0-9[:space:]s+.]/i”, “”, $comment_content);
 * rob
 *  [jharis](https://wordpress.org/support/users/jharis/)
 * (@jharis)
 * [19 years, 10 months ago](https://wordpress.org/support/topic/need-a-plugin-taking-a-request/#post-425078)
 * Aleister,
 * Would you be willing to turn this already web-based application for editing and
   storing role playing game character sheets into a wordpress module? Since WP 
   doesn’t have much in the way of gamers stuff this would be pretty cool.
 * You can find the package here.
    [http://sourceforge.net/projects/rpgwebprofiler/](http://sourceforge.net/projects/rpgwebprofiler/)
 * don (el paso)
 *  [halfbloodprince](https://wordpress.org/support/users/halfbloodprince/)
 * (@halfbloodprince)
 * [19 years, 10 months ago](https://wordpress.org/support/topic/need-a-plugin-taking-a-request/#post-425087)
 * Hey, Aleister.
 * I’ve been looking for a certain kind of Event Calendar Plugin for WordPress, 
   but I haven’t quite been able to find what I want.
 * The Sound Republic Web site [[http://www.thesoundrepublic.com](http://www.thesoundrepublic.com/)]
   has exactly what I want. If you scroll down a bit on the home page, there is 
   an Event Calendar on the right sidebar. If I click on any of the event dates (
   highlighted), it opens a popup window with a list of events for that day. The
   popup window with the list of events should also be customisable (I should be
   able to put my logo, etc. on it), as it is on that site.
 * Can you create such a plugin? I’d be extremely grateful for any help 🙂
 * Note: The site mentioned above (The Sound Republic) is not made using WordPress,
   the calendar is made using a modified version of a free PHP script.
 * If it would be useful, the free PHP script can be found at [this location](http://blog.snag.se/projects/another-calendar).
 * As far as modifications to the calendar are concerned, you can get an idea of
   the modifications by comparing the free script with the source code of the home
   page and popup page at The Sound Republic Web site.
 *  [sidraja](https://wordpress.org/support/users/sidraja/)
 * (@sidraja)
 * [19 years, 10 months ago](https://wordpress.org/support/topic/need-a-plugin-taking-a-request/#post-425093)
 * How about a polling system that works inside a post? The polls for wordpress 
   are currently only for sidebars. I’d like something where I can paste the code
   inside the post (or use a button to do it) and have a poll.

Viewing 15 replies - 1 through 15 (of 32 total)

1 [2](https://wordpress.org/support/topic/need-a-plugin-taking-a-request/page/2/?output_format=md)
[3](https://wordpress.org/support/topic/need-a-plugin-taking-a-request/page/3/?output_format=md)
[→](https://wordpress.org/support/topic/need-a-plugin-taking-a-request/page/2/?output_format=md)

The topic ‘Need a plugin? – taking a request’ is closed to new replies.

 * 32 replies
 * 13 participants
 * Last reply from: [aleister](https://wordpress.org/support/users/aleister/)
 * Last activity: [19 years, 10 months ago](https://wordpress.org/support/topic/need-a-plugin-taking-a-request/page/3/#post-425428)
 * Status: not a support question

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
