On Notifications,Can i be notified by private message when a new post is posted on my wall or a buddies wall?
The buddies wall is just a compilation of your buddies posts, it wouldn't be wise to send a pm whenever a buddy post a new status.
As for your own wall, sure, you can add your code right after this:
// All went good or so it seems...
if (!empty($this->_params['id']))
{
on Sources/Breeze/BreezeAjax.php
There are 2 vars:
$statusOwner <--- is the profile owner
$statusPoster <--- the person who postd the status.
Just do a quick check to avoid PMing yourself:
if ($statusOwner != $statusPoster)
{
// the send pm code here
}
Or if you're familiar with using the hook system, theres a hook you can use:
call_integration_hook('integrate_breeze_after_insertStatus', array($this->_params));
theres a built function for sending a pm already, just take a look at some omd that does it and copy the code from there.
I have this error
Apply Filter: Only show the error messages of this URL
http://www.myforum.com/index.php?topic=37638.570
Apply Filter: Only show the errors with the same message
2: apc_store() [<a href='function.apc-store'>function.apc-store</a>]: Potential cache slam averted for key '7e5058e34de75107f666960f2d97add0-SMF-Breeze-options-27smf'
Apply Filter: Only show the errors from this file
File: /home/ptcb/public_html/Sources/Load.php
Line: 2833
Thats an APC cache error on old APC versions, tell your host about it.