MyBB Community Forums
Tomm's Plugins and Stuff... - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: Extensions (https://community.mybb.com/forum-201.html)
+--- Forum: Plugins (https://community.mybb.com/forum-73.html)
+---- Forum: Plugin Releases (https://community.mybb.com/forum-102.html)
+---- Thread: Tomm's Plugins and Stuff... (/thread-44374.html)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12


RE: Tomm's Plugins and Stuff... - Tomm M - 2010-01-12

Feel free to mess around with it if you want too, although I can't help you out at the moment. MyNetwork has a core feature add-on that allows multiple auto-message forums, so if this situation isn't essential, I'd wait for that...


RE: Tomm's Plugins and Stuff... - Skiilz - 2010-01-12

(2010-01-12, 01:36 PM)Tomm M Wrote: Feel free to mess around with it if you want too, although I can't help you out at the moment. MyNetwork has a core feature add-on that allows multiple auto-message forums, so if this situation isn't essential, I'd wait for that...
Ok.
I just need to change the table names? Or what?
Do you have any estimate time of when it will be released?
Good luck on MyNetwork. I'm waiting for this.

Thank you.


RE: Tomm's Plugins and Stuff... - Tomm M - 2010-01-12

You'll need to change the filename of the plugin and the _info function to match (e.g. if the plugin filename is hello.php, then the _info function must be called hello_info).

From there, you need to change everything that conflicts. For example, if the plugin uses the setting called use_message, then you will need to change that setting to something else.


RE: Tomm's Plugins and Stuff... - Skiilz - 2010-01-12

Thank you. Got it to work.


RE: Tomm's Plugins and Stuff... - Unknown_Hello - 2010-02-13

The first plugin is not working
why?


RE: Tomm's Plugins and Stuff... - Matt - 2010-02-13

Might help if you explain exactly how it isn't working so someone can actually help you Smile


RE: Tomm's Plugins and Stuff... - Unknown_Hello - 2010-02-14

I activate the plugin
I go to ACP->Users and Groups->Edit profile and settings for a user->Account settings and the settings do not appear


RE: Tomm's Plugins and Stuff... - Tomm M - 2010-02-16

You need to be editing the account of a moderator - a user that isn't an Administrator or Super Moderator but has access to the ModCP.


RE: Tomm's Plugins and Stuff... - ranjani - 2010-02-18

Hi Tomm , for the unanswered topics and new topics ,
is it possible to exclude some forums by ids as it uses search.php
such further modification would be much useful for me Smile


RE: Tomm's Plugins and Stuff... - Tomm M - 2010-02-19

Hi ranjani,

I won't be adding that functionality to the current version, but I'll change it for the MyNetwork feature that's been made.

To change it for now, open up the newtopics.php file, and find this line (around line 93):

$unsearchforums = get_unsearchable_forums();

Change this to:

$unsearchforums = get_unsearchable_forums();
$unsearchforums .= ",3,5,8";

Remember to keep a comma at the beginning of the string, and don't put one onto the end. Replace 3, 5 and 8 with whatever forums you don't want to search.