6
Will I have looked all through the .sql files that data is not in them.
Now because of my other post. All the kind people have posted a way to find the data / text im looking for.
Finding text in XOOPS filesSo far I like the InfoRapid Search software the most for what im trying to do.
Anyway I ran this on the cbb module using the search term
"If you have any question" bingo 2 seconds later I foud the file in cbb that does the preload of info.
Its in the...
/modules/newbb/language/english/modinfo.php
file.
So if you look down at the bottom you will see this code.
// FOR installation
define("_MI_NEWBB_INSTALL_CAT_TITLE", "Category Test");
define("_MI_NEWBB_INSTALL_CAT_DESC", "Category for test.");
define("_MI_NEWBB_INSTALL_FORUM_NAME", "Forum Test");
define("_MI_NEWBB_INSTALL_FORUM_DESC", "Forum for test.");
define("_MI_NEWBB_INSTALL_POST_SUBJECT", "Congratulations! The forum is working.");
define("_MI_NEWBB_INSTALL_POST_TEXT", "
Welcome to ".(htmlspecialchars($GLOBALS["xoopsConfig"]['sitename'], ENT_QUOTES))." forum.
Feel free to register and login to start your topics.
If you have any question concerning CBB usage, plz visit your local support site or [url=http://xoopsforge.com/modules/newbb/]CBB Module Site[/url].
");
Now all I need to do is expand this and add more cats & forums and of course example content.
-----
I wonder if all modules have the modinfo.php in them?