MyBB Community Forums

Full Version: ModNotice Plus 1.5.5
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10
Thank you very much for this plugin, I've been wanting this for a while.

I made some changes to the style to better suit my forum:
screenshot

I also had the issue with no text appearing in the AdminCP, but I'm not worried about it for now. I did have to change the template to get my edit button back though.

How to: Go to the postbit_edit template for your theme and copy the first line (or whatever changes you want to keep), then go to the global templates > postbit_moderator_edit, and paste in your changes there.

Works great Smile
HI, some of my users on mobile devices including i-phone keep getting a line 149 error message like the attached, any ideas?

[Image: attachment.php?aid=1615]
Is this plugin still supported? I don't seem to have any settings for the PM to Users and it isn't sending PM's either.
Creator is still online so I hope so, its a great feature

I have the PM feature and its working fine in the latest version
Yeah, I have no admin controls for the PM's and I didn't receive a PM when I tested it either. Did you have to run the mysql query to get it to work?

ETA: I ran the query in phpmyadmin SQL and got this error:
Quote:Error

SQL query:

UPDATE settings SET title = "Send Notice To Post Author",
description = "Send a a private message to the author of the edited post." WHERE name = "modnotice_pm";

MySQL said: Documentation
#1146 - Table 'bigmackt_pa2a.settings' doesn't exist
UPDATE settings

Should be:
UPDATE prefix_settings

prefix_ is your ptable prefix.
Thanx , good work
Still got an error using this:

UPDATE prefix_settings SET title="Send Notice To Post Author",
description="Send a a private message to the author of the edited post." WHERE name="modnotice_pm";
UPDATE settinggroups SET title="ModNotice Plus" WHERE name="modnotice"; 



Quote:Error

SQL query:

UPDATE prefix_settings SET title = "Send Notice To Post Author",
description = "Send a a private message to the author of the edited post." WHERE name = "modnotice_pm";

MySQL said: Documentation
#1146 - Table 'bigmackt_pa2a.prefix_settings' doesn't exist

(2012-09-21, 06:13 PM)RocketFoot Wrote: [ -> ]Still got an error using this:

UPDATE prefix_settings SET title="Send Notice To Post Author",
description="Send a a private message to the author of the edited post." WHERE name="modnotice_pm";
UPDATE settinggroups SET title="ModNotice Plus" WHERE name="modnotice"; 



Quote:Error

SQL query:

UPDATE prefix_settings SET title = "Send Notice To Post Author",
description = "Send a a private message to the author of the edited post." WHERE name = "modnotice_pm";

MySQL said: Documentation
#1146 - Table 'bigmackt_pa2a.prefix_settings' doesn't exist
Should it be mybb_settings?
prefix_settings, open plugin file and instead change it to ".TABLE_PREFIX."settings
Quote:prefix_ is your table prefix.
Pages: 1 2 3 4 5 6 7 8 9 10