Title: neo.webkit's Replies | WordPress.org

---

# neo.webkit

  [  ](https://wordpress.org/support/users/neowebkit/)

 *   [Profile](https://wordpress.org/support/users/neowebkit/)
 *   [Topics Started](https://wordpress.org/support/users/neowebkit/topics/)
 *   [Replies Created](https://wordpress.org/support/users/neowebkit/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/neowebkit/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/neowebkit/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/neowebkit/engagements/)
 *   [Favorites](https://wordpress.org/support/users/neowebkit/favorites/)

 Search replies:

## Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-MediaWiki] adding more rules](https://wordpress.org/support/topic/adding-more-rules/)
 *  Thread Starter [neo.webkit](https://wordpress.org/support/users/neowebkit/)
 * (@neowebkit)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/adding-more-rules/#post-6008259)
 * Sorry, I found out the issue. It’s my regex. Thanks for the attention anyway.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-PostRatings] hook of voting complete](https://wordpress.org/support/topic/hook-of-voting-complete/)
 *  Thread Starter [neo.webkit](https://wordpress.org/support/users/neowebkit/)
 * (@neowebkit)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/hook-of-voting-complete/#post-4779704)
 * I got it. It’s easy but Stackoverflow explain it more clearly. For those who 
   are looking for the same thing,
 * add_action(‘rate_post’, ‘add_activity_stream’, 10, 3);
    function add_activity_stream(
   $rate_userid, $post_id, $ratings_value) { //do something. }
 * reference: [http://stackoverflow.com/questions/2843356/can-i-pass-arguments-to-my-function-through-add-action](http://stackoverflow.com/questions/2843356/can-i-pass-arguments-to-my-function-through-add-action)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-PostRatings] hook of voting complete](https://wordpress.org/support/topic/hook-of-voting-complete/)
 *  Thread Starter [neo.webkit](https://wordpress.org/support/users/neowebkit/)
 * (@neowebkit)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/hook-of-voting-complete/#post-4779693)
 * Thanks, and sorry for my poor WP and programming skill, would you guide me how
   to bring the $post_id, $post_user, and $post_rate to the function?
 * I tried the following but got the php warning in the rating,
 * add_action(‘rate_post’, ‘add_activity_stream’);
 * function add_activity_stream ($user_id, $post_user, $post_rate) {
    //do something}
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP RSS Multi Importer] rssmi_source_link sometimes not available](https://wordpress.org/support/topic/rssmi_source_link-sometimes-not-available/)
 *  Thread Starter [neo.webkit](https://wordpress.org/support/users/neowebkit/)
 * (@neowebkit)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/rssmi_source_link-sometimes-not-available/#post-3597468)
 * Hi Allen,
 * Sorry for not making it clear.
 * With the same RSS link, there are a few posts which the rssmi_source_link isn’t
   stored. But the source links under those posts are created and they work fine.
 * Eddie
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pet Manager] Fatal Error](https://wordpress.org/support/topic/fatal-error-656/)
 *  Thread Starter [neo.webkit](https://wordpress.org/support/users/neowebkit/)
 * (@neowebkit)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/fatal-error-656/#post-3502277)
 * Hi Diana,
 * Yep, the 1.2 is working now. Thanks for the quick fix.
 * W
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP RSS Multi Importer] content to custom fields](https://wordpress.org/support/topic/content-to-custom-fields/)
 *  Thread Starter [neo.webkit](https://wordpress.org/support/users/neowebkit/)
 * (@neowebkit)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/content-to-custom-fields/#post-3485003)
 * Thanks Allen. I will try writing some code according to your advice.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] [plugin:Events Manager] Activation failure in a localized buddypress site](https://wordpress.org/support/topic/pluginevents-manager-activation-failure-in-a-localized-buddypress-site/)
 *  Thread Starter [neo.webkit](https://wordpress.org/support/users/neowebkit/)
 * (@neowebkit)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/pluginevents-manager-activation-failure-in-a-localized-buddypress-site/#post-2562796)
 * I have not added any events as all. It’s strange that I have no problem installing
   the same amount of plugins under the English version. So I doubt it’s due to 
   the language I use.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] [plugin:Events Manager] Activation failure in a localized buddypress site](https://wordpress.org/support/topic/pluginevents-manager-activation-failure-in-a-localized-buddypress-site/)
 *  Thread Starter [neo.webkit](https://wordpress.org/support/users/neowebkit/)
 * (@neowebkit)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/pluginevents-manager-activation-failure-in-a-localized-buddypress-site/#post-2562774)
 * Okay, I realized what the problem is. It’s the memory limit PHP can handle. The
   default is 64MB in my rental server, and it’s working fine when I increase the
   limit.
 * Problem is I wonder if my server can afford this when dealing with considerable
   amount of users. So I just disabled a few plugins and switched the limit back
   to 64MB.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] [plugin:Events Manager] Activation failure in a localized buddypress site](https://wordpress.org/support/topic/pluginevents-manager-activation-failure-in-a-localized-buddypress-site/)
 *  Thread Starter [neo.webkit](https://wordpress.org/support/users/neowebkit/)
 * (@neowebkit)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/pluginevents-manager-activation-failure-in-a-localized-buddypress-site/#post-2562751)
 * Thanks for your reply Agelonwl. I think I have solved the problem by inactivating
   all the plugins and starting them all over again.
 * Working hard on the translations now!

Viewing 9 replies - 1 through 9 (of 9 total)