This is the support forum for the Profile Messaging mod.
This is the support forum for the Profile Messaging mod. Paypal email is jeromemingo@gmail.com - http://www.boonex.com/market/posts/modzzz |
I have updated this mod to fix some minor issues. Re-upload the files and clear cache. Paypal email is jeromemingo@gmail.com - http://www.boonex.com/market/posts/modzzz |
Thank you for the fix. Baloo |
Hi Modzzz, Can you make this module send messages without refreshing the page? Can you make an option to remove subject field?
Thanks Always remember that the future comes one day at a time. |
If the subject is removed what should replace it ? The message cannot be sent without a subject. Can you make this module send messages without refreshing the page? Can you make an option to remove subject field?
Paypal email is jeromemingo@gmail.com - http://www.boonex.com/market/posts/modzzz |
maybe a generic message like - "new message from X" or "X sent you new message" Always remember that the future comes one day at a time. |
Ok, I have noted your suggestions for future improvement. maybe a generic message like - "new message from X" or "X sent you new message"
Paypal email is jeromemingo@gmail.com - http://www.boonex.com/market/posts/modzzz |
I just purchased and installed your profile messaging but can't find it anywhere on anyone's profile page. The installation is too simple to mess up. What did I miss? |
Please PM me your site details so I can take a look. I just purchased and installed your profile messaging but can't find it anywhere on anyone's profile page. The installation is too simple to mess up. What did I miss?
Paypal email is jeromemingo@gmail.com - http://www.boonex.com/market/posts/modzzz |
@meljaxx - I have updated your site. You had a custom module called Profile Composer in which the block had to be enabled before it could show. Paypal email is jeromemingo@gmail.com - http://www.boonex.com/market/posts/modzzz |
after send message, input text (subject and message) remains visible after page load!? |
The following file is updated : modules/modzzz/qmail/classes/BxQMailModule.php Paypal email is jeromemingo@gmail.com - http://www.boonex.com/market/posts/modzzz |
OK! thanks, I downloaded the updated files and it's working fine :)
The following file is updated : modules/modzzz/qmail/classes/BxQMailModule.php
|
one more issue:
only "qmail view reply rate" option is available in sys_acl_actions? why is not "qmail send message" available in membership levels?
IMHO qmail send message is the obvious and much more relevant option for membership levels.
it would be appreciated if you added qmail send message to sys_acl_levels.
thanks! |
How to add "qmail send message" to sys_acl_levels/membership levels? |
no reply? |
@adultdate - That update has been scheduled for the next revision of the module. I have other higher priority items working on presently so this won't be done immediately. Paypal email is jeromemingo@gmail.com - http://www.boonex.com/market/posts/modzzz |
okay, thanks, hope to see update soon ;D
@adultdate - That update has been scheduled for the next revision of the module. I have other higher priority items working on presently so this won't be done immediately.
|
Hello, Please can you make the update for this module |
Version 2.0.1 released. (See patches/version 2.0.1 folder) Added ability to manage message sending by membership level. Paypal email is jeromemingo@gmail.com - http://www.boonex.com/market/posts/modzzz |
hey Jerome!
thansk for updating the module :)
however ,now after updating the module, if Qmail block is active on the profile page, only admin and moderator profiles can access profile page..
when try to access page with a standard user profile, the following message is displayed ...
checkAction() fatal error. Unknown action ID: 0 am trying to find a way to fix it and doing some research about what is the cause for this, it seems like a lang issue and/or maybe this little bastard is causing it -------> return $aCheck[CHECK_ACTION_RESULT] == CHECK_ACTION_RESULT_ALLOWED;
do you have any idea (and I know you do)= ) about how to solve this ??
THANKS! |
@adultdate - It seems you did not clear cache after running the sqlupdate.php found in the the patch. Paypal email is jeromemingo@gmail.com - http://www.boonex.com/market/posts/modzzz |
Of course I tried to clear all cache after running the sqlupdate.php
I also have tried to run the following sql query...
DELETE `sys_acl_actions`, `sys_acl_matrix` FROM `sys_acl_actions`, `sys_acl_matrix` WHERE `sys_acl_matrix`.`IDAction` = `sys_acl_actions`.`ID` AND `sys_acl_actions`.`Name` IN('qmail send message', 'qmail view reply rate'); DELETE FROM `sys_acl_actions` WHERE `Name` IN('qmail send message', 'qmail view reply rate'); SET @iLevelNonMember := 1; SET @iLevelStandard := 2; SET @iLevelPromotion := 3; INSERT INTO `sys_acl_actions` VALUES (NULL, 'qmail send message', NULL); SET @iAction := LAST_INSERT_ID(); INSERT INTO `sys_acl_matrix` (`IDLevel`, `IDAction`) VALUES (@iLevelNonMember, @iAction), (@iLevelStandard, @iAction), (@iLevelPromotion, @iAction); INSERT INTO `sys_acl_actions` VALUES (NULL, 'qmail view reply rate', NULL); SET @iAction := LAST_INSERT_ID(); INSERT INTO `sys_acl_matrix` (`IDLevel`, `IDAction`) VALUES (@iLevelNonMember, @iAction), (@iLevelStandard, @iAction), (@iLevelPromotion, @iAction); INSERT INTO `sys_acl_actions` VALUES (NULL, 'qmail send message', NULL); INSERT INTO `sys_acl_actions` VALUES (NULL, 'qmail view reply rate', NULL);
and cleared all caches, but am still have the same problem...
do you have any suggestions??
@adultdate - It seems you did not clear cache after running the sqlupdate.php found in the the patch.
|
The following file is updated : modules/modzzz/qmail/classes/BxQMailModule.php Paypal email is jeromemingo@gmail.com - http://www.boonex.com/market/posts/modzzz |
Yeh, maybe I have found the problem that was the problem :) and if true, you should upload a new update for this module.
This is what I found, in the file BxQMailModule.php, on line 355 $aCheck = checkAction($iProfileId, BX_QMAIL_VIEW_SEND_MESSAGE, $isPerformAction);
Problem maybe the following "BX_QMAIL_VIEW_SEND_MESSAGE" Think you need to remove VIEW from that checkAction function...
After removing that, in the file BxQMailModule.php, on line 355 $aCheck = checkAction($iProfileId, BX_QMAIL_SEND_MESSAGE, $isPerformAction);
Not sure if correct, but for me now it seems to be working fine :) Please let me know if you think it really was the issue here or not?
Cheers! |
LOL, didn't see that you also had found the issue and uploaded new file :)
The following file is updated : modules/modzzz/qmail/classes/BxQMailModule.php
|
Hey modzzz, we tested this and it appears that only admins can view the conversation block on profile pages. I also noticed that i don't receive any notification via email or on site. Everyday is a new beginning. |
The following file is updated to fix issue mentioned above : modules/modzzz/qmail/classes/BxQMailModule.php Paypal email is jeromemingo@gmail.com - http://www.boonex.com/market/posts/modzzz |