MyBB Community Forums

Full Version: My Plugin isn't showing up?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am trying to make a simple plugin but i can't get it to show up in the plugin list in 1.4? I have modeled it around the basic hello world plugin so i think i have done everything right.

Any suggestions?
Post the code here?

Make sure the default plugin functions carry your plugin file's name.

e.g. if your plugin file name is myplugin.php, then your function names need to be
myplugin_info()
myplugin_activate()
...and so on
Similarly, if your plugin file name is aassddff.php, then your function names need to be
aassddff_info()
aassddff_activate()
...and so on.
Thanks Dennis, i didn't know about this bit:

(2008-08-23, 07:55 AM)DennisTT Wrote: [ -> ]Similarly, if your plugin file name is aassddff.php, then your function names need to be
aassddff_info()
aassddff_activate()
...and so on.