Kapitan Posted October 11, 2016 Report Share Posted October 11, 2016 (edited) Solved , i missed some files Edited October 12, 2016 by Kapitan Quote Link to comment Share on other sites More sharing options...
Moderators Parkho Posted October 11, 2016 Moderators Report Share Posted October 11, 2016 The reason you get that error is that you actually haven't defined your module for the system. What you need to do is to create a folder in "core/modules" named "shoutbox" inside the folder you'll need a file named "shoutbox.php" inside that you'll need to add the following code: class shoutbox extends CodonModule { public function index() { $this->show('/shoutbox.php'); } } Then you'll need to create another file named "shoutbox.php" and place it in your "lib/skins/yourskinfolder" inside that file you'll need to add whatever codes you want. This is how you make a module that actually works. Cheers Quote Link to comment Share on other sites More sharing options...
Kapitan Posted October 11, 2016 Author Report Share Posted October 11, 2016 The reason you get that error is that you actually haven't defined your module for the system. What you need to do is to create a folder in "core/modules" named "shoutbox" inside the folder you'll need a file named "shoutbox.php" inside that you'll need to add the following code: class shoutbox extends CodonModule { public function index() { $this->show('/shoutbox.php'); } } Then you'll need to create another file named "shoutbox.php" and place it in your "lib/skins/yourskinfolder" inside that file you'll need to add whatever codes you want. This is how you make a module that actually works. Cheers Hi Parko i all ready have all that. Quote Link to comment Share on other sites More sharing options...
Moderators Parkho Posted October 11, 2016 Moderators Report Share Posted October 11, 2016 Ok then check to see if your names are all the same as the system is case sensitive. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.