0223.html 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Installing WebIssues Bug and Enhancement Tracker on Windows</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="Browser Based,Home Lab,Home Lab Ideas,Install Guide,Self-Hosted,Web Based,Web Based Tools,Apache,Apache HTTPD,Bug Tracking,Enchancement Tracking,HTTPD,Issue Tracker,PHP,Software Developer,Web Developer,Web Server,WebIssues,Windows,Microsoft Windows,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Installing WebIssues Bug and Enhancement Tracker on Windows">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="12/28/2022 07:37:02 AM" />
  12. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  13. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  14. <script type="text/javascript" src="includes/js/steps.js"></script>
  15. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  16. </head>
  17. <body>
  18. <div id="gridContainer">
  19. <div class="topMargin"></div>
  20. <div id="listName" class="topMargin">
  21. <h1>Installing WebIssues Bug and Enhancement Tracker on Windows</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <h2>What is WebIssues?</h2>
  26. <blockquote><em>WebIssues is an open source, multi-platform system for issue tracking and team collaboration. It can be used to store, share and track issues with various attributes, description, comments and file attachments. It is easy to install and use but has many capabilities and is highly customizable. -<a href="https://webissues.mimec.org/" target="_blank">https://webissues.mimec.org/</a></em></blockquote>
  27. <h2>Installation</h2>
  28. <ol>
  29. <li>Download XAMPP <a href="https://sourceforge.net/projects/xampp/files/XAMPP%20Windows/" target="_blank">Download</a></li>
  30. <li>Download WebIssues <a href="https://github.com/mimecorg/webissues/releases" target="_blank">Download</a></li>
  31. <li><label for="cb_li_917989_0">Download Microsoft Visual C++ </label><label for="cb_li_917989_0"><a href="https://aka.ms/vs/16/release/vc_redist.x64.exe" target="_blank">Download</a></label></li>
  32. <li>Install Microsoft Visual C++</li>
  33. <li>Right click the downloaded XAMPP .zip file &gt; Extract All...</li>
  34. <li>Right click the downloaded WebIssues .zip file &gt; Extract All...</li>
  35. <li>Rename the extracted folder webissues</li>
  36. <li>Cut the webissues folder inside the XAMPP/htdocs directory</li>
  37. <li>Copy the extracted XAMPP directory to a safe location to run from, C:\Program Files for example</li>
  38. <li>Run XAMPP/setup_xampp.bat to update the configuration files with the new server location</li>
  39. <li>Navigate to XAMPP/php and edit php.ini</li>
  40. <li>Find the following lines and remove the ; to uncomment them
  41. <p>extension=imap</p>
  42. </li>
  43. <li>Run XAMPP/xampp-control.exe</li>
  44. <li>Click the Start button next to Apache and MySQL</li>
  45. <li>Navigate to XAMPP/mysql/bin</li>
  46. <li>Hold the SHIFT key and right click in the white space &gt; Open PowerShell window here...</li>
  47. <li>Type the following in the PowerShell window to setup the webissues database
  48. <div class="codeBlock">.\mysql -u root<br />
  49. CREATE DATABASE webissues;<br />
  50. GRANT ALL ON webissues.* TO &#39;webissues_rw&#39;@&#39;localhost&#39; IDENTIFIED BY &#39;W3b1ssu3s!&#39;;<br />
  51. FLUSH PRIVILEGES;<br />
  52. EXIT;<br />
  53. exit</div>
  54. </li>
  55. <li>Open a web browser and navigate to http://DNSorIP/webissues</li>
  56. <li>Click the Configure Database link</li>
  57. <li>Select a Language &gt; Click Next</li>
  58. <li>Select Create new database tables and MySQL &gt; Complete the form as follows
  59. <p>Host name: localhost<br />
  60. Database name: webissues<br />
  61. User name: webissues_rw<br />
  62. Password: W3b1ssu3s!</p>
  63. </li>
  64. <li>Click Next at the bottom right of the page</li>
  65. <li>Give the server a name and enter and confirm a password for the admin user &gt; Click Next</li>
  66. <li>Review the installation summary &gt; Click Install</li>
  67. <li>After the installation completes click the Web Client link</li>
  68. <li>Welcome to WebIssues</li>
  69. </ol>
  70. <p>Source: <a href="https://doc.mimec.org/webissues-guide/installation.html" target="_blank">https://doc.mimec.org/webissues-guide/installation.html</a></p> </div>
  71. </div>
  72. </body>
  73. </html>