MantisBT: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
No edit summary
Line 3: Line 3:


<source lang="bash">
<source lang="bash">
#./bugs/config_defaults_inc.php to change mantis title
# to change mantis title
sed -i "s/$g_window_title = 'MantisBT'/$g_window_title = 'ChorkeBT'/g" ./bugs/config_defaults_inc.php
sed -i "s/$g_window_title = 'MantisBT'/$g_window_title = 'ChorkeBT'/g" ./bugs/config_defaults_inc.php
</source>


#./bugs/config_defaults_inc.php to config wiki media with mantis
<source lang="bash">
# to config mantis wiki media
sed -i "s/$g_wiki_enable = OFF/$g_wiki_enable = ON/g" ./bugs/config_defaults_inc.php
sed -i "s/$g_wiki_enable = OFF/$g_wiki_enable = ON/g" ./bugs/config_defaults_inc.php
sed -i "s/$g_wiki_engine = ''/$g_wiki_engine = 'mediawiki'/g" ./bugs/config_defaults_inc.php
sed -i "s/$g_wiki_engine = ''/$g_wiki_engine = 'mediawiki'/g" ./bugs/config_defaults_inc.php
sed -i "s/$g_wiki_root_namespace = 'mantis'/$g_wiki_root_namespace = 'Mantis'/g" ./bugs/config_defaults_inc.php
sed -i "s/$g_wiki_root_namespace = 'mantis'/$g_wiki_root_namespace = 'Bugs:'/g" ./bugs/config_defaults_inc.php
sed -i "s/$g_wiki_engine_url = ''/$g_wiki_engine_url = 'http://cdn.chorke.org/weke/'/g" ./bugs/config_defaults_inc.php
sed -i "s/$g_wiki_engine_url = ''/$g_wiki_engine_url = 'http://cdn.chorke.org/weke/'/g" ./bugs/config_defaults_inc.php
</source>
</source>

Revision as of 01:36, 23 February 2019

MantisBT makes collaboration with team members & clients easy, fast, and professional. MantisBT is an open source issue tracker that provides a delicate balance between simplicity and power. Users are able to get started in minutes and start managing their projects while collaborating with their teammates and clients effectively. Once you start using it, you will never go back!

# to change mantis title
sed -i "s/$g_window_title = 'MantisBT'/$g_window_title = 'ChorkeBT'/g" ./bugs/config_defaults_inc.php
# to config mantis wiki media
sed -i "s/$g_wiki_enable = OFF/$g_wiki_enable = ON/g" ./bugs/config_defaults_inc.php
sed -i "s/$g_wiki_engine = ''/$g_wiki_engine = 'mediawiki'/g" ./bugs/config_defaults_inc.php
sed -i "s/$g_wiki_root_namespace = 'mantis'/$g_wiki_root_namespace = 'Bugs:'/g" ./bugs/config_defaults_inc.php
sed -i "s/$g_wiki_engine_url = ''/$g_wiki_engine_url = 'http://cdn.chorke.org/weke/'/g" ./bugs/config_defaults_inc.php
#./bugs/config/config_inc.php to change database connection
sed -i "s/$g_db_password            = '';/$g_db_password            = 'password';/g" ./bugs/config/config_inc.php
http://cdn.chorke.org/bugs
user: administrator
pass: root

Anonymous

http://cdn.chorke.org/bugs/manage_user_create_page.php
Username    : anonymous
Real Name   : <Leave Empty>
E-mail      : [email protected]
Access Level: [viewer|reporter]
Enabled     : true
Protected   : true
# enable anonymous/guest login
echo ''  >> ./bugs/config/config_inc.php;\
echo ''  >> ./bugs/config/config_inc.php;\
echo '# enable anonymous/guest login'            >> ./bugs/config/config_inc.php;\
echo '$g_allow_anonymous_login  = ON;'           >> ./bugs/config/config_inc.php;\
echo "\$g_anonymous_account      = 'anonymous';" >> ./bugs/config/config_inc.php;\
echo ''  >> ./bugs/config/config_inc.php

References